chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+11
View File
@@ -0,0 +1,11 @@
export default function Hero({ label, subtitle, children }: { label: string; subtitle?: string; children?: React.ReactNode }) {
return (
<section className="space-y-8">
<h1 className="font-serif text-[88px] leading-none tracking-tight">
{label}
</h1>
{subtitle && <p className="text-xl text-neutral-400 text-muted">{subtitle}</p>}
{children}
</section>
);
}