diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cf0b291..16df7fa 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,43 +3,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import TeamCardEleven from "@/components/sections/team/TeamCardEleven"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; -import { Zap, Users, Heart } from "lucide-react"; +import { Zap, CreditCard, Mail } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Features", id: "/features" }, + { name: "Features", id: "/dashboard" }, { name: "Pricing", id: "/pricing" }, { name: "Docs", id: "https://docs.nextgen-intelligence.io" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "/" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Features", href: "/features" }, + title: "Product", items: [ + { label: "Features", href: "/" }, { label: "Pricing", href: "/pricing" }, { label: "Documentation", href: "https://docs.nextgen-intelligence.io" }, { label: "API Reference", href: "https://api.nextgen-intelligence.io" }, ], }, { - title: "Company", - items: [ - { label: "About Us", href: "/about" }, + title: "Company", items: [ + { label: "About Us", href: "/" }, { label: "Blog", href: "https://blog.nextgen-intelligence.io" }, { label: "Careers", href: "https://careers.nextgen-intelligence.io" }, { label: "Press", href: "https://press.nextgen-intelligence.io" }, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Tutorials", href: "https://tutorials.nextgen-intelligence.io" }, { label: "Community", href: "https://community.nextgen-intelligence.io" }, { label: "Support", href: "https://support.nextgen-intelligence.io" }, @@ -47,8 +44,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "https://nextgen-intelligence.io/privacy" }, { label: "Terms of Service", href: "https://nextgen-intelligence.io/terms" }, { label: "Cookie Policy", href: "https://nextgen-intelligence.io/cookies" }, @@ -79,215 +75,94 @@ export default function AboutPage() { /> -