diff --git a/src/app/page.tsx b/src/app/page.tsx
index e629f80..4cd2910 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -5,10 +5,11 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
-import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
+import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
-import ContactCenter from "@/components/sections/contact/ContactCenter";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
+import { useState, useEffect } from "react";
import {
Award,
BarChart3,
@@ -26,9 +27,38 @@ import {
User,
Users,
Zap,
+ Phone,
+ MapPin,
+ MessageCircle,
+ Loader,
} from "lucide-react";
export default function LandingPage() {
+ const [isLoading, setIsLoading] = useState(false);
+ const [mounted, setMounted] = useState(false);
+
+ useEffect(() => {
+ setMounted(true);
+ }, []);
+
+ const handleWhatsAppClick = () => {
+ const phoneNumber = "919907164118";
+ const message = "Hello! I'm interested in learning more about Paradigma's modular construction platform.";
+ const encodedMessage = encodeURIComponent(message);
+ window.open(
+ `https://wa.me/${phoneNumber}?text=${encodedMessage}`,
+ "_blank"
+ );
+ };
+
+ const handleCallClick = () => {
+ setIsLoading(true);
+ setTimeout(() => {
+ window.location.href = "tel:+919907164118";
+ setIsLoading(false);
+ }, 500);
+ };
+
return (