Add src/app/semi-permanent-manicure/page.tsx

This commit is contained in:
2026-03-12 11:46:23 +00:00
parent 52b52b5334
commit f0f15ff4d7

View File

@@ -0,0 +1,145 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function SemiPermanentManicurePage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="aurora"
cardStyle="gradient-bordered"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Servicios", id: "/" },
{ name: "Productos", id: "#products" },
{ name: "Nosotros", id: "#about" },
{ name: "Testimonios", id: "#testimonials" },
{ name: "Contacto", id: "contact" }
]}
button={{ text: "Reservar Cita", href: "contact" }}
brandName="Cloud Studio"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Manicura Semi-Permanente"
description="Esmalte de gel duradero con acabado perfecto. Mantén tus uñas impecables hasta 3 semanas sin desconcharse. Colores vibrantes, diseños personalizados y brillo de largo alcance."
buttons={[
{ text: "Reservar Cita", href: "contact" },
{ text: "Ver Más Servicios", href: "/" }
]}
background={{ variant: "aurora" }}
imageSrc="http://img.b2bpic.net/free-photo/manicure-gel-nails-beauty-salon_273609-5142.jpg"
imageAlt="Manicura semi-permanente de gel profesional"
frameStyle="card"
mediaAnimation="blur-reveal"
buttonAnimation="slide-up"
/>
</div>
<div id="service-details" data-section="service-details">
<FaqSplitMedia
title="Servicio de Manicura Semi-Permanente"
description="Descubre la belleza y durabilidad del esmalte de gel semi-permanente."
faqs={[
{
id: "1", title: "¿Cuál es la diferencia entre gel y esmalte tradicional?", content: "El gel semi-permanente dura 2-3 semanas sin desconcharse, mientras el esmalte tradicional dura 7-10 días. El gel requiere lámpara UV para secar y removedor especial para retirarse."
},
{
id: "2", title: "¿Cuánto duran las manicuras de gel?", content: "Las manicuras de gel duran entre 2 y 3 semanas. El tiempo exacto depende del crecimiento natural de tu uña y tus actividades diarias. Ofrecemos servicios de relleno cada 3 semanas."
},
{
id: "3", title: "¿Dañan las uñas el gel semi-permanente?", content: "No, cuando se aplica y remueve correctamente. En Cloud Studio usamos técnicas profesionales de remoción sin daño y productos de calidad que mantienen tus uñas saludables."
},
{
id: "4", title: "¿Qué colores y diseños tienen disponibles?", content: "Ofrecemos cientos de colores de gel premium, desde pasteles y nude hasta neons y metallics. También realizamos diseños personalizados con stamping, glitter, rhinestones y nail art custom."
},
{
id: "5", title: "¿Puedo usar mis uñas normalmente después?", content: "Sí, el gel está completamente seco al salir del salón. Puedes usar tus manos inmediatamente. El gel es resistente a agua, suciedad y actividades cotidianas."
},
{
id: "6", title: "¿Cómo debo cuidar mis uñas de gel?", content: "Mantén tus manos hidratadas, evita exposición prolongada a productos químicos agresivos, usa guantes al limpiar, y evita usar tus uñas como herramientas. Visita retoques cada 3 semanas."
}
]}
videoSrc="http://img.b2bpic.net/free-video/gel-manicure-application_9234.mp4"
videoAriaLabel="Video del procedimiento de manicura semi-permanente de gel"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
mediaPosition="right"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Reserva Ahora"
title="Luce uñas perfectas con manicura semi-permanente"
description="Elige entre cientos de colores y diseños. Nuestras manicuristas te crearán el look perfecto que dura hasta 3 semanas."
background={{ variant: "aurora" }}
useInvertedBackground={false}
inputPlaceholder="tu@email.com"
buttonText="Reservar Cita"
termsText="Al reservar aceptas recibir confirmación y detalles de tu cita. Respetamos tu privacidad."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Cloud Studio"
columns={[
{
title: "Servicios", items: [
{ label: "Maquillaje Profesional", href: "/" },
{ label: "Uñas Acrílicas", href: "/acrylic-nails" },
{ label: "Lash Lifting", href: "/lash-lifting" },
{ label: "Manicura Semi-Permanente", href: "/semi-permanent-manicure" },
{ label: "Masajes de Relajación", href: "/relaxation-massage" }
]
},
{
title: "Productos", items: [
{ label: "iS Clinical", href: "/" },
{ label: "Centella's", href: "/" },
{ label: "Skincare Premium", href: "/" },
{ label: "Consulta Personalizada", href: "contact" }
]
},
{
title: "Empresa", items: [
{ label: "Sobre Nosotros", href: "/" },
{ label: "Testimonios", href: "/" },
{ label: "Preguntas Frecuentes", href: "/" },
{ label: "Contacto", href: "contact" }
]
},
{
title: "Legal", items: [
{ label: "Política de Privacidad", href: "#" },
{ label: "Términos de Servicio", href: "#" },
{ label: "Política de Cookies", href: "#" },
{ label: "Política de Devoluciones", href: "#" }
]
}
]}
copyrightText="© 2025 Cloud Studio. Todos los derechos reservados. Belleza y bienestar integral."
/>
</div>
</ThemeProvider>
);
}