16 lines
359 B
TypeScript
16 lines
359 B
TypeScript
import { Hero } from "@/components/hero";
|
|
import { ProductGrid } from "@/components/product-grid";
|
|
import { Story } from "@/components/story";
|
|
import { Footer } from "@/components/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Hero />
|
|
<ProductGrid />
|
|
<Story />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|