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 +}