Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 34cd30bed9 | |||
| 7b716070b7 | |||
| 021659adaa | |||
| 91dd3918de | |||
| da539c1e47 | |||
| dbafa65fbc | |||
| b3d7253e2d | |||
| ec424781b4 |
192
src/app/page.tsx
192
src/app/page.tsx
@@ -6,7 +6,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
@@ -31,39 +31,28 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "servizi",
|
||||
},
|
||||
name: "Servizi", id: "servizi"},
|
||||
{
|
||||
name: "Chi Siamo",
|
||||
id: "chi-siamo",
|
||||
},
|
||||
name: "Chi Siamo", id: "chi-siamo"},
|
||||
{
|
||||
name: "Recensioni",
|
||||
id: "recensioni",
|
||||
},
|
||||
name: "Recensioni", id: "recensioni"},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "contatti",
|
||||
},
|
||||
name: "Contatti", id: "contatti"},
|
||||
]}
|
||||
brandName="EG Pluservice"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="EG Pluservice"
|
||||
<HeroBillboard
|
||||
title="EG Pluservice"
|
||||
description="Ogni superficie racconta la tua storia. Pavimentazioni su misura e ristrutturazioni di alta qualità a Bergamo e provincia."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
buttons={[
|
||||
{
|
||||
text: "Richiedi Preventivo",
|
||||
href: "#contatti",
|
||||
},
|
||||
text: "Richiedi Preventivo", href: "#contatti"},
|
||||
{
|
||||
text: "Scopri Servizi",
|
||||
href: "#servizi",
|
||||
},
|
||||
text: "Scopri Servizi", href: "#servizi"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/photo-stone-texture-pattern_58702-12381.jpg"
|
||||
/>
|
||||
@@ -76,64 +65,28 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Pavimentazioni",
|
||||
label: "Posa ceramica, gres, parquet",
|
||||
items: [
|
||||
"Posa professionale",
|
||||
"Precisione millimetrica",
|
||||
"Materiali di pregio",
|
||||
],
|
||||
id: "f1", title: "Pavimentazioni", label: "Posa ceramica, gres, parquet", items: [
|
||||
"Posa professionale", "Precisione millimetrica", "Materiali di pregio"],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Ristrutturazione Bagno",
|
||||
label: "Trasformazione completa",
|
||||
items: [
|
||||
"Demolizione",
|
||||
"Rivestimenti",
|
||||
"Sanitari e doccia",
|
||||
],
|
||||
id: "f2", title: "Ristrutturazione Bagno", label: "Trasformazione completa", items: [
|
||||
"Demolizione", "Rivestimenti", "Sanitari e doccia"],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Rivestimenti",
|
||||
label: "Ambienti interni ed esterni",
|
||||
items: [
|
||||
"Cucine di design",
|
||||
"Rivestimenti doccia",
|
||||
"Design moderno",
|
||||
],
|
||||
id: "f3", title: "Rivestimenti", label: "Ambienti interni ed esterni", items: [
|
||||
"Cucine di design", "Rivestimenti doccia", "Design moderno"],
|
||||
},
|
||||
{
|
||||
id: "f4",
|
||||
title: "Garage",
|
||||
label: "Soluzioni resistenti",
|
||||
items: [
|
||||
"Pavimenti in resina",
|
||||
"Cemento industriale",
|
||||
"Durabilità",
|
||||
],
|
||||
id: "f4", title: "Garage", label: "Soluzioni resistenti", items: [
|
||||
"Pavimenti in resina", "Cemento industriale", "Durabilità"],
|
||||
},
|
||||
{
|
||||
id: "f5",
|
||||
title: "Idraulica",
|
||||
label: "Termoidraulica completa",
|
||||
items: [
|
||||
"Sostituzione termosifoni",
|
||||
"Impianti idraulici",
|
||||
"Installazioni",
|
||||
],
|
||||
id: "f5", title: "Idraulica", label: "Termoidraulica completa", items: [
|
||||
"Sostituzione termosifoni", "Impianti idraulici", "Installazioni"],
|
||||
},
|
||||
{
|
||||
id: "f6",
|
||||
title: "Piccoli Lavori",
|
||||
label: "Interventi domestici",
|
||||
items: [
|
||||
"Finiture cucina",
|
||||
"Riparazioni",
|
||||
"Supporto tecnico",
|
||||
],
|
||||
id: "f6", title: "Piccoli Lavori", label: "Interventi domestici", items: [
|
||||
"Finiture cucina", "Riparazioni", "Supporto tecnico"],
|
||||
},
|
||||
]}
|
||||
title="Competenza Artigianale"
|
||||
@@ -146,14 +99,10 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Gabriel e il Suo Team"
|
||||
description={[
|
||||
"EG Pluservice nasce dalla passione per il lavoro artigianale ben fatto. Esperienza, onestà e attenzione al cliente sono i nostri pilastri.",
|
||||
"Interventi a Bergamo e provincia con massima serietà.",
|
||||
]}
|
||||
"EG Pluservice nasce dalla passione per il lavoro artigianale ben fatto. Siamo un'impresa regolarmente licenziata e assicurata, garantendo la massima tranquillità durante ogni progetto.", "Interventi a Bergamo e provincia con massima serietà."]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Chiama: 351 151 3167",
|
||||
href: "tel:3511513167",
|
||||
},
|
||||
text: "Chiama: 351 151 3167", href: "tel:3511513167"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -164,45 +113,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Impeccabile",
|
||||
quote: "Professionista completo e onesto, ha rifatto il bagno e aiutato in altri piccoli lavori.",
|
||||
name: "Davide",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-woman-with-tablet-cafe_1262-3779.jpg",
|
||||
},
|
||||
id: "t1", title: "Impeccabile", quote: "Professionista completo e onesto, ha rifatto il bagno e aiutato in altri piccoli lavori.", name: "Davide", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/happy-senior-woman-with-tablet-cafe_1262-3779.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Affidabile",
|
||||
quote: "Capace e disponibile, ha pavimentato egregiamente il garage.",
|
||||
name: "Antonella B.",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-side-view-amazing-happy-young-african-american-female-with-afro-hairstyle-smiling-broadly-keeping-arms-her-chest-listening-nice-music-radio-baking-pie-cozy-kitchen_343059-2650.jpg",
|
||||
},
|
||||
id: "t2", title: "Affidabile", quote: "Capace e disponibile, ha pavimentato egregiamente il garage.", name: "Antonella B.", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/indoor-side-view-amazing-happy-young-african-american-female-with-afro-hairstyle-smiling-broadly-keeping-arms-her-chest-listening-nice-music-radio-baking-pie-cozy-kitchen_343059-2650.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Fantastici",
|
||||
quote: "Lavoro impeccabile con il nostro bagno, seguiti in ogni fase.",
|
||||
name: "Marina M.",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15675.jpg",
|
||||
},
|
||||
id: "t3", title: "Fantastici", quote: "Lavoro impeccabile con il nostro bagno, seguiti in ogni fase.", name: "Marina M.", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15675.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Ottimo lavoro",
|
||||
quote: "Professionalità e cortesia, siamo molto soddisfatti.",
|
||||
name: "Luca R.",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cute-couple-repairs-room_1157-25159.jpg",
|
||||
},
|
||||
id: "t4", title: "Ottimo lavoro", quote: "Professionalità e cortesia, siamo molto soddisfatti.", name: "Luca R.", role: "Cliente", imageSrc: "http://img.b2bpic.net/young-cute-couple-repairs-room_1157-25159.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Consigliati",
|
||||
quote: "Attenzione ai dettagli e rispetto dei tempi, il top.",
|
||||
name: "Sara G.",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-home_23-2149706568.jpg",
|
||||
},
|
||||
id: "t5", title: "Consigliati", quote: "Attenzione ai dettagli e rispetto dei tempi, il top.", name: "Sara G.", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-home_23-2149706568.jpg"},
|
||||
]}
|
||||
title="Dicono di Noi"
|
||||
description="La soddisfazione dei nostri clienti è il nostro miglior biglietto da visita."
|
||||
@@ -214,14 +133,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Google Maps Recensioni",
|
||||
"Artigiani di Bergamo",
|
||||
"Certificazione Posa",
|
||||
"Ristrutturazioni Locali",
|
||||
"Partner Fornitori",
|
||||
"Qualità Garantita",
|
||||
"Esperienza Decennale",
|
||||
]}
|
||||
"Google Maps Recensioni", "Artigiani di Bergamo", "Certificazione Posa", "Ristrutturazioni Locali", "Partner Fornitori", "Qualità Garantita", "Esperienza Decennale"]}
|
||||
title="Presenza sul Territorio"
|
||||
description="Partner certificati e fiducia dai clienti di Bergamo."
|
||||
/>
|
||||
@@ -233,20 +145,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "Coprite tutta la provincia di Bergamo?",
|
||||
content: "Sì, operiamo in tutta Bergamo e la sua intera provincia con tempestività.",
|
||||
},
|
||||
id: "faq1", title: "Coprite tutta la provincia di Bergamo?", content: "Sì, operiamo in tutta Bergamo e la sua intera provincia con tempestività."},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "Offrite preventivi gratuiti?",
|
||||
content: "Certamente, i nostri preventivi sono chiari e senza impegno.",
|
||||
},
|
||||
id: "faq2", title: "Offrite preventivi gratuiti?", content: "Certamente, i nostri preventivi sono chiari e senza impegno."},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "Siete disponibili per piccoli lavori?",
|
||||
content: "Sì, ci occupiamo sia di grandi ristrutturazioni che di piccoli interventi domestici.",
|
||||
},
|
||||
id: "faq3", title: "Siete disponibili per piccoli lavori?", content: "Sì, ci occupiamo sia di grandi ristrutturazioni che di piccoli interventi domestici."},
|
||||
{
|
||||
id: "faq4", title: "Quali sono le tempistiche per un preventivo?", content: "Ci impegniamo a fornire una risposta e una stima indicativa entro 48 ore dalla ricezione della richiesta."},
|
||||
]}
|
||||
title="Domande Frequenti"
|
||||
description="Tutto quello che c'è da sapere sui nostri interventi."
|
||||
@@ -258,8 +163,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Contatti"
|
||||
title="Parliamo del tuo progetto"
|
||||
description="Contattaci per una consulenza o richiedi un preventivo personalizzato."
|
||||
@@ -273,29 +177,19 @@ export default function LandingPage() {
|
||||
logoText="EG Pluservice"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigazione",
|
||||
items: [
|
||||
title: "Navigazione", items: [
|
||||
{
|
||||
label: "Servizi",
|
||||
href: "#servizi",
|
||||
},
|
||||
label: "Servizi", href: "#servizi"},
|
||||
{
|
||||
label: "Chi Siamo",
|
||||
href: "#chi-siamo",
|
||||
},
|
||||
label: "Chi Siamo", href: "#chi-siamo"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
title: "Contatti", items: [
|
||||
{
|
||||
label: "351 151 3167",
|
||||
href: "tel:3511513167",
|
||||
},
|
||||
label: "351 151 3167", href: "tel:3511513167"},
|
||||
{
|
||||
label: "Ghiaie (BG)",
|
||||
href: "#",
|
||||
},
|
||||
label: "Ghiaie (BG)", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -305,4 +199,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user