Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 00426604a8 | |||
| 3d76922469 | |||
| 39aba2a6f5 | |||
| 7a1b5cc949 | |||
| 42527f3bd2 |
@@ -2,15 +2,16 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
|
import { Leaf, Award, MapPin } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -110,42 +111,36 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MetricCardSeven
|
<AboutMetric
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Custodi della terra"
|
title="Custodi della terra"
|
||||||
description="La nostra missione è preservare l'integrità del prodotto."
|
metricsAnimation="blur-reveal"
|
||||||
textboxLayout="default"
|
|
||||||
animationType="depth-3d"
|
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "m1", value: "100%", title: "Filiera", items: ["Biologico Certificato", "Coltivazione etica"] },
|
{ icon: Leaf, label: "Filiera", value: "100% Bio" },
|
||||||
{ id: "m2", value: "20+", title: "Esperienza", items: ["Anni di storia", "Tradizione familiare"] },
|
{ icon: Award, label: "Qualità", value: "Certificata" },
|
||||||
{ id: "m3", value: "KM 0", title: "Territorio", items: ["Produzione locale", "Rispetto ambientale"] },
|
{ icon: MapPin, label: "Origine", value: "Maremma" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplit
|
||||||
|
tag="Contatti"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Contattaci"
|
title="Scopri il sapore"
|
||||||
description="Vieni a scoprire il vero sapore della Maremma. Siamo a Manciano, località Grottini."
|
description="Contattaci per una degustazione privata in azienda."
|
||||||
inputs={[
|
background={{ variant: "sparkles-gradient" }}
|
||||||
{ name: "name", type: "text", placeholder: "Nome", required: true },
|
mediaPosition="right"
|
||||||
{ name: "email", type: "email", placeholder: "Email", required: true },
|
|
||||||
]}
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lb6yrz"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=lb6yrz"
|
||||||
imageAlt="rustic stone villa manciano"
|
imageAlt="rustic stone villa manciano"
|
||||||
|
mediaAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterCard
|
||||||
logoText="Scovaventi"
|
logoText="Scovaventi"
|
||||||
columns={[
|
copyrightText="© 2025 | Scovaventi S.r.l."
|
||||||
{ title: "Azienda", items: [{ label: "Chi siamo", href: "#about" }, { label: "Prodotti", href: "#products" }] },
|
|
||||||
{ title: "Contatti", items: [{ label: "Email", href: "mailto:info@scovaventi.it" }, { label: "Telefono", href: "tel:+390564123456" }] },
|
|
||||||
{ title: "Legale", items: [{ label: "Privacy Policy", href: "#" }, { label: "Termini e Condizioni", href: "#" }] },
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user