diff --git a/src/app/page.tsx b/src/app/page.tsx index c0d175e..e2c24a2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,6 @@ -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +'use client'; + +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; @@ -7,10 +9,15 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBase from '@/components/sections/footer/FooterBase'; +import { CalendarDays } from 'lucide-react'; -const navItems = [{ name: "Home", id: "/" }]; +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Contact', id: '/contact' } +]; -export default function HomePage() { +export default function Page() { return (
- -
-
- -
-
-
- +
+
+ +
+
+
-