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() {
@@ -113,27 +113,29 @@ export default function ProductDetailPage() { id: "3", name: "White Rose Vintage", price: "$195.00", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176156.jpg", imageAlt: "White Rose Vintage premium perfume", initialQuantity: 1, }, ]} - title="Related Fragrances" - description="Explore other fragrances you might love" - tag="Similar Scents" + title="Featured Perfumes" + description="Curated selection of our most beloved and bestselling fragrances" + tag="Best Sellers" tagIcon={Sparkles} textboxLayout="default" gridVariant="three-columns-all-equal-width" animationType="blur-reveal" + useInvertedBackground={false} />