Merge version_1 into main #1
@@ -3,12 +3,12 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { PenTool, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function BridePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -26,42 +26,22 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Sposa",
|
||||
id: "/bride",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Servizi", id: "/services" },
|
||||
{ name: "Sposa", id: "/bride" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Magic Moment"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Il giorno più importante",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Richiedi preventivo",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
title="Il giorno più importante"
|
||||
description="Siamo al tuo fianco per renderti indimenticabile."
|
||||
buttons={[{ text: "Richiedi preventivo", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -71,58 +51,16 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Per la Sposa Magic Moment"
|
||||
description="Ogni sposa merita di risplendere in modo autentico."
|
||||
metrics={[
|
||||
{
|
||||
id: "b1",
|
||||
value: "100%",
|
||||
title: "Personalizzazione",
|
||||
description: "Look creato su misura per te.",
|
||||
icon: PenTool,
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
value: "24/7",
|
||||
title: "Assistenza",
|
||||
description: "Supporto completo pre-evento.",
|
||||
icon: Phone,
|
||||
},
|
||||
]}
|
||||
title="Per la Sposa"
|
||||
description="Ogni dettaglio conta."
|
||||
metrics={[{ id: "b1", value: "100%", title: "Personalizzazione", description: "..", icon: PenTool }, { id: "b2", value: "24/7", title: "Assistenza", description: "..", icon: Phone }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Magic Moment"
|
||||
columns={[
|
||||
{
|
||||
title: "Salone",
|
||||
items: [
|
||||
{
|
||||
label: "Servizi",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Sposa",
|
||||
href: "/bride",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
{
|
||||
label: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Salone", items: [{ label: "Servizi", href: "/services" }, { label: "Sposa", href: "/bride" }] }, { title: "Contatti", items: [{ label: "Prenota", href: "/contact" }, { label: "Instagram", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -8,7 +8,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Clock, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -26,40 +26,24 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Sposa",
|
||||
id: "/bride",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Servizi", id: "/services" },
|
||||
{ name: "Sposa", id: "/bride" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Magic Moment"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contatti"
|
||||
title="Il tuo momento inizia adesso"
|
||||
description="Contattaci su WhatsApp per prenotare il tuo appuntamento."
|
||||
description="Contattaci per un appuntamento."
|
||||
buttonText="Invia messaggio"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-holding-cup-with-clipboard-white-background-high-quality-photo_114579-61160.jpg"
|
||||
imageAlt="Contatta il salone"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -69,58 +53,16 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Pronta a iniziare?"
|
||||
description="Siamo felici di ascoltare i tuoi desideri."
|
||||
metrics={[
|
||||
{
|
||||
id: "c1",
|
||||
value: "24h",
|
||||
title: "Risposta Veloce",
|
||||
description: "Siamo pronti ad accoglierti.",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
value: "Sempre",
|
||||
title: "Disponibilità",
|
||||
description: "Il nostro salone è aperto per te.",
|
||||
icon: MapPin,
|
||||
},
|
||||
]}
|
||||
title="Pronta?"
|
||||
description="Siamo qui per te."
|
||||
metrics={[{ id: "c1", value: "24h", title: "Risposta", description: "..", icon: Clock }, { id: "c2", value: "Sempre", title: "Disponibilità", description: "..", icon: MapPin }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Magic Moment"
|
||||
columns={[
|
||||
{
|
||||
title: "Salone",
|
||||
items: [
|
||||
{
|
||||
label: "Servizi",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Sposa",
|
||||
href: "/bride",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
{
|
||||
label: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Salone", items: [{ label: "Servizi", href: "/services" }, { label: "Sposa", href: "/bride" }] }, { title: "Contatti", items: [{ label: "Prenota", href: "/contact" }, { label: "Instagram", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
252
src/app/page.tsx
252
src/app/page.tsx
@@ -29,133 +29,24 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Sposa",
|
||||
id: "/bride",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Servizi", id: "/services" },
|
||||
{ name: "Sposa", id: "/bride" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Magic Moment"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Il tuo momento. La tua trasformazione."
|
||||
description="Scopri il salone dove professionalità, cura e passione creano risultati che fanno la differenza."
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-with-braid_633478-117.jpg",
|
||||
imageAlt: "Lorella al lavoro",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-woman-black-sweater-standing-posing_114579-58758.jpg",
|
||||
imageAlt: "Lorella al lavoro",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668445.jpg",
|
||||
imageAlt: "Lorella al lavoro",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-hairdresser-washing-man-s-hair_23-2150665396.jpg",
|
||||
imageAlt: "Lorella al lavoro",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-protective-face-mask-getting-her-hair-styled-hairdresser-virus-epidemic_637285-9041.jpg",
|
||||
imageAlt: "Lorella al lavoro",
|
||||
},
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-blonde-fashion-model-white-suit-sits-soft-armchair-holding-her-legs-up_8353-5467.jpg",
|
||||
imageAlt: "Trasformazione cliente",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-hair-salon_23-2150665448.jpg",
|
||||
imageAlt: "Trasformazione cliente",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/child-getting-their-hair-blown-salon_23-2150462463.jpg",
|
||||
imageAlt: "Trasformazione cliente",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-artistic-girl_23-2148014065.jpg",
|
||||
imageAlt: "Trasformazione cliente",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/artist-creating-alternative-bedroom-pop-music_23-2149736731.jpg",
|
||||
imageAlt: "Trasformazione cliente",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Scopri i servizi",
|
||||
href: "/services",
|
||||
},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-with-blurred-background_23-2148253621.jpg",
|
||||
alt: "Cliente soddisfatta",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/photo-two-black-ceramical-hair-sinks-standing-beaty-salon_651396-960.jpg",
|
||||
alt: "Cliente soddisfatta",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cute-blond-woman-cozy-wear-home_624325-3014.jpg",
|
||||
alt: "Cliente soddisfatta",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/black-neodymium-magnet-phenomenon_23-2148253601.jpg",
|
||||
alt: "Cliente soddisfatta",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-hairdresser-washing-man-s-hair_23-2150665392.jpg",
|
||||
alt: "Cliente soddisfatta",
|
||||
},
|
||||
]}
|
||||
avatarText="Unisciti alle nostre 300+ clienti felici"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "QUALITÀ",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "PROFESSIONALITÀ",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "PASSIONE",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "INNOVAZIONE",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "RISULTATI",
|
||||
},
|
||||
]}
|
||||
leftCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-with-braid_633478-117.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-woman-black-sweater-standing-posing_114579-58758.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-hair-salon_23-2150668445.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-hairdresser-washing-man-s-hair_23-2150665396.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/woman-with-protective-face-mask-getting-her-hair-styled-hairdresser-virus-epidemic_637285-9041.jpg" }]}
|
||||
rightCarouselItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/gorgeous-blonde-fashion-model-white-suit-sits-soft-armchair-holding-her-legs-up_8353-5467.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-hair-salon_23-2150665448.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/child-getting-their-hair-blown-salon_23-2150462463.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/portrait-artistic-girl_23-2148014065.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/artist-creating-alternative-bedroom-pop-music_23-2149736731.jpg" }]}
|
||||
buttons={[{ text: "Prenota ora", href: "/contact" }, { text: "Scopri i servizi", href: "/services" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -163,15 +54,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Qualità",
|
||||
"Professionalità",
|
||||
"Passione",
|
||||
"Innovazione",
|
||||
"Attenzione",
|
||||
"Cura",
|
||||
"Risultati",
|
||||
]}
|
||||
names={["Qualità", "Professionalità", "Passione", "Innovazione", "Attenzione", "Cura", "Risultati"]}
|
||||
title="Più di 300 clienti soddisfatte"
|
||||
description="Ogni momento passato qui è dedicato alla tua bellezza."
|
||||
/>
|
||||
@@ -181,15 +64,9 @@ export default function LandingPage() {
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Non siamo un semplice salone"
|
||||
description="Magic Moment Acconciature nasce dalla visione di Lorella: creare uno spazio dove ogni cliente si senta ascoltata, valorizzata e trasformata. Ogni servizio è personalizzato. Ogni dettaglio è studiato. Ogni risultato è pensato per te."
|
||||
buttons={[
|
||||
{
|
||||
text: "Scopri di più",
|
||||
href: "/services",
|
||||
},
|
||||
]}
|
||||
description="Magic Moment Acconciature nasce dalla visione di Lorella: creare uno spazio dove ogni cliente si senta ascoltata, valorizzata e trasformata."
|
||||
buttons={[{ text: "Scopri di più", href: "/services" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-model-holding-book-red-wall_114579-56021.jpg"
|
||||
imageAlt="Lorella nel salone"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -199,48 +76,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Elena R.",
|
||||
role: "Cliente Fedele",
|
||||
company: "Milano",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/same-girls-different-moods_329181-10711.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sara B.",
|
||||
role: "Sposa",
|
||||
company: "Varese",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-model-black-leather-jacket-posing-near-lamps_114579-66846.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Giulia M.",
|
||||
role: "Cliente",
|
||||
company: "Como",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-elderly-woman-holding-tablet_23-2148419331.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Chiara P.",
|
||||
role: "Cliente",
|
||||
company: "Monza",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-blonde-female-friends-posing_273609-7273.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Valeria T.",
|
||||
role: "Cliente",
|
||||
company: "Milano",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-lady-smiling-touching-her-hair-wearing-shine-pink-t-shirt-with-gold-neckless_291650-571.jpg",
|
||||
},
|
||||
]}
|
||||
testimonials={[{ id: "1", name: "Elena R.", role: "Cliente", company: "Milano", rating: 5 }, { id: "2", name: "Sara B.", role: "Sposa", company: "Varese", rating: 5 }, { id: "3", name: "Giulia M.", role: "Cliente", company: "Como", rating: 5 }, { id: "4", name: "Chiara P.", role: "Cliente", company: "Monza", rating: 5 }, { id: "5", name: "Valeria T.", role: "Cliente", company: "Milano", rating: 5 }]}
|
||||
title="Cosa dicono le nostre clienti"
|
||||
description="Esperienze reali dal nostro salone."
|
||||
/>
|
||||
@@ -253,71 +89,15 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="I numeri del nostro successo"
|
||||
description="Dati che riflettono il nostro impegno quotidiano per la tua immagine."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "300+",
|
||||
title: "Clienti Felici",
|
||||
description: "Donne che hanno trovato il loro stile.",
|
||||
icon: Smile,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15+",
|
||||
title: "Anni di Esperienza",
|
||||
description: "Passione ed evoluzione costante.",
|
||||
icon: CalendarDays,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
title: "Prodotti Eco",
|
||||
description: "Sostenibilità per i tuoi capelli.",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
value: "500+",
|
||||
title: "Eventi Sposa",
|
||||
description: "Accompagniamo le spose nel giorno del sì.",
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
description="Dati che riflettono il nostro impegno quotidiano."
|
||||
metrics={[{ id: "m1", value: "300+", title: "Clienti Felici", description: "..", icon: Smile }, { id: "m2", value: "15+", title: "Esperienza", description: "..", icon: CalendarDays }, { id: "m3", value: "100%", title: "Prodotti Eco", description: "..", icon: Leaf }, { id: "m4", value: "500+", title: "Spose", description: "..", icon: Heart }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Magic Moment"
|
||||
columns={[
|
||||
{
|
||||
title: "Salone",
|
||||
items: [
|
||||
{
|
||||
label: "Servizi",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Sposa",
|
||||
href: "/bride",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
{
|
||||
label: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Salone", items: [{ label: "Servizi", href: "/services" }, { label: "Sposa", href: "/bride" }] }, { title: "Contatti", items: [{ label: "Prenota", href: "/contact" }, { label: "Instagram", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -8,7 +8,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Palette, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -26,24 +26,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Servizi",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Sposa",
|
||||
id: "/bride",
|
||||
},
|
||||
{
|
||||
name: "Contatti",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Servizi", id: "/services" },
|
||||
{ name: "Sposa", id: "/bride" },
|
||||
{ name: "Contatti", id: "/contact" },
|
||||
]}
|
||||
brandName="Magic Moment"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -52,31 +41,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Taglio & Styling",
|
||||
description: "Consulenza personalizzata e studio del viso.",
|
||||
tag: "Styling",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/one-woman-helps-friend-with-necklace_343596-887.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Colore",
|
||||
description: "Balayage e tecniche avanzate per un colore unico.",
|
||||
tag: "Colore",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-bride-getting-ready_23-2149722032.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Extension",
|
||||
description: "Soluzioni naturali con effetto invisibile.",
|
||||
tag: "Volume",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-stylist-drying-wet-hair_23-2147769808.jpg",
|
||||
},
|
||||
]}
|
||||
title="Servizi pensati per valorizzarti"
|
||||
description="Soluzioni personalizzate per ogni esigenza di bellezza."
|
||||
features={[{ id: "1", title: "Taglio", description: "..", tag: "Styling", imageSrc: "http://img.b2bpic.net/free-photo/one-woman-helps-friend-with-necklace_343596-887.jpg" }, { id: "2", title: "Colore", description: "..", tag: "Colore", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-bride-getting-ready_23-2149722032.jpg" }, { id: "3", title: "Extension", description: "..", tag: "Volume", imageSrc: "http://img.b2bpic.net/free-photo/close-up-stylist-drying-wet-hair_23-2147769808.jpg" }]}
|
||||
title="Servizi pensati per te"
|
||||
description="Soluzioni su misura."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,58 +53,16 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Eccellenza nel Servizio"
|
||||
description="La qualità incontra la tecnica."
|
||||
metrics={[
|
||||
{
|
||||
id: "s1",
|
||||
value: "20",
|
||||
title: "Tecniche Colore",
|
||||
description: "Personalizzate per ogni riflesso.",
|
||||
icon: Palette,
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
value: "10",
|
||||
title: "Trattamenti Detox",
|
||||
description: "Salute profonda del capello.",
|
||||
icon: Sparkles,
|
||||
},
|
||||
]}
|
||||
title="Eccellenza"
|
||||
description="Qualità e tecnica."
|
||||
metrics={[{ id: "s1", value: "20", title: "Colore", description: "..", icon: Palette }, { id: "s2", value: "10", title: "Detox", description: "..", icon: Sparkles }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Magic Moment"
|
||||
columns={[
|
||||
{
|
||||
title: "Salone",
|
||||
items: [
|
||||
{
|
||||
label: "Servizi",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Sposa",
|
||||
href: "/bride",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contatti",
|
||||
items: [
|
||||
{
|
||||
label: "Prenota ora",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Salone", items: [{ label: "Servizi", href: "/services" }, { label: "Sposa", href: "/bride" }] }, { title: "Contatti", items: [{ label: "Prenota", href: "/contact" }, { label: "Instagram", href: "#" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user