Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:04:57 +00:00
parent fac0f87362
commit c97bd94dbc
1 changed files with 15 additions and 0 deletions

15
app/page.tsx Normal file
View File

@ -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>
);
}