189 lines
8.9 KiB
TypeScript
189 lines
8.9 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
|
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
|
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
|
import TeamCardSix from "@/components/sections/team/TeamCardSix";
|
|
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
|
import { Leaf, TreePine, Phone } from "lucide-react";
|
|
|
|
export default function LandscapingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="large"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
brandName="Asti Guerino"
|
|
navItems={[
|
|
{ name: "Servizi", id: "services" },
|
|
{ name: "Chi Siamo", id: "about" },
|
|
{ name: "Recensioni", id: "testimonials" },
|
|
{ name: "Contatti", id: "contact" },
|
|
]}
|
|
button={{ text: "Chiama Ora", href: "tel:+39095000000" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroOverlayTestimonial
|
|
tag="Negozio locale a Mascalucia"
|
|
tagIcon={Leaf}
|
|
title="Il tuo punto di fiducia per il giardinaggio a Mascalucia"
|
|
description="Prodotti di qualità, consigli esperti e soluzioni su misura per far fiorire il tuo giardino. Scopri il meglio per la cura del verde."
|
|
buttons={[
|
|
{ text: "Richiedi una Consulenza Gratuita", href: "tel:+39095000000" },
|
|
{ text: "Scopri i Servizi", href: "#services" },
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="http://img.b2bpic.net/free-photo/town-park-with-benches-fireplace_114579-13022.jpg"
|
|
imageAlt="Giardino curato a Mascalucia"
|
|
showDimOverlay={true}
|
|
textPosition="top"
|
|
testimonials={[
|
|
{
|
|
name: "Giuseppe R.", handle: "Cliente Soddisfatto", testimonial: "Eccezionale, professionale e sempre disponibile. Super soddisfatto!", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg", imageAlt: "Giuseppe R."}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
tag="La nostra storia"
|
|
tagIcon={Leaf}
|
|
tagAnimation="slide-up"
|
|
title="Passione e competenza per il verde locale"
|
|
description="Siamo a Mascalucia per assisterti nella cura del tuo spazio verde con i migliori prodotti sul mercato."
|
|
subdescription="Anni di esperienza al tuo servizio"
|
|
icon={TreePine}
|
|
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-young-woman-surrounded-by-plants_23-2150522443.jpg"
|
|
mediaAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardNineteen
|
|
tag="Cosa offriamo"
|
|
tagIcon={Leaf}
|
|
title="Servizi e Prodotti"
|
|
description="Tutto ciò di cui hai bisogno per un giardino da sogno."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
tag: "Prodotti", title: "Attrezzature Professionali", subtitle: "Qualità garantita", description: "Vendita di attrezzi selezionati per ogni tipo di attività di giardinaggio.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-gardening-objects_23-2148060648.jpg"},
|
|
{
|
|
tag: "Expertise", title: "Consulenza Esclusiva", subtitle: "Consigli personalizzati", description: "Approfitta dell'esperienza del nostro team per far crescere le tue piante sane.", imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer_158595-7002.jpg"},
|
|
{
|
|
tag: "Logistica", title: "Consegna Rapida", subtitle: "Servizio locale", description: "Portiamo tutto ciò che ti serve direttamente a casa tua a Mascalucia.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-male-gardener-pointing-finger-blank-white-frame_23-2148165236.jpg"},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="why-us" data-section="why-us">
|
|
<TeamCardSix
|
|
title="Perché scegliere noi"
|
|
description="La nostra missione è la tua soddisfazione."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
members={[
|
|
{ id: "1", name: "Qualità", role: "Prodotti scelti dai migliori fornitori locali." },
|
|
{ id: "2", name: "Esperienza", role: "Anni di consulenza nel settore del verde." },
|
|
{ id: "3", name: "Supporto", role: "Siamo sempre pronti a consigliarti al meglio." },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardOne
|
|
tag="Il team"
|
|
title="Esperti al tuo fianco"
|
|
description="Persone che amano la natura tanto quanto te."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
gridVariant="uniform-all-items-equal"
|
|
animationType="slide-up"
|
|
members={[
|
|
{ id: "1", name: "Asti Guerino", role: "Fondatore e Esperto" },
|
|
{ id: "2", name: "Staff", role: "Esperti in cura delle piante" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
cardTag="Cosa dicono i clienti"
|
|
cardTitle="Valutazione 5.0 su Google"
|
|
buttons={[{ text: "Chiama per un consiglio", href: "tel:+39095000000" }]}
|
|
cardAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{ id: "1", name: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
tag="FAQ"
|
|
title="Domande Frequenti"
|
|
description="Risposte rapide per aiutarti subito."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
faqsAnimation="slide-up"
|
|
faqs={[
|
|
{ id: "1", title: "Effettuate consegne?", content: "Sì, consegniamo prodotti direttamente a Mascalucia e zone limitrofe." },
|
|
{ id: "2", title: "Offrite consigli?", content: "Certamente, vieni a trovarci o chiamaci per una consulenza esperta." },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplitForm
|
|
title="Contattaci oggi"
|
|
description="Hai bisogno di un prodotto o di un consiglio? Siamo qui a Mascalucia."
|
|
useInvertedBackground={false}
|
|
buttonText="Invia Messaggio"
|
|
imageSrc="http://img.b2bpic.net/free-photo/location-symbol-with-landscape-background_23-2149906306.jpg"
|
|
inputs={[
|
|
{ name: "name", type: "text", placeholder: "Nome e Cognome", required: true },
|
|
{ name: "phone", type: "tel", placeholder: "Telefono", required: true },
|
|
]}
|
|
textarea={{ name: "message", placeholder: "Descrivi cosa ti serve", rows: 4, required: true }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{ title: "Contatti", items: [{ label: "Mascalucia, Catania" }, { label: "095 000000", href: "tel:+39095000000" }] },
|
|
]}
|
|
bottomLeftText="© 2024 Asti Guerino Pollice Verde"
|
|
bottomRightText="Massima Qualità"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |