'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import { Award } from 'lucide-react'; const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]; export default function HomePage() { return (
); }