diff --git a/src/app/page.tsx b/src/app/page.tsx index 2586f71..e1b2b72 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,8 +10,10 @@ import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll' import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { useState } from 'react'; export default function LandingPage() { + const [isChatOpen, setIsChatOpen] = useState(false); return ( window.open("https://gilded-nest-ai.support/chat", "_blank"), href: "#" }} + button={{ text: "Gilded Nest AI Agent", onClick: () => setIsChatOpen(true) }} /> + {isChatOpen && ( +
+
+

AI Assistant

+ +
+
How can I help you today?
+
+ )}