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!

+
+
+ + +
+
+
+ )}
); }