From 43e66bf4168f30e71b6242c7244f6bb4e36d9566 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 03:40:48 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f24071b..6118def 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,17 @@ import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { ArrowRight, CheckCircle, Sparkles } from "lucide-react"; +import { ArrowRight, CheckCircle, Sparkles, Phone, Mail } from "lucide-react"; export default function LandingPage() { + const handlePhoneClick = () => { + window.location.href = "tel:206-741-9017"; + }; + + const handleEmailClick = () => { + window.location.href = "mailto:CoreScale.co@gmail.com"; + }; + return ( -- 2.49.1