diff --git a/src/app/collections/page.tsx b/src/app/collections/page.tsx index d4a2d33..b877875 100644 --- a/src/app/collections/page.tsx +++ b/src/app/collections/page.tsx @@ -20,8 +20,7 @@ export default function CollectionsPage() { const footerColumns = [ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "All Fragrances", href: "/shop" }, { label: "Collections", href: "/collections" }, { label: "New Arrivals", href: "/shop?filter=new" }, @@ -29,8 +28,7 @@ export default function CollectionsPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Story", href: "/about#story" }, { label: "Craftsmanship", href: "/about#craftsmanship" }, @@ -38,8 +36,7 @@ export default function CollectionsPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -47,8 +44,7 @@ export default function CollectionsPage() { ], }, { - title: "Discover", - items: [ + title: "Discover", items: [ { label: "Fragrance Finder", href: "/finder" }, { label: "Blog & Guides", href: "/blog" }, { label: "Fragrance Notes", href: "/fragrance-notes" }, @@ -56,8 +52,7 @@ export default function CollectionsPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Shipping Policy", href: "/shipping-policy" }, @@ -84,9 +79,7 @@ export default function CollectionsPage() { brandName="Essence Luxe" navItems={navItems} button={{ - text: "Explore", - href: "shop", - }} + text: "Explore", href: "shop"}} /> @@ -101,10 +94,9 @@ export default function CollectionsPage() { { text: "Browse All", href: "#" }, { text: "Find Your Scent", href: "#" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/front-view-cologne-bottle-rotten-tree-branch-dark-blue-background_140725-144917.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/front-view-cologne-bottle-rotten-tree-branch-dark-blue-background_140725-144917.jpg" imageAlt="Premium perfume collection showcase" mediaAnimation="slide-up" - useInvertedBackground={false} /> @@ -112,28 +104,13 @@ export default function CollectionsPage() { @@ -151,40 +127,19 @@ export default function CollectionsPage() { @@ -197,7 +152,6 @@ export default function CollectionsPage() { title="Discover Your Signature Scent" description="Our fragrance experts are ready to help you find the perfect scent. Whether you're looking for a personal signature or a gift for someone special, we're here to guide you." background={{ variant: "plain" }} - useInvertedBackground={false} buttons={[ { text: "Contact Us", href: "/contact" }, { text: "Try Fragrance Finder", href: "/finder" }, diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 73ece89..1b49617 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -4,12 +4,12 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Heart, Mail, Crown, Sparkles } from "lucide-react"; +import { Mail, Sparkles, Palette } from "lucide-react"; -export default function ProductPage() { +export default function ProductDetailPage() { const navItems = [ { name: "Shop", id: "shop" }, { name: "Collections", id: "collections" }, @@ -20,8 +20,7 @@ export default function ProductPage() { const footerColumns = [ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "All Fragrances", href: "/shop" }, { label: "Collections", href: "/collections" }, { label: "New Arrivals", href: "/shop?filter=new" }, @@ -29,8 +28,7 @@ export default function ProductPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Story", href: "/about#story" }, { label: "Craftsmanship", href: "/about#craftsmanship" }, @@ -38,8 +36,7 @@ export default function ProductPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -47,8 +44,7 @@ export default function ProductPage() { ], }, { - title: "Discover", - items: [ + title: "Discover", items: [ { label: "Fragrance Finder", href: "/finder" }, { label: "Blog & Guides", href: "/blog" }, { label: "Fragrance Notes", href: "/fragrance-notes" }, @@ -56,8 +52,7 @@ export default function ProductPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Shipping Policy", href: "/shipping-policy" }, @@ -84,75 +79,60 @@ export default function ProductPage() { brandName="Essence Luxe" navItems={navItems} button={{ - text: "Explore", - href: "shop", - }} + text: "Explore", href: "shop"}} />
-
- +