From feff31ac4ebd31d95d47f4cf8bbef957384bbe0c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 14 Apr 2026 02:45:58 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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?
+
+ )}