From f580232609cc295164cb4f1184099e38f107ed29 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 22:05:16 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 45 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 3 deletions(-) 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" }} /> + + + +
+
@@ -75,4 +114,4 @@ export default function AboutPage() { ); -} +} \ No newline at end of file