From cc27d24cc45c4e130d2de226c8e589cecac29887 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:50:02 +0000 Subject: [PATCH 1/3] Update src/app/collection/page.tsx --- src/app/collection/page.tsx | 94 +++++++------------------------------ 1 file changed, 16 insertions(+), 78 deletions(-) diff --git a/src/app/collection/page.tsx b/src/app/collection/page.tsx index 09d42a5..6b5c7f2 100644 --- a/src/app/collection/page.tsx +++ b/src/app/collection/page.tsx @@ -2,12 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Heart, Gift, Phone, Star, ShoppingBag, Sparkles, Package } from 'lucide-react'; +import { Sparkles } from 'lucide-react'; export default function CollectionPage() { return ( @@ -28,6 +25,7 @@ export default function CollectionPage() { brandName="Boutique Gawta Familly" navItems={[ { name: "Collection", id: "/collection" }, + { name: "Gallery", id: "/collection" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]} @@ -38,31 +36,12 @@ export default function CollectionPage() { /> -
- -
- - @@ -82,7 +74,7 @@ export default function ContactPage() { { items: [ { label: "Home", href: "/" }, - { label: "Gallery", href: "/gallery" }, + { label: "Gallery", href: "/collection" }, { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" } ] -- 2.49.1 From 6ec390942eb7762b1c8ba34461495f251c033549 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:50:04 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 61f4c62..e904e62 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -211,10 +211,6 @@ export default function LandingPage() { inputPlaceholder="Enter your email" buttonText="Get In Touch" termsText="We respect your privacy. Reply within 24 hours." - buttons={[ - { text: "📞 Call: 06 25 72 88 25", href: "tel:+212625728825" }, - { text: "📍 Visit Us", href: "https://maps.google.com/?q=7F3W%2B5J+El+Jadida" } - ]} /> @@ -230,10 +226,6 @@ export default function LandingPage() { inputPlaceholder="Your email address" buttonText="Request Information" termsText="We'll get back to you within 24 hours during business hours." - buttons={[ - { text: "📞 Call Now", href: "tel:+212625728825" }, - { text: "💬 WhatsApp", href: "https://wa.me/212625728825" } - ]} /> -- 2.49.1