From 2a66c6c16c7a8204d6461a485bbf806b1478f211 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:24:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4cf674c..e7ff745 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,9 +9,12 @@ import FeatureHoverPattern from '@/components/sections/feature/featureHoverPatte import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Award, Clock, Crown, DollarSign, Flame, MapPin, MessageSquare, Navigation, Smile, Sparkles, Star, Users } from 'lucide-react'; +import { Award, Clock, Crown, DollarSign, Flame, MapPin, MessageSquare, Navigation, Smile, Sparkles, Star, Users, Phone } from 'lucide-react'; export default function LandingPage() { + const phoneNumber = "04221-6866062"; + const phoneNumberFormatted = "042216866062"; + return ( @@ -42,10 +45,10 @@ export default function LandingPage() {
console.log('contact submitted')} />
@@ -179,14 +182,14 @@ export default function LandingPage() { @@ -196,7 +199,7 @@ export default function LandingPage() { columns={[ { items: [ - { label: "πŸ“ž Call Now", href: "tel:04221-6866062" }, + { label: "πŸ“ž Call Now: 042216866062", href: `tel:${phoneNumberFormatted}` }, { label: "πŸ“ Get Directions", href: "https://maps.google.com/?q=Bahnhofstraße+30,+27749+Delmenhorst" }, { label: "πŸ• Hours: Thu-Sun 12:00+", href: "#" } ] -- 2.49.1