From a26eadce856a64f843f94aabaff11269ecb1d85a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 00:48:33 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 353 +++++++++++++---------------------------------- 1 file changed, 99 insertions(+), 254 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 557807c..8629a31 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { useState } from "react"; import AboutMetric from '@/components/sections/about/AboutMetric'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; @@ -9,9 +10,12 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Book, Heart, MapPin } from "lucide-react"; +import Input from '@/components/form/Input'; +import { Book, Heart, MapPin, Search } from "lucide-react"; export default function LandingPage() { + const [search, setSearch] = useState(""); + return ( - + -
- -
+
+ +
-
- -
+ -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ +
); -} +} \ No newline at end of file -- 2.49.1