diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7282234..6762cc5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,11 +1,13 @@ "use client"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Star, Mail } from "lucide-react"; +import { Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; +import Link from "next/link"; export default function AboutPage() { return ( @@ -27,13 +29,50 @@ export default function AboutPage() { navItems={[ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, - { name: "Pricing", id: "/pricing" }, + { name: "About", id: "/about" }, { name: "FAQ", id: "/faq" } ]} button={{ text: "Shop Now", href: "/products" }} /> + + + +