From afc0d12e86f48447575d71bce1f912965c54733c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:39:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f3f674b..adc3a17 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,8 +11,11 @@ import FaqBase from "@/components/sections/faq/FaqBase"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterMedia from "@/components/sections/footer/FooterMedia"; import { Check, HelpCircle, Mail, Sparkles, Star, TrendingUp, Zap } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [showChatWindow, setShowChatWindow] = useState(false); + return ( setShowChatWindow(true) }, { text: "Learn More", href: "#features" } ]} /> @@ -244,6 +247,35 @@ export default function LandingPage() { ]} /> + + {showChatWindow && ( +
+
+
+

ChatAI Assistant

+ +
+
+

Chat window is ready. Start your conversation with our AI assistant!

+
+
+ + +
+
+
+ )}
); } -- 2.49.1