Update src/app/page.tsx
This commit is contained in:
346
src/app/page.tsx
346
src/app/page.tsx
@@ -26,258 +26,112 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Chi siamo",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Idraulico Parma"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Servizi", id: "services" },
|
||||
{ name: "Chi siamo", id: "about" },
|
||||
{ name: "Contatti", id: "contact" },
|
||||
]}
|
||||
brandName="Idraulico Parma"
|
||||
button={{ text: "Contattaci", href: "tel:3493621491" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Idraulico Parma e Provincia: Pronto Intervento 24/7"
|
||||
description="Serietà e professionalità al tuo servizio. Interventi rapidi, 7 giorni su 7. Chiamaci ora per ogni emergenza idraulica."
|
||||
buttons={[
|
||||
{
|
||||
text: "Chiama Subito",
|
||||
href: "tel:3493621491",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/carpentry-workspace_23-2147773344.jpg"
|
||||
imageAlt="professional plumbing tools workbench"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-mechanic-work_23-2148480413.jpg",
|
||||
alt: "Close-up mechanic at work",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg",
|
||||
alt: "High angle man working as plumber",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lucky-plumber_1368-784.jpg",
|
||||
alt: "Lucky plumber",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-53608.jpg",
|
||||
alt: "The technician checking the heating system in the boiler room",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-businesswoman-handshaking-with-african-american-mechanic-auto-repair-shop_637285-11585.jpg",
|
||||
alt: "Happy businesswoman handshaking with African American mechanic at auto repair shop",
|
||||
},
|
||||
]}
|
||||
avatarText="Tecnici esperti a tua disposizione"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Disotturazioni 24h",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Riparazioni Caldaie",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Pronto Intervento Idraulico",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Installazione Climatizzatori",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Assistenza Sanitari",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Idraulico Parma e Provincia: Pronto Intervento 24/7"
|
||||
description="Serietà e professionalità al tuo servizio. Interventi rapidi, 7 giorni su 7. Chiamaci ora per ogni emergenza idraulica."
|
||||
buttons={[{ text: "Chiama Subito", href: "tel:3493621491" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/carpentry-workspace_23-2147773344.jpg"
|
||||
imageAlt="professional plumbing tools workbench"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-mechanic-work_23-2148480413.jpg", alt: "Close-up mechanic at work" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/high-angle-man-working-as-plumber_23-2150746421.jpg", alt: "High angle man working as plumber" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/lucky-plumber_1368-784.jpg", alt: "Lucky plumber" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-53608.jpg", alt: "The technician checking the heating system in the boiler room" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-businesswoman-handshaking-with-african-american-mechanic-auto-repair-shop_637285-11585.jpg", alt: "Happy businesswoman handshaking with African American mechanic at auto repair shop" }
|
||||
]}
|
||||
avatarText="Tecnici esperti a tua disposizione"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Disotturazioni 24h" },
|
||||
{ type: "text", text: "Riparazioni Caldaie" },
|
||||
{ type: "text", text: "Pronto Intervento Idraulico" },
|
||||
{ type: "text", text: "Installazione Climatizzatori" },
|
||||
{ type: "text", text: "Assistenza Sanitari" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Professionalità e Affidabilità"
|
||||
metrics={[
|
||||
{
|
||||
icon: CheckCircle,
|
||||
label: "Operatività",
|
||||
value: "24/7",
|
||||
},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Tempo di risposta",
|
||||
value: "Rapido",
|
||||
},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
label: "Certificazioni",
|
||||
value: "A norma",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Professionalità e Affidabilità"
|
||||
metrics={[
|
||||
{ icon: CheckCircle, label: "Operatività", value: "24/7" },
|
||||
{ icon: Clock, label: "Tempo di risposta", value: "Rapido" },
|
||||
{ icon: ShieldCheck, label: "Certificazioni", value: "A norma" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyEight
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Disotturazioni",
|
||||
subtitle: "Sblocco tubi e scarichi",
|
||||
category: "Emergenza",
|
||||
value: "Rapidità",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Assistenza Caldaia",
|
||||
subtitle: "Ripristino efficienza",
|
||||
category: "Manutenzione",
|
||||
value: "Sicurezza",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Riparazioni Bagno",
|
||||
subtitle: "Sanitari e docce",
|
||||
category: "Riparazioni",
|
||||
value: "Qualità",
|
||||
},
|
||||
]}
|
||||
title="I Nostri Servizi"
|
||||
description="Soluzioni complete per ogni esigenza idraulica, dalle piccole riparazioni alle grandi installazioni."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyEight
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ id: "1", title: "Disotturazioni", subtitle: "Sblocco tubi e scarichi", category: "Emergenza", value: "Rapidità" },
|
||||
{ id: "2", title: "Assistenza Caldaia", subtitle: "Ripristino efficienza", category: "Manutenzione", value: "Sicurezza" },
|
||||
{ id: "3", title: "Riparazioni Bagno", subtitle: "Sanitari e docce", category: "Riparazioni", value: "Qualità" }
|
||||
]}
|
||||
title="I Nostri Servizi"
|
||||
description="Soluzioni complete per ogni esigenza idraulica, dalle piccole riparazioni alle grandi installazioni."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Marco V.",
|
||||
role: "Cliente residenziale",
|
||||
testimonial: "Intervento rapidissimo per una perdita improvvisa, molto soddisfatto.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/they-re-moving-bigger-home_329181-9758.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Giulia B.",
|
||||
role: "Cliente residenziale",
|
||||
testimonial: "Professionale e cordiale, ha risolto tutto in tempi brevi.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/unpleased-showing-stop-gesture-young-builder-man-uniform-holding-gas-wrench-isolated-blue-background_141793-134626.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Luca R.",
|
||||
role: "Cliente residenziale",
|
||||
testimonial: "Ottimo servizio, molto competente sulla caldaia.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/excited-young-woman-showing-banner-pointing-fingers-left-smiling-camera-standing-amazed-white-wall_176420-37497.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Elena T.",
|
||||
role: "Cliente residenziale",
|
||||
testimonial: "Puntuali e precisi, consigliati!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-senior-woman-loving-her-pot-plant_23-2147901508.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Paolo S.",
|
||||
role: "Cliente residenziale",
|
||||
testimonial: "Servizio eccellente, reperibili anche la domenica.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-businessman_23-2148746289.jpg",
|
||||
},
|
||||
]}
|
||||
title="Cosa Dicono di Noi"
|
||||
description="La soddisfazione dei nostri clienti è la nostra miglior garanzia di professionalità."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Marco V.", role: "Cliente residenziale", testimonial: "Intervento rapidissimo per una perdita improvvisa, molto soddisfatto.", imageSrc: "http://img.b2bpic.net/free-photo/they-re-moving-bigger-home_329181-9758.jpg" },
|
||||
{ id: "2", name: "Giulia B.", role: "Cliente residenziale", testimonial: "Professionale e cordiale, ha risolto tutto in tempi brevi.", imageSrc: "http://img.b2bpic.net/free-photo/unpleased-showing-stop-gesture-young-builder-man-uniform-holding-gas-wrench-isolated-blue-background_141793-134626.jpg" },
|
||||
{ id: "3", name: "Luca R.", role: "Cliente residenziale", testimonial: "Ottimo servizio, molto competente sulla caldaia.", imageSrc: "http://img.b2bpic.net/free-photo/excited-young-woman-showing-banner-pointing-fingers-left-smiling-camera-standing-amazed-white-wall_176420-37497.jpg" },
|
||||
{ id: "4", name: "Elena T.", role: "Cliente residenziale", testimonial: "Puntuali e precisi, consigliati!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-senior-woman-loving-her-pot-plant_23-2147901508.jpg" },
|
||||
{ id: "5", name: "Paolo S.", role: "Cliente residenziale", testimonial: "Servizio eccellente, reperibili anche la domenica.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-businessman_23-2148746289.jpg" }
|
||||
]}
|
||||
title="Cosa Dicono di Noi"
|
||||
description="La soddisfazione dei nostri clienti è la nostra miglior garanzia di professionalità."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
tag="Contattaci ora"
|
||||
title="Hai un'emergenza?"
|
||||
description="Siamo operativi 24 ore su 24 per risolvere ogni tuo problema idraulico in provincia di Parma."
|
||||
buttonText="Chiama +39 349.36.21.491"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Contattaci ora"
|
||||
title="Hai un'emergenza?"
|
||||
description="Siamo operativi 24 ore su 24 per risolvere ogni tuo problema idraulico in provincia di Parma."
|
||||
buttonText="Chiama +39 349.36.21.491"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Servizi",
|
||||
items: [
|
||||
{
|
||||
label: "Disotturazioni Parma",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Riparazione Bagno",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Assistenza",
|
||||
items: [
|
||||
{
|
||||
label: "Assistenza Caldaia",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Assistenza Climatizzatori",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
{
|
||||
label: "349.36.21.491",
|
||||
href: "tel:3493621491",
|
||||
},
|
||||
{
|
||||
label: "info@parmaidraulica.it",
|
||||
href: "mailto:info@parmaidraulica.it",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Idraulico Parma"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Servizi", items: [{ label: "Disotturazioni Parma", href: "#" }, { label: "Riparazione Bagno", href: "#" }] },
|
||||
{ title: "Assistenza", items: [{ label: "Assistenza Caldaia", href: "#" }, { label: "Assistenza Climatizzatori", href: "#" }] },
|
||||
{ title: "Contatti", items: [{ label: "349.36.21.491", href: "tel:3493621491" }, { label: "info@parmaidraulica.it", href: "mailto:info@parmaidraulica.it" }] }
|
||||
]}
|
||||
logoText="Idraulico Parma"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user