diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx index 1e8b74c..b9155e5 100644 --- a/src/app/location/page.tsx +++ b/src/app/location/page.tsx @@ -7,7 +7,7 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { MapPin, Navigation } from "lucide-react"; +import { MapPin, Navigation, Phone } from "lucide-react"; export default function LocationPage() { const navItems = [ @@ -46,6 +46,10 @@ export default function LocationPage() { }, ]; + const handlePhoneCall = () => { + window.location.href = "tel:801-373-7044"; + }; + return ( @@ -89,36 +91,16 @@ export default function LocationPage() {