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 (