diff --git a/src/app/page.tsx b/src/app/page.tsx index af76f0b..2a5d901 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,10 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa import ContactCenter from "@/components/sections/contact/ContactCenter"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Utensils, Leaf, Heart, Star, MapPin, HelpCircle } from "lucide-react"; +import { Utensils, Leaf, Heart, Star, MapPin, HelpCircle, Phone } from "lucide-react"; + +const PHONE_NUMBER = "+351926291242"; +const PHONE_HREF = "tel:+351926291242"; export default function LandingPage() { return ( @@ -37,20 +40,21 @@ export default function LandingPage() { { name: "Contact", id: "contact" }, ]} button={{ - text: "📞 Call Now", href: "tel:+351926291242"}} + text: "📞 Call Now", href: PHONE_HREF, + }} />
@@ -105,7 +110,7 @@ export default function LandingPage() {