Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a4cfc1830 | |||
| ed7337070c | |||
| ccc39cf4b4 |
@@ -10,6 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
|
|||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import { Award, ChefHat, Users, Sparkles } from "lucide-react";
|
import { Award, ChefHat, Users, Sparkles } from "lucide-react";
|
||||||
|
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -205,6 +206,56 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="ecommerce" data-section="ecommerce">
|
||||||
|
<ProductCatalog
|
||||||
|
layout="section"
|
||||||
|
products={[
|
||||||
|
{
|
||||||
|
id: "1",
|
||||||
|
name: "Sushi Platter",
|
||||||
|
price: 25.00,
|
||||||
|
imageSrc: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80",
|
||||||
|
imageAlt: "Sushi Platter",
|
||||||
|
rating: 4.8,
|
||||||
|
reviewCount: 120,
|
||||||
|
category: "Appetizers",
|
||||||
|
onProductClick: () => {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
|
|||||||
Reference in New Issue
Block a user