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" }, ]} /> 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" }, ]} /> 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" > -