Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d209354ce1 | |||
| 02db0b205b | |||
| 8f4a13b8c0 | |||
| bd66f89086 | |||
| 11d7a9aaef | |||
| 84cbf7796e | |||
| ac062cc97b | |||
| 79e7c2f4ef | |||
| aede27d825 | |||
| 4d385cbb21 | |||
| 80d3eb022b |
@@ -10,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Zap } from "lucide-react";
|
||||
|
||||
@@ -72,7 +72,7 @@ export default function LandingPage() {
|
||||
{ src: "http://img.b2bpic.net/free-photo/retro-looking-non-binary-person-smiling_23-2148757528.jpg", alt: "young male startup founder" }
|
||||
]}
|
||||
avatarText="Unisciti ai nostri 100+ clienti soddisfatti"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/general-director-reviewing-data-analytics-with-her-team-successful-development-plan_482257-118674.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/general-director-reviewing-data-analytics-with-her-team-successful-development-plan_482257-118674.jpg?_wi=1"
|
||||
imageAlt="modern IT office digital transformation"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -141,7 +141,8 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{ id: "1", value: "20%", title: "Riduzione Costi IT", items: ["Ottimizzazione infrastrutturale", "Consulenza efficiente", "Soluzioni a basso TCO"] },
|
||||
{ id: "2", value: "30%", title: "Aumento Produttività", items: ["Automazione processi", "Integrazione sistemi", "Formazione specialistica"] },
|
||||
{ id: "3", value: "99.9%", title: "Uptime Garantito", items: ["Infrastruttura robusta", "Monitoraggio proattivo", "Supporto 24/7"] }
|
||||
{ id: "3", value: "99.9%", title: "Uptime Garantito", items: ["Infrastruttura robusta", "Monitoraggio proattivo", "Supporto 24/7"]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="Risultati Verificabili, Impatto Misurabile"
|
||||
@@ -201,7 +202,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Parliamo del Tuo Progetto: Inizia la Tua Trasformazione Digitale"
|
||||
description="Contattaci oggi stesso per scoprire come Mavia Solutions può aiutarti a raggiungere i tuoi obiettivi tecnologici. Il nostro team di esperti è pronto ad ascoltarti e a proporti soluzioni innovative."
|
||||
description="Contattaci oggi stesso per scoprire come Mavia Solutions può aiutarti a raggiungere i tuoi obiettivi tecnologici. Il nostro team di esperti è pronto ad ascoltarti e a proporti soluzioni innovative e personalizzate per il tuo successo digitale."
|
||||
inputs={[
|
||||
{ name: "nome", type: "text", placeholder: "Il tuo nome", required: true },
|
||||
{ name: "email", type: "email", placeholder: "La tua email aziendale", required: true },
|
||||
@@ -209,8 +210,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
textarea={{"name":"messaggio","placeholder":"Il tuo messaggio...","rows":5}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-woman-using-digital-tablet_1098-3651.jpg"
|
||||
imageAlt="modern contact form digital"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/general-director-reviewing-data-analytics-with-her-team-successful-development-plan_482257-118674.jpg?_wi=2"
|
||||
imageAlt="Team di Mavia Solutions in riunione, simbolo di collaborazione e competenza."
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
buttonText="Invia Messaggio"
|
||||
@@ -218,17 +219,18 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
<FooterBase
|
||||
logoText="Mavia Solutions"
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "#home" }, { label: "Chi Siamo", href: "#about" }, { label: "Servizi", href: "#services" }] },
|
||||
{ items: [{ label: "Soluzioni", href: "#solutions" }, { label: "Clienti", href: "#clients" }, { label: "Testimonianze", href: "#testimonials" }] },
|
||||
{ items: [{ label: "FAQ", href: "#faq" }, { label: "Contatti", href: "#contact" }, { label: "Privacy Policy", href: "#" }] }
|
||||
]}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=glb3yg"
|
||||
logoAlt="modern IT company logo"
|
||||
columns={[
|
||||
{ title: "Esplora", items: [{ label: "Home", href: "#home" }, { label: "Chi Siamo", href: "#about" }, { label: "Servizi", href: "#services" }] },
|
||||
{ title: "Soluzioni", items: [{ label: "Soluzioni", href: "#solutions" }, { label: "Clienti", href: "#clients" }, { label: "Testimonianze", href: "#testimonials" }] },
|
||||
{ title: "Supporto", items: [{ label: "FAQ", href: "#faq" }, { label: "Contatti", href: "#contact" }, { label: "Privacy Policy", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Mavia Solutions. Tutti i diritti riservati."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user