From 3477a493e7fab113fef5b19b77696b13a28933f0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:24:12 +0000 Subject: [PATCH] Update src/app/new-collection/page.tsx --- src/app/new-collection/page.tsx | 218 +++++++++++++++++++------------- 1 file changed, 128 insertions(+), 90 deletions(-) diff --git a/src/app/new-collection/page.tsx b/src/app/new-collection/page.tsx index 59f51c2..85c246b 100644 --- a/src/app/new-collection/page.tsx +++ b/src/app/new-collection/page.tsx @@ -1,12 +1,15 @@ "use client"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import ProductCardOne as FeaturedProducts from '@/components/sections/product/ProductCardOne'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import FooterBase from '@/components/sections/footer/FooterBase'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Camera, ShoppingBag, Shirt, Sparkles, Award } from 'lucide-react'; +import { Camera, ShoppingBag, Shirt, Sparkles, Award, Heart } from 'lucide-react'; export default function NewCollectionPage() { const navigationItems = [ @@ -16,36 +19,6 @@ export default function NewCollectionPage() { { name: "Campaign", id: "campaign" } ]; - const footerColumns = [ - { - title: "Shop", - items: [ - { label: "Women", href: "women" }, - { label: "Men", href: "men" }, - { label: "New Collection", href: "new-collection" }, - { label: "Sale", href: "#" } - ] - }, - { - title: "Discover", - items: [ - { label: "Campaign", href: "campaign" }, - { label: "About Us", href: "#" }, - { label: "Journal", href: "#" }, - { label: "Contact", href: "notification" } - ] - }, - { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Shipping Info", href: "#" }, - { label: "Returns", href: "#" } - ] - } - ]; - return ( +
+ +
+
+
+ +
+ + +
-
-- 2.49.1