From 22e05dc8912d7de45c704ceff0973dde444bcc28 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 03:14:41 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 65 ++++++++---------------------------------------- 1 file changed, 10 insertions(+), 55 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5a4fa11..a6f0bff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { UtensilsCrossed, Wine, Utensils, MapPin, ChefHat, Fish, Heart, Award, Sparkles, Flame, Star, Phone, Instagram, Facebook } from 'lucide-react'; +import { Wine, Utensils, MapPin, ChefHat, Fish, Heart, Award, Sparkles, Flame, Star, Phone, Instagram, Facebook } from 'lucide-react'; export default function LandingPage() { return ( @@ -29,7 +29,7 @@ export default function LandingPage() {
-
@@ -157,7 +112,7 @@ export default function LandingPage() { title="Menu Highlights" description="Explore our curated selection of Italian favorites and seasonal creations." tag="Featured Menu" - tagIcon={UtensilsCrossed} + tagIcon={Utensils} products={[ { id: "1", name: "Pappardelle al Cinghiale", price: "Market Price", imageSrc: "https://img.b2bpic.net/free-photo/top-view-home-made-tagliatelle-pasta-with-parmesan-cherry-tomatoes-greenery_482257-25241.jpg", imageAlt: "Pappardelle al Cinghiale" -- 2.49.1 From 5cd02cd3aad1835c5cc8708743b217cb18319f57 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 03:14:41 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 7b97c2a..d4431fa 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -89,8 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Home","id":"/"}, {"name":"About","id":"about"}, {"name":"Menu","id":"menu"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -136,8 +135,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Home","id":"/"}, {"name":"About","id":"about"}, {"name":"Menu","id":"menu"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -190,8 +188,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Home","id":"/"}, {"name":"About","id":"about"}, {"name":"Menu","id":"menu"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 0b8ff8ea1ec40f79c7244b45f173459ce1cf2fe6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 03:14:42 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 290a8cb..3a55f1b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -39,8 +39,7 @@ export default function ShopPage() { {"name":"Home","id":"/"}, {"name":"About","id":"about"}, {"name":"Menu","id":"menu"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -85,8 +84,7 @@ export default function ShopPage() { {"name":"Home","id":"/"}, {"name":"About","id":"about"}, {"name":"Menu","id":"menu"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> -- 2.49.1