"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import TextAbout from "@/components/sections/about/TextAbout"; import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { BookOpen, Award, Zap } from "lucide-react"; const AboutPage = () => { const navItems = [ { name: "Home", id: "/" }, { name: "How It Works", id: "how-it-works" }, { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Dashboard", id: "https://app.interviewiq.io/dashboard" }, ]; const footerColumns = [ { title: "Product", items: [ { label: "Features", href: "/#features" }, { label: "Pricing", href: "/#pricing" }, { label: "Dashboard", href: "https://app.interviewiq.io/dashboard" }, { label: "API Docs", href: "https://docs.interviewiq.io" }, ], }, { title: "Company", items: [ { label: "About", href: "/about" }, { label: "Blog", href: "https://blog.interviewiq.io" }, { label: "Careers", href: "/careers" }, { label: "Contact", href: "/contact" }, ], }, { title: "Resources", items: [ { label: "Interview Tips", href: "https://blog.interviewiq.io/interview-tips" }, { label: "Community", href: "https://community.interviewiq.io" }, { label: "Status", href: "https://status.interviewiq.io" }, { label: "Help Center", href: "https://help.interviewiq.io" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" }, { label: "Security", href: "/security" }, ], }, ]; return (
); }; export default AboutPage;