Update src/app/contatti/page.tsx

This commit is contained in:
2026-03-10 20:23:43 +00:00
parent b755eeccea
commit 1518f3cfc4

View File

@@ -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() {
<FooterLogoReveal
logoText="Intercalor Gas"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Termini di Servizio",
href: "#",
}}
text: "Termini di Servizio", href: "#"}}
ariaLabel="Site footer"
/>
</div>