"use client"; import Link from "next/link"; import { Sparkles, Zap, Crown } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import TextAbout from "@/components/sections/about/TextAbout"; import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function HomePage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Portfolio", id: "portfolio" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { title: "Cartel", items: [ { label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Portfolio", href: "/" }, { label: "About", href: "/" }, ], }, { title: "Operations", items: [ { label: "Brand Strategy", href: "/services" }, { label: "Web Design", href: "/services" }, { label: "Content Creation", href: "/services" }, { label: "Apply for Membership", href: "/contact" }, ], }, { title: "Connect", items: [ { label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }, { label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Code of Conduct", href: "#" }, ], }, ]; return (
); }