Refine portfolio experience and integrate coffee map

This commit is contained in:
2026-09-22 16:41:12 -04:00
parent b72108e103
commit 844819731d
52 changed files with 4589 additions and 1582 deletions
+20
View File
@@ -0,0 +1,20 @@
export function PageHeading({
eyebrow,
title,
description,
}: {
eyebrow: string;
title: string;
description: string;
}) {
return (
<header className="archive-header">
<p className="eyebrow">{eyebrow}</p>
<h1>
{title}
<span className="accent-text">.</span>
</h1>
<p>{description}</p>
</header>
);
}