From c541902806ef4877e7e5e91d0bb4be4ae3420c3c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 01:16:04 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 58 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cf1a376..9eee544 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,8 +11,19 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterBase from '@/components/sections/footer/FooterBase'; import { Award, CheckCircle, Sparkles, Star, Zap, Shield } from 'lucide-react'; +import { useState } from 'react'; export default function LandingPage() { + const [showContactPopup, setShowContactPopup] = useState(false); + + const handleAuditClick = () => { + setShowContactPopup(true); + }; + + const handleClosePopup = () => { + setShowContactPopup(false); + }; + return ( + + {showContactPopup && ( +
+
+ +

Get Your Free Website Audit

+
+
+

Contact Information:

+
+
+

+ Phone: +

+

+ 202-499-0142 +

+
+
+

+ Email: +

+

+ moeswebpages@gmail.com +

+
+
+ +
+
+ )}
); }