feat(landing-page): add title/subtitle and img (including styling)

This commit is contained in:
2026-04-17 00:07:46 +02:00
parent f98f619536
commit 93cb375c29
5 changed files with 106 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
import React from "react";
export function TypographyH1({children}: { children: React.ReactNode}) {
return (
<h1 className="scroll-m-20 text-4xl font-extrabold tracking-tight text-balance">
{children}
</h1>
)
}
export function TypographyH3({children}: { children: React.ReactNode}) {
return (
<h3 className="scroll-m-20 text-2xl font-semibold tracking-tight">
{children}
</h3>
)
}
export function TypographyLead({children}: { children: React.ReactNode}) {
return (
<p className="text-xl text-muted-foreground">
{children}
</p>
)
}