diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 702dbab..7282234 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,12 +1,11 @@ "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 { Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react"; +import { Star, Mail } from "lucide-react"; export default function AboutPage() { return ( @@ -28,7 +27,6 @@ export default function AboutPage() { navItems={[ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, - { name: "About", id: "/about" }, { name: "Pricing", id: "/pricing" }, { name: "FAQ", id: "/faq" } ]} @@ -38,37 +36,6 @@ export default function AboutPage() { /> -