"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { TrendingUp, Users, Heart, Award, DollarSign, Search, Code, Share2, Palette, Funnel, Zap, Briefcase, Star, } from "lucide-react"; const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Case Studies", id: "/case-studies" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, ]; const navItemsForNav = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "Case Studies", id: "case-studies" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, ]; const footerColumns = [ { title: "Services", items: [ { label: "Paid Ads Management", href: "/services" }, { label: "SEO Services", href: "/services" }, { label: "Website Design", href: "/services" }, { label: "Social Media Marketing", href: "/services" }, ], }, { title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Case Studies", href: "#case-studies" }, { label: "Team", href: "/about" }, { label: "Blog", href: "#" }, ], }, { title: "Support", items: [ { label: "Contact Us", href: "/contact" }, { label: "FAQ", href: "#" }, { label: "Resources", href: "#" }, { label: "Documentation", href: "#" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Disclaimer", href: "#" }, ], }, ]; export default function HomePage() { return (
); }