From c8c0a14064fe8df1358648affb159b1d59098a3a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 22:32:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d2881c5..f8b31f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,3 @@ -"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; @@ -7,37 +6,35 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from 'next/link'; + +const navItems = [ + { name: "Home", id: "/" }, +]; export default function Page() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Testimonials", id: "/testimonials" }, - { name: "Contact", id: "/contact" }, - ]; return (
- +
- +
- +
- +
- +
); -- 2.49.1