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 (