diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index de54408..6bb021b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,13 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import SplitAbout from "@/components/sections/about/SplitAbout"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Heart } from "lucide-react"; +import { Heart, CheckCircle, DollarSign, Headphones, Zap, Shield } from "lucide-react"; + +const AboutPage = () => { + const navItems = [ + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, + { name: "Blog", id: "https://blog.webild.io" }, + ]; -export default function AboutPage() { return ( + {/* Navbar */} + {/* About Section */}
-
- +
+ {/* Footer */}