diff --git a/src/app/page.tsx b/src/app/page.tsx index 4a1e702..6927c9d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, + { name: "Products", href: "/products" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} @@ -47,7 +47,7 @@ export default function LandingPage() { background={{ variant: "radial-gradient" }} title="Dine Above the Clouds" description="Experience panoramic city views combined with culinary excellence at the Sky Moon Lounge & Rooftop, your premier destination for upscale dining in Dhaka." - buttons={[{ text: "Reserve Now", href: "#contact" }, { text: "View Menu", href: "#menu" }]} + buttons={[{ text: "Reserve Now", href: "#contact" }, { text: "View Products", href: "/products" }]} imageSrc="http://img.b2bpic.net/free-photo/diverse-ethnic-friendship-party-leisure-happiness-concept_53876-42765.jpg" imageAlt="Sky Moon Rooftop at night" /> @@ -73,11 +73,10 @@ export default function LandingPage() { { id: "2", brand: "Fusion", name: "Artisan Pizza", price: "৳600", rating: 5, reviewCount: "110", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipP_nN2QyJkX8xT1Xw7r4z8k9e2l6p0h4y6m4w0r=w800-h600-k-no" }, { id: "3", brand: "Global", name: "Premium Sushi", price: "৳600", rating: 4, reviewCount: "45", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipO-Z1r_w6oT4Q2u5z0o8h9m1r8w2l4y6p7w3e6l=w800-h600-k-no" }, { id: "4", brand: "Authentic", name: "Royal Biryani", price: "৳450", rating: 5, reviewCount: "95", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipQ5m1r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" }, - { id: "5", brand: "Beverage", name: "Refreshing Mocktail", price: "৳250", rating: 4, reviewCount: "30", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipN4y7r4t2oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" }, - { id: "6", brand: "Classic", name: "Grilled Platter", price: "৳500", rating: 4, reviewCount: "67", imageSrc: "https://lh5.googleusercontent.com/p/AF1QipM5r8t4oO6k8w2l4y6p7w3e6l9z1y2h8r5m0k=w800-h600-k-no" }, ]} title="Signature Culinary Delights" description="Indulge in a curated selection of dishes that define our signature experience, ranging from authentic tandoori to global fusion." + buttons={[{ text: "Explore All Products", href: "/products" }]} /> @@ -154,7 +153,7 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..885e473 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}