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 (