diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2a74364..75a94c9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,6 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Award, ChefHat, Users, Sparkles } from "lucide-react";
+import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
return (
@@ -205,6 +206,56 @@ export default function LandingPage() {
/>
+
+
{}
+ },
+ {
+ id: "2",
+ name: "Tempura Assortment",
+ price: 18.00,
+ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80",
+ imageAlt: "Tempura Assortment",
+ rating: 4.7,
+ reviewCount: 95,
+ category: "Appetizers",
+ onProductClick: () => {}
+ },
+ {
+ id: "3",
+ name: "Sashimi Selection",
+ price: 35.00,
+ imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80",
+ imageAlt: "Sashimi Selection",
+ rating: 4.9,
+ reviewCount: 150,
+ category: "Main Course",
+ onProductClick: () => {}
+ }
+ ]}
+ searchPlaceholder="Search Omakase Niseko menu..."
+ emptyMessage="No items found in the menu"
+ className="mt-10"
+ gridClassName="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6"
+ cardClassName="bg-white rounded-lg shadow-md overflow-hidden"
+ imageClassName="w-full h-48 object-cover"
+ searchClassName="mb-4"
+ filterClassName="mb-4"
+ toolbarClassName="mb-4"
+ />
+
+