12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
"use client"
|
|
|
|
import { Hero } from "@/components/hero";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
|
|
<Hero />
|
|
</div>
|
|
);
|
|
}
|