"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; import TeamCardSix from "@/components/sections/team/TeamCardSix"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Zap, Heart, Activity, User, Award, Dumbbell } from "lucide-react"; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, ]; const footerColumns = [ { title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "About Us", href: "/about" }, ], }, { title: "Membership", items: [ { label: "Basic Plan", href: "/#basic" }, { label: "Pro Plan", href: "/#pro" }, { label: "Elite Plan", href: "/#elite" }, { label: "Free Trial", href: "/#contact" }, ], }, { title: "Contact", items: [ { label: "WhatsApp", href: "https://wa.me/919876543210" }, { label: "Email", href: "mailto:hello@luxuryakhada.com" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }, ], }, ]; return (
); }