diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f25136c..61dd57e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,13 +1,13 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Sparkles, Award, Mail } from "lucide-react"; +import { Award, Mail, Heart } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -22,26 +22,23 @@ export default function AboutPage() { const footerColumns = [ { - title: "Shop", - items: [ - { label: "All Products", href: "/" }, - { label: "New Arrivals", href: "/" }, - { label: "Best Sellers", href: "/best-sellers" }, - { label: "Brands", href: "/" }, + title: "Shop", items: [ + { label: "All Products", href: "/shop" }, + { label: "New Arrivals", href: "/shop" }, + { label: "Best Sellers", href: "/shop" }, + { label: "Brands", href: "/brands" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Contact", href: "/" }, + { label: "Contact", href: "/contact" }, { label: "Blog", href: "/" }, { label: "Careers", href: "#" }, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Shipping & Returns", href: "/" }, { label: "FAQ", href: "/" }, { label: "Size Guide", href: "#" }, @@ -49,8 +46,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -74,9 +70,10 @@ export default function AboutPage() { >
-