Update src/app/page.tsx

This commit is contained in:
2026-04-08 22:03:40 +00:00
parent 7800116c8c
commit ebd586afde

View File

@@ -1,3 +1,4 @@
"use client";
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
@@ -9,8 +10,10 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function HomePage() {
const navItems = [{ name: 'Home', id: '/' }];
const navItems = [
{ name: 'Home', id: '/' },
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"