chore: update components folder structure, add constants, update existing layout components, scaffold pages
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user