Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0bf684a99d | |||
| c08df1bf21 | |||
| 38cb908cab | |||
| fe515c1c10 | |||
| 33cc3721cb | |||
| 243ff69d6f | |||
| 180760fcc5 | |||
| 5440b04b41 |
66
src/app/contact/page.tsx
Normal file
66
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,66 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Carmen Cea"
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Tratamientos", id: "/products" },
|
||||
{ name: "Contacto", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Reservar cita", href: "https://wa.me/34662224408" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Reserva tu Cita en Carmen Cea"
|
||||
description="Completa el formulario y te contactaremos por WhatsApp para confirmar tu cita. Estás a un paso de resaltar tu belleza."
|
||||
inputs={[
|
||||
{ name: "nombre", type: "text", placeholder: "Tu nombre completo", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Tu email (opcional)", required: false },
|
||||
{ name: "whatsapp", type: "tel", placeholder: "Tu número de teléfono/WhatsApp", required: true }
|
||||
]}
|
||||
textarea={{ name: "consulta", placeholder: "¿Qué tratamiento te interesa? (ej. Diseño de cejas, Facial, etc.)", rows: 4, required: true }}
|
||||
buttonText="¡Agendar vía WhatsApp!"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-client-going-through-microblading-treatment_23-2149183892.jpg"
|
||||
mediaPosition="right"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Carmen Cea"
|
||||
columns={[
|
||||
{ items: [{ label: "Cádiz, España" }, { label: "Av. Segunda Aguada, 18B" }] },
|
||||
{ items: [{ label: "662 22 44 08" }, { label: "Lunes a Viernes" }] },
|
||||
{ items: [{ label: "Instagram" }, { label: "Google Maps" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -13,7 +13,7 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { Sparkles, Star, MapPin, Phone, Clock, Smile } from 'lucide-react';
|
||||
import { Sparkles, Star, Smile } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -39,13 +39,12 @@ export default function LandingPage() {
|
||||
{ name: "Resultados", id: "blog" },
|
||||
{ name: "Contacto", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Reservar cita", href: "https://wa.me/34662224408" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Tu piel y tus cejas, en manos expertas"
|
||||
title="Tu Cuerpo, en manos expertas"
|
||||
description="Más de 250 clientas confían en Carmen Cea para verse mejor cada día. Resultados naturales, perfección técnica y atención personalizada en el corazón de Cádiz."
|
||||
tag="⭐⭐⭐⭐⭐ 5.0 +250 reseñas"
|
||||
tagIcon={Star}
|
||||
@@ -183,6 +182,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user