From e4340d708b004d0bad3e67d9c9a7022fe3665cc1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:53:19 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 83 +++++++++------------------------------ 1 file changed, 18 insertions(+), 65 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 43598f6..a999656 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -1,6 +1,7 @@ "use client"; import Link from "next/link"; +import { Award, Leaf, Heart } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; @@ -34,9 +35,7 @@ export default function ProductsPage() { brandName="Bakker Stijn" navItems={navItems} button={{ - text: "Call Now", - href: "tel:+32123456789", - }} + text: "Call Now", href: "tel:+32123456789"}} /> @@ -46,28 +45,13 @@ export default function ProductsPage() { description="Explore all our fresh-baked specialties. Everything is made daily with premium ingredients and traditional techniques." products={[ { - id: "croissant", - name: "Butter Croissant", - price: "€2.50", - imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-croissant-cake-stand-counter-coffee-shop_23-2148027949.jpg?_wi=2", - imageAlt: "Golden butter croissant", - initialQuantity: 1, + id: "croissant", name: "Butter Croissant", price: "€2.50", imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-croissant-cake-stand-counter-coffee-shop_23-2148027949.jpg", imageAlt: "Golden butter croissant", initialQuantity: 1, }, { - id: "coffee-cake", - name: "Cinnamon Coffee Cake", - price: "€3.00", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pie-frame-with-copy-space_23-2148531642.jpg?_wi=2", - imageAlt: "Warm cinnamon coffee cake", - initialQuantity: 1, + id: "coffee-cake", name: "Cinnamon Coffee Cake", price: "€3.00", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-pie-frame-with-copy-space_23-2148531642.jpg", imageAlt: "Warm cinnamon coffee cake", initialQuantity: 1, }, { - id: "celebration-cake", - name: "Custom Celebration Cake", - price: "€25.00", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-cake-slice_23-2150154715.jpg?_wi=2", - imageAlt: "Beautiful custom celebration cake", - initialQuantity: 1, + id: "celebration-cake", name: "Custom Celebration Cake", price: "€25.00", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-holding-cake-slice_23-2150154715.jpg", imageAlt: "Beautiful custom celebration cake", initialQuantity: 1, }, ]} gridVariant="three-columns-all-equal-width" @@ -84,19 +68,13 @@ export default function ProductsPage() { tag="Our Difference" bulletPoints={[ { - title: "Daily Fresh Baking", - description: "All products baked fresh every morning using traditional methods and time-tested recipes", - icon: "Sparkles", + title: "Daily Fresh Baking", description: "All products baked fresh every morning using traditional methods and time-tested recipes", icon: Award, }, { - title: "Premium Ingredients", - description: "We carefully select local suppliers to ensure the highest quality flour, butter, and specialty items", - icon: "Star", + title: "Premium Ingredients", description: "We carefully select local suppliers to ensure the highest quality flour, butter, and specialty items", icon: Leaf, }, { - title: "Customization Available", - description: "Special orders welcome for birthdays, events, and custom dietary requirements", - icon: "Gift", + title: "Customization Available", description: "Special orders welcome for birthdays, events, and custom dietary requirements", icon: Heart, }, ]} imageSrc="http://img.b2bpic.net/free-photo/person-preparing-bread-dough-chopping-board_23-2147872742.jpg" @@ -114,47 +92,26 @@ export default function ProductsPage() { description="Ready to taste the difference? Place your order, reserve for a special occasion, or inquire about custom requests." features={[ { - id: "phone", - label: "Call", - title: "Quick Orders & Reservations", - items: ["+32 (0)16 12 34 56"], + id: "phone", label: "Call", title: "Quick Orders & Reservations", items: ["+32 (0)16 12 34 56"], buttons: [ { - text: "Call Now", - href: "tel:+32123456789", - }, + text: "Call Now", href: "tel:+32123456789"}, ], }, { - id: "visit", - label: "Visit", - title: "Experience It In Person", - items: [ - "Bakkerstraat 42, 3360 Rotselaar", - "Mon-Sat: 6am-7pm", - "Sun: 7am-2pm", - ], + id: "visit", label: "Visit", title: "Experience It In Person", items: [ + "Bakkerstraat 42, 3360 Rotselaar", "Mon-Sat: 6am-7pm", "Sun: 7am-2pm"], buttons: [ { - text: "Get Directions", - href: "https://maps.google.com", - }, + text: "Get Directions", href: "https://maps.google.com"}, ], }, { - id: "contact", - label: "Message", - title: "Custom Orders & Inquiries", - items: [ - "Bulk orders available", - "Special dietary accommodations", - "info@bakkerstijn.be", - ], + id: "contact", label: "Message", title: "Custom Orders & Inquiries", items: [ + "Bulk orders available", "Special dietary accommodations", "info@bakkerstijn.be"], buttons: [ { - text: "Send Inquiry", - href: "/contact", - }, + text: "Send Inquiry", href: "/contact"}, ], }, ]} @@ -168,13 +125,9 @@ export default function ProductsPage() { -- 2.49.1