From fcee09daef35dd033db0cdf425c146649f550022 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 1 Apr 2026 14:30:56 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/app/layout.tsx --- src/app/layout.tsx | 1 - 1 file changed, 1 deletion(-) 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'; -- 2.49.1 From 5b3034fb3582b4429125de990da9257e1f11c530 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Apr 2026 14:31:12 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 431 +++++++++++++---------------------------------- 1 file changed, 117 insertions(+), 314 deletions(-) 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 -- 2.49.1