Compare commits
10 Commits
version_14
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| 9062919b44 | |||
| 26874b730a | |||
| a39b5d7346 | |||
| 3e69d2f9a1 | |||
| 92affd5a4b | |||
| 84a062ad19 | |||
| 9add656010 | |||
| 7836641365 | |||
| 00a237312e | |||
| 8788418c21 |
@@ -10,6 +10,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,6 +32,7 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Philosophy", id: "about" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Come Lavoro", id: "how-i-work" },
|
||||
{ name: "Clients", id: "social-proof" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -64,6 +66,40 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
tag="COSA FACCIO"
|
||||
title="Tre linee di produzione"
|
||||
description="Soluzioni su misura per ogni esigenza di comunicazione premium."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
buttons={[{ text: "Costruiamo il pacchetto in call", href: "#contact" }]}
|
||||
features={[
|
||||
{ id: "s1", title: "BRAND FILM", description: "Narrazioni cinematografiche che definiscono l'identità e i valori del tuo brand.", tag: "Concept" },
|
||||
{ id: "s2", title: "VIDEO FIERE & EVENTI", description: "Contenuti dinamici per far risaltare la tua presenza nelle occasioni più importanti.", tag: "Production" },
|
||||
{ id: "s3", title: "CAMPAGNE ADV B2B & LUXURY", description: "Visual ad alto impatto studiati per il mercato B2B e il segmento lusso.", tag: "Campaign" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="how-i-work" data-section="how-i-work">
|
||||
<FeatureCardTwentyEight
|
||||
tag="COME LAVORO"
|
||||
title="Tre passaggi, zero sorprese."
|
||||
description="Il mio metodo garantisce qualità e tempi certi in tre passaggi chiari."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "01", title: "01 CALL", subtitle: "CALL", category: "Discovery", value: "Prenoti una discovery call gratuita di 20 minuti. Mi racconti il brand, gli obiettivi e i tempi. Zero impegno." },
|
||||
{ id: "02", title: "02 PLAN", subtitle: "PLAN", category: "Strategia", value: "Costruisco una strategia visiva su misura: concept, mood, crew, timeline e preventivo dettagliato." },
|
||||
{ id: "03", title: "03 CREATE", subtitle: "CREATE", category: "Produzione", value: "Produciamo il film dal brief al delivery finale. Ricevi contenuti pronti per pubblicare su ogni canale." }
|
||||
]}
|
||||
buttons={[{ text: "PRENOTA LA CALL GRATUITA", href: "#contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
@@ -73,21 +109,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardMedia
|
||||
title="Cinematographic Services"
|
||||
description="Tailored production solutions for premium brands."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ id: "s1", title: "Heritage Brand Storytelling", description: "Elevating industrial legacy through authentic, long-form cinematic narratives.", tag: "Production" },
|
||||
{ id: "s2", title: "Luxury Campaign Direction", description: "High-fidelity lifestyle visuals for refined commercial positioning.", tag: "Campaign" },
|
||||
{ id: "s3", title: "On-Site Event Direction", description: "Bespoke directorial presence for brand experiences and showcases.", tag: "Events" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="The sensibility Michele Floridia brings to our brand narrative is unmatched. It’s not just video content; it’s genuine cinema that honors our manufacturing roots."
|
||||
@@ -104,14 +125,15 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Define Your Vision."
|
||||
description="Direct engagement for ambitious brands. Michele Floridia is available for national and international assignments."
|
||||
title="Parliamone."
|
||||
description="Prenota una call conoscitiva di 20 minuti per analizzare il tuo progetto."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "brand", type: "text", placeholder: "Brand / Organization", required: true },
|
||||
{ name: "name", type: "text", placeholder: "Nome", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email", required: true },
|
||||
{ name: "company", type: "text", placeholder: "Azienda", required: true },
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about the narrative you wish to create.", rows: 4, required: true }}
|
||||
buttonText="Submit Proposal"
|
||||
textarea={{ name: "message", placeholder: "Messaggio", rows: 4, required: true }}
|
||||
buttonText="Invia"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CX1xH7y0jxZ0fhv28YS97mOKD2/anamorphic-cinematic-2-39-1-aspect-ratio-1776519529328-28dac220.png?_wi=1"
|
||||
/>
|
||||
</div>
|
||||
@@ -126,4 +148,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user