diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a503f6b..6150744 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,7 +6,6 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Playfair_Display } from 'next/font/google'; -import { Inter } from 'next/font/google'; diff --git a/src/app/page.tsx b/src/app/page.tsx index 7924737..2aa8adf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,325 +1,128 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactFaq from '@/components/sections/contact/ContactFaq'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Calendar } from "lucide-react"; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Calendar } from 'lucide-react'; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function HomePage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file