diff --git a/src/app/contatti/page.tsx b/src/app/contatti/page.tsx index 46c3171..ef578ba 100644 --- a/src/app/contatti/page.tsx +++ b/src/app/contatti/page.tsx @@ -9,11 +9,11 @@ import Link from "next/link"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, + { name: "Home", id: "/" }, { name: "Servizi", id: "services" }, { name: "Caldaie", id: "heating" }, { name: "Chi Siamo", id: "about" }, - { name: "Contatti", id: "contact" }, + { name: "Contatti", id: "/contatti" }, ]; return ( @@ -47,18 +47,13 @@ export default function ContactPage() { description="Non rimandare i problemi di riscaldamento. I nostri tecnici qualificati sono pronti a risolvere qualsiasi guasto in tempi brevi con professionismo e trasparenza." buttons={[ { - text: "☎ Chiama Ora: 0331 824814", - href: "tel:0331824814", - }, + text: "☎ Chiama Ora: 0331 824814", href: "tel:0331824814"}, { - text: "📩 Richiedi Preventivo Online", - href: "#contact-form", - }, + text: "📩 Richiedi Preventivo Online", href: "mailto:tommivallini@gmail.com"}, ]} buttonAnimation="slide-up" background={{ - variant: "gradient-bars", - }} + variant: "gradient-bars"}} useInvertedBackground={false} ariaLabel="Call to action section - Contatta per intervento" /> @@ -68,13 +63,9 @@ export default function ContactPage() {