From 2a84c7300fb0e8d03d2e48878ffb7e499d640bb1 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 27 Mar 2026 21:21:27 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/app/page.tsx --- src/app/page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index a499e56..d7653b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,13 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar export default function LandingPage() { return ( -- 2.49.1 From 44fc901f3ff26d50b5ba9ac32fcc802621166ac0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 21:21:42 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 352 ++++++++++++++--------------------------------- 1 file changed, 104 insertions(+), 248 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d7653b0..5838b6a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,268 +2,124 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactText from '@/components/sections/contact/ContactText'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1