Update app/page.tsx
This commit is contained in:
parent
fac0f87362
commit
c97bd94dbc
|
|
@ -0,0 +1,15 @@
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue