diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx index b877875..6c4536f 100644 --- a/src/app/collections/page.tsx +++ b/src/app/collections/page.tsx @@ -7,7 +7,7 @@ import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Mail, Sparkles, Palette } from "lucide-react"; +import { Mail, Sparkles, Palette, Heart } from "lucide-react"; export default function CollectionsPage() { const navItems = [ @@ -116,10 +116,11 @@ export default function CollectionsPage() { title="Featured Perfumes" description="Curated selection of our most beloved and bestselling fragrances" tag="Best Sellers" - tagIcon={Sparkles} + tagIcon={Heart} textboxLayout="default" gridVariant="three-columns-all-equal-width" animationType="blur-reveal" + useInvertedBackground={false} /> @@ -142,6 +143,7 @@ export default function CollectionsPage() { textboxLayout="default" gridVariant="bento-grid" animationType="scale-rotate" + useInvertedBackground={false} /> @@ -156,6 +158,7 @@ export default function CollectionsPage() { { text: "Contact Us", href: "/contact" }, { text: "Try Fragrance Finder", href: "/finder" }, ]} + useInvertedBackground={false} /> diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 1b49617..21480f1 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -9,7 +9,7 @@ import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Mail, Sparkles, Palette } from "lucide-react"; -export default function ProductDetailPage() { +export default function ProductPage() { const navItems = [ { name: "Shop", id: "shop" }, { name: "Collections", id: "collections" }, @@ -85,17 +85,17 @@ export default function ProductDetailPage() {