add elements components

This commit is contained in:
Rami Bitar
2026-06-09 14:43:25 -04:00
parent d7ebc09cbb
commit 3ed7e027c2
13 changed files with 558 additions and 3 deletions

View File

@@ -1,9 +1,14 @@
import { Typography } from "@/components/elements"
const Home: React.FC = () => {
return (
<div className="flex items-center justify-center w-full h-screen">
<h1 className="text-6xl font-bold font-heading text-black text-center">
Start prompting
</h1>
<Typography
variant="h1"
textAlign="center"
text="Start prompting"
className="text-6xl font-bold font-heading text-black"
/>
</div>
)
}