From 4d1cab79e5e3d52c28da8470019c2c203ca3b195 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:09:02 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5700485..cced839 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -8,7 +8,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Instagram, Facebook, Pinterest } from 'lucide-react'; +import { Instagram, Facebook, Pin } from 'lucide-react'; export default function BlogPage() { // Preserved logic for fetching posts @@ -33,13 +33,13 @@ export default function BlogPage() { brandName="Angelina" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Shop", id: "shop" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, + { name: "About", id: "/#about" }, + { name: "Services", id: "/#services" }, + { name: "Shop", id: "/#shop" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, ]} - button={{ text: "Contact Us", href: "#contact" }} + button={{ text: "Contact Us", href: "/#contact" }} /> @@ -70,7 +70,7 @@ export default function BlogPage() { socialLinks={[ { icon: Instagram, href: "https://instagram.com/angelinaflowers", ariaLabel: "Instagram" }, { icon: Facebook, href: "https://facebook.com/angelinaflowers", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, + { icon: Pin, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, ]} /> -- 2.49.1 From b3fa30ecb1e512eb30b371bbffdab84f1be90acb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:09:03 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5df19e4..5d4b219 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -24,7 +24,7 @@ import { Leaf, Mail, PartyPopper, - Pinterest, + Pin, Settings, Sparkles } from 'lucide-react'; @@ -47,11 +47,11 @@ export default function LandingPage() { @@ -80,9 +80,9 @@ export default function LandingPage() { { icon: Settings, active: false }, ], stats: [ - { title: "Bouquets Designed", values: ["2500+", "3000+", "3500+"], description: "Unique creations." }, - { title: "Happy Clients", values: ["98%", "99%", "100%"], valueSuffix: "", description: "Satisfaction rate." }, - { title: "Events Beautified", values: ["150+", "200+", "250+"], description: "Weddings & more." }, + { title: "Bouquets Designed", values: [2500, 3000, 3500], description: "Unique creations." }, + { title: "Happy Clients", values: [98, 99, 100], valueSuffix: "%", description: "Satisfaction rate." }, + { title: "Events Beautified", values: [150, 200, 250], description: "Weddings & more." }, ], chartTitle: "Seasonal Popularity", chartData: [{ value: 50 }, { value: 70 }, { value: 60 }, { value: 80 }, { value: 90 }], listTitle: "Recent Highlights", listItems: [ @@ -229,7 +229,7 @@ export default function LandingPage() { socialLinks={[ { icon: Instagram, href: "https://instagram.com/angelinaflowers", ariaLabel: "Instagram" }, { icon: Facebook, href: "https://facebook.com/angelinaflowers", ariaLabel: "Facebook" }, - { icon: Pinterest, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, + { icon: Pin, href: "https://pinterest.com/angelinaflowers", ariaLabel: "Pinterest" }, ]} /> -- 2.49.1 From 70ab0661ac89dc57a031f3de04183e7c87a28a45 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:09:03 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 37 +++++++++++++++++++++++++++++-------- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 310a822..eafee11 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -11,7 +11,7 @@ import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Instagram, Facebook, Pinterest } from 'lucide-react'; +import { Instagram, Facebook, Pin } from 'lucide-react'; interface ProductPageProps { params: Promise<{ id: string }>; @@ -82,10 +82,17 @@ export default function ProductPage({ params }: ProductPageProps) { headingFontWeight="medium" > -