From 5b33b0a19de8f6f5d8b5bd35c624867553868299 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Apr 2026 07:39:20 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 70 +++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 37 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0fa0249..479ccfc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,4 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; @@ -8,15 +7,15 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Mail } from 'lucide-react'; +import { Phone } from 'lucide-react'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } +]; export default function Page() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } - ]; - return (
-- 2.49.1