From 9ceff0674328d7d9da7d2ab375e8f0fcd229054d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 18:25:52 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 416 +++++++++++++++++------------------------------ 1 file changed, 147 insertions(+), 269 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 24f72c6..05f082b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,12 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Award, CheckCircle, Shield, Smile, Star, Zap } from "lucide-react"; +import { Award, CheckCircle, MessageSquare, Shield, Smile, Star, Zap } from "lucide-react"; +import { useState } from 'react'; export default function LandingPage() { + const [isChatOpen, setIsChatOpen] = useState(false); + return ( - + -
- -
+ {/* Minimal Chatbot Overlay */} + {isChatOpen && ( +
+
+

Support Chat

+ +
+
+

Hello! Need to schedule a cleaning?

+
+
+ +
+
+ )} -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
+ +
); -} \ No newline at end of file +} -- 2.49.1