Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae87207f7c | |||
| 4b60cd1119 | |||
| 876a1e355d | |||
| 43d04c037a | |||
| 7437362a36 |
178
src/app/page.tsx
178
src/app/page.tsx
@@ -11,7 +11,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
import { Award, CheckCircle, Sparkles } from "lucide-react";
|
import { Award, CheckCircle, Sparkles, Tag as TagIcon } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,21 +32,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Testimonials", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Rucer Nails"
|
brandName="Rucer Nails"
|
||||||
/>
|
/>
|
||||||
@@ -60,35 +52,21 @@ export default function LandingPage() {
|
|||||||
imageAlt="elegant manicure desk lighting"
|
imageAlt="elegant manicure desk lighting"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Reservar Cita",
|
text: "Reservar mi Cita", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Ver Servicios",
|
text: "Ver Servicios", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/nail-care-still-life-with-plate_23-2149046533.jpg",
|
src: "http://img.b2bpic.net/free-photo/nail-care-still-life-with-plate_23-2149046533.jpg", alt: "Nail care still life with plate"},
|
||||||
alt: "Nail care still life with plate",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-beauty-products-grey-background_23-2148299589.jpg",
|
src: "http://img.b2bpic.net/free-photo/top-view-arrangement-with-beauty-products-grey-background_23-2148299589.jpg", alt: "Top view arrangement with beauty products on grey background"},
|
||||||
alt: "Top view arrangement with beauty products on grey background",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/nails-care-elements-arrangement-with-copy-space_23-2148697089.jpg",
|
src: "http://img.b2bpic.net/free-photo/nails-care-elements-arrangement-with-copy-space_23-2148697089.jpg", alt: "Nails care elements arrangement with copy space"},
|
||||||
alt: "Nails care elements arrangement with copy space",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/woman-making-beauty-vlog-with-her-smartphone_23-2149039648.jpg",
|
src: "http://img.b2bpic.net/free-photo/woman-making-beauty-vlog-with-her-smartphone_23-2149039648.jpg", alt: "Woman making a beauty vlog with her smartphone"},
|
||||||
alt: "Woman making a beauty vlog with her smartphone",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-black-woman-carrying-laptop-walking-into-room-ready-begin-remote-work-african_482257-135038.jpg",
|
src: "http://img.b2bpic.net/free-photo/close-up-black-woman-carrying-laptop-walking-into-room-ready-begin-remote-work-african_482257-135038.jpg", alt: "Close up of black woman carrying laptop and walking into room ready to begin remote work african"},
|
||||||
alt: "Close up of black woman carrying laptop and walking into room ready to begin remote work african",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Más de 10,000 clientes felices"
|
avatarText="Más de 10,000 clientes felices"
|
||||||
/>
|
/>
|
||||||
@@ -102,25 +80,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "10k+", title: "Manicures", description: "Clientes satisfechas", icon: CheckCircle,
|
||||||
value: "10k+",
|
|
||||||
title: "Manicures",
|
|
||||||
description: "Clientes satisfechas",
|
|
||||||
icon: CheckCircle,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "500+", title: "Diseños", description: "Arte creativo único", icon: Sparkles,
|
||||||
value: "500+",
|
|
||||||
title: "Diseños",
|
|
||||||
description: "Arte creativo único",
|
|
||||||
icon: Sparkles,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "5", title: "Años", description: "Experticia profesional", icon: Award,
|
||||||
value: "5",
|
|
||||||
title: "Años",
|
|
||||||
description: "Experticia profesional",
|
|
||||||
icon: Award,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Resultados Impecables"
|
title="Resultados Impecables"
|
||||||
@@ -134,20 +100,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Arte Personalizado",
|
title: "Arte Personalizado", description: "Diseños exclusivos para resaltar tu personalidad.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-with-beautiful-manicure_23-2149311579.jpg"},
|
||||||
description: "Diseños exclusivos para resaltar tu personalidad.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-with-beautiful-manicure_23-2149311579.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Cuidado Premium",
|
title: "Cuidado Premium", description: "Tratamientos que nutren y protegen tus uñas naturales.", imageSrc: "http://img.b2bpic.net/free-photo/female-hands-bowl-spa-water-with-flowers-close-up-hands-spa_1150-37712.jpg"},
|
||||||
description: "Tratamientos que nutren y protegen tus uñas naturales.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/female-hands-bowl-spa-water-with-flowers-close-up-hands-spa_1150-37712.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Productos de Alta Gama",
|
title: "Productos de Alta Gama", description: "Esmaltes duraderos y fórmulas seguras.", imageSrc: "http://img.b2bpic.net/free-photo/set-black-makeup-brushes-isolated-white_1385-2784.jpg"},
|
||||||
description: "Esmaltes duraderos y fórmulas seguras.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/set-black-makeup-brushes-isolated-white_1385-2784.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Calidad en cada Detalle"
|
title="Calidad en cada Detalle"
|
||||||
description="Nuestros estándares aseguran que cada visita sea una experiencia de lujo y cuidado personal."
|
description="Nuestros estándares aseguran que cada visita sea una experiencia de lujo y cuidado personal."
|
||||||
@@ -160,43 +117,21 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
tag="Precios desde"
|
||||||
|
tagIcon={TagIcon}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Gel Manicure", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/yellow-nail-design-manicured-female-hand-with-glitter-manicure_127675-2382.jpg"},
|
||||||
name: "Gel Manicure",
|
|
||||||
price: "$30",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/yellow-nail-design-manicured-female-hand-with-glitter-manicure_127675-2382.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Acrylic Set", price: "$50", imageSrc: "http://img.b2bpic.net/free-photo/party-space-ready-online-celebration_23-2149347235.jpg"},
|
||||||
name: "Acrylic Set",
|
|
||||||
price: "$50",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/party-space-ready-online-celebration_23-2149347235.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Bridal Special", price: "$70", imageSrc: "http://img.b2bpic.net/free-photo/hands-detail-flamenco-dancer-beautiful-dress-black-back_1301-4253.jpg"},
|
||||||
name: "Bridal Special",
|
|
||||||
price: "$70",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hands-detail-flamenco-dancer-beautiful-dress-black-back_1301-4253.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Classic French", price: "$35", imageSrc: "http://img.b2bpic.net/free-photo/girls-showing-her-stylish-manicure-holding-thair-fingers-black-handbag_132075-12048.jpg"},
|
||||||
name: "Classic French",
|
|
||||||
price: "$35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/girls-showing-her-stylish-manicure-holding-thair-fingers-black-handbag_132075-12048.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Art & Design", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-heart-indoor-isolated_624325-4310.jpg"},
|
||||||
name: "Art & Design",
|
|
||||||
price: "$45",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-heart-indoor-isolated_624325-4310.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Matte Finish", price: "$40", imageSrc: "http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg"},
|
||||||
name: "Matte Finish",
|
|
||||||
price: "$40",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/focused-talented-manicurist-is-working-her-own-workplace-busy-beauty-salon-she-is-wearing-protective-mask_613910-21457.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Nuestros Servicios"
|
title="Nuestros Servicios"
|
||||||
description="Elige el diseño perfecto para cada ocasión."
|
description="Elige el diseño perfecto para cada ocasión."
|
||||||
@@ -208,30 +143,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Ana G.", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-curly-hair-applying-cream-her-face-against-white-background_23-2147901110.jpg"},
|
||||||
name: "Ana G.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-curly-hair-applying-cream-her-face-against-white-background_23-2147901110.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Sofia R.", imageSrc: "http://img.b2bpic.net/free-photo/male-female-friends-getting-manicure-together_23-2150285898.jpg"},
|
||||||
name: "Sofia R.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/male-female-friends-getting-manicure-together_23-2150285898.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Lucia M.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-manicurist-customer-hands_23-2148859709.jpg"},
|
||||||
name: "Lucia M.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-manicurist-customer-hands_23-2148859709.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Elena P.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-holding-hair-color-book_107420-12150.jpg"},
|
||||||
name: "Elena P.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-holding-hair-color-book_107420-12150.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Clara S.", imageSrc: "http://img.b2bpic.net/free-photo/woman-protective-medical-mask-beauty-salon-hold-palette-select-color-manicure-procedure-nail-care-grand-opening-quarantine-is-small-businessess-are-open-again_343596-2403.jpg"},
|
||||||
name: "Clara S.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-protective-medical-mask-beauty-salon-hold-palette-select-color-manicure-procedure-nail-care-grand-opening-quarantine-is-small-businessess-are-open-again_343596-2403.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
cardTitle="Lo que dicen nuestras clientas"
|
cardTitle="Lo que dicen nuestras clientas"
|
||||||
cardTag="Opiniones"
|
cardTag="Opiniones"
|
||||||
@@ -244,20 +164,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "¿Qué tipos de esmaltes usan?", content: "Usamos esmaltes veganos y libres de tóxicos."},
|
||||||
title: "¿Qué tipos de esmaltes usan?",
|
|
||||||
content: "Usamos esmaltes veganos y libres de tóxicos.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "¿Cuánto dura la aplicación?", content: "Depende del tratamiento, desde 45 min hasta 90 min."},
|
||||||
title: "¿Cuánto dura la aplicación?",
|
|
||||||
content: "Depende del tratamiento, desde 45 min hasta 90 min.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "¿Debo agendar cita?", content: "Sí, recomendamos agendar con anticipación."},
|
||||||
title: "¿Debo agendar cita?",
|
|
||||||
content: "Sí, recomendamos agendar con anticipación.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Preguntas Frecuentes"
|
sideTitle="Preguntas Frecuentes"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
@@ -268,8 +179,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contacto"
|
tag="Contacto"
|
||||||
title="Agenda tu cita hoy"
|
title="Agenda tu cita hoy"
|
||||||
description="Estamos listas para consentirte. Reserva tu espacio y disfruta de una experiencia de uñas única."
|
description="Estamos listas para consentirte. Reserva tu espacio y disfruta de una experiencia de uñas única."
|
||||||
@@ -284,25 +194,17 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Servicios",
|
label: "Servicios", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Citas",
|
label: "Citas", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Privacidad",
|
label: "Privacidad", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Términos",
|
label: "Términos", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -312,4 +214,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user