diff --git a/src/app/page.tsx b/src/app/page.tsx index 9dc87aa..9299907 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,66 +1,169 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; -import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import { Brush, Home, Palette, Building2, Check, Users, MessageSquare, Shield } from 'lucide-react'; +import Link from "next/link"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { Brush, Home, Palette, Building2, Check, Users, MessageSquare, Shield } from "lucide-react"; -const navItems = [{ name: "Home", id: "hero" }, { name: "Services", id: "services" }, { name: "Gallery", id: "gallery" }, { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" }]; +const navItems = [ + { name: "Home", id: "/" }, +]; export default function HomePage() { return ( - +
- +
- +
- +
- +
- +
- +
- +
- +
); -} \ No newline at end of file +}