Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 80ae529cb0 | |||
| f3103ccc60 | |||
| d89a658aee | |||
| c7107c57bd | |||
| 651e0d4dc0 | |||
| 05d80ddc43 | |||
| 3a13756e3a |
@@ -40,6 +40,8 @@ export default function LandingPage() {
|
||||
name: "Servicios", id: "#servicios"},
|
||||
{
|
||||
name: "Productos", id: "#productos"},
|
||||
{
|
||||
name: "Fotos", id: "/photos"},
|
||||
{
|
||||
name: "Precios", id: "#precios"},
|
||||
{
|
||||
@@ -97,31 +99,31 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
title: "Manicura y Pedicura Deluxe", description: "Cuidados completos para manos y pies, con esmaltes de lujo y masajes relajantes.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nail-art-professional-working-client-nails_23-2149265966.jpg", imageAlt: "Mujer recibiendo manicura"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nail-art-professional-working-client-nails_23-2149265966.jpg?_wi=1", imageAlt: "Mujer recibiendo manicura"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/foot-reflexology-cozy-spa-toe-arch-massage_169016-69096.jpg", imageAlt: "Mujer recibiendo pedicura"},
|
||||
},
|
||||
{
|
||||
title: "Faciales Personalizados", description: "Tratamientos faciales adaptados a tu tipo de piel para una tez radiante y saludable.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-beauty-clinic-face-treatment_23-2148878913.jpg", imageAlt: "Mujer recibiendo facial"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-beauty-clinic-face-treatment_23-2148878913.jpg?_wi=1", imageAlt: "Mujer recibiendo facial"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-applying-green-cream-with-brush_1208-315.jpg", imageAlt: "Mujer con mascarilla facial"},
|
||||
},
|
||||
{
|
||||
title: "Masajes Relajantes", description: "Alivia el estrés y la tensión con nuestros masajes terapéuticos y aromáticos.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg", imageAlt: "Masaje de espalda"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg?_wi=1", imageAlt: "Masaje de espalda"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hair-care-product-with-shiny-brown-hair_23-2152001439.jpg", imageAlt: "Masaje con piedras calientes"},
|
||||
},
|
||||
{
|
||||
title: "Tratamientos Capilares Avanzados", description: "Revitaliza tu cabello con nuestros tratamientos especializados para brillo, fuerza y salud.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-latin-woman-getting-her-hair-removed-with-honey-wax-beauty-spa-lots-copy-space_662251-2130.jpg", imageAlt: "Tratamiento capilar en salón"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-latin-woman-getting-her-hair-removed-with-honey-wax-beauty-spa-lots-copy-space_662251-2130.jpg?_wi=1", imageAlt: "Tratamiento capilar en salón"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-making-up-her-eyes_23-2148136583.jpg", imageAlt: "Corte de cabello y peinado"},
|
||||
},
|
||||
{
|
||||
title: "Depilación Profesional", description: "Servicios de depilación suaves y efectivos para una piel impecable y duradera.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl_23-2148210702.jpg", imageAlt: "Depilación de piernas"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl_23-2148210702.jpg?_wi=1", imageAlt: "Depilación de piernas"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/make-up-nail-polish_23-2148109517.jpg?_wi=1", imageAlt: "Diseño de cejas"},
|
||||
},
|
||||
|
||||
116
src/app/photos/page.tsx
Normal file
116
src/app/photos/page.tsx
Normal file
@@ -0,0 +1,116 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function PhotosPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="blurBottom"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio", id: "#inicio"},
|
||||
{
|
||||
name: "Nosotros", id: "#nosotros"},
|
||||
{
|
||||
name: "Servicios", id: "#servicios"},
|
||||
{
|
||||
name: "Productos", id: "#productos"},
|
||||
{
|
||||
name: "Fotos", id: "/photos"},
|
||||
{
|
||||
name: "Precios", id: "#precios"},
|
||||
{
|
||||
name: "Opiniones", id: "#opiniones"},
|
||||
{
|
||||
name: "Preguntas", id: "#preguntas"},
|
||||
{
|
||||
name: "Contacto", id: "#contacto"},
|
||||
]}
|
||||
brandName="BELLA SALON"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="photos-gallery" data-section="photos-gallery">
|
||||
<HeroBillboardGallery
|
||||
title="Momentos de Belleza en BELLA SALON"
|
||||
description="Explora nuestra galería y déjate inspirar por el arte y la pasión que ponemos en cada servicio."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
mediaAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nail-art-professional-working-client-nails_23-2149265966.jpg?_wi=2", imageAlt: "Manicura profesional"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-beauty-clinic-face-treatment_23-2148878913.jpg?_wi=2", imageAlt: "Tratamiento facial"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg?_wi=2", imageAlt: "Masaje relajante"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-latin-woman-getting-her-hair-removed-with-honey-wax-beauty-spa-lots-copy-space_662251-2130.jpg?_wi=2", imageAlt: "Depilación con cera"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl_23-2148210702.jpg?_wi=2", imageAlt: "Maquillaje para eventos"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="BELLA SALON"
|
||||
columns={[
|
||||
{
|
||||
title: "Servicios", items: [
|
||||
{
|
||||
label: "Manicura y Pedicura", href: "/photos#servicios"},
|
||||
{
|
||||
label: "Faciales", href: "/photos#servicios"},
|
||||
{
|
||||
label: "Masajes", href: "/photos#servicios"},
|
||||
{
|
||||
label: "Tratamientos Capilares", href: "/photos#servicios"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Enlaces Rápidos", items: [
|
||||
{
|
||||
label: "Inicio", href: "/"},
|
||||
{
|
||||
label: "Nosotros", href: "/photos#nosotros"},
|
||||
{
|
||||
label: "Productos", href: "/photos#productos"},
|
||||
{
|
||||
label: "Precios", href: "/photos#precios"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contacto", items: [
|
||||
{
|
||||
label: "Dirección: C. A. López Mateos 201, La Cañada, 90360 Cdad. de Apizaco, Tlax.", href: "/photos#contacto"},
|
||||
{
|
||||
label: "Teléfono: 241 147 7456", href: "/photos#contacto"},
|
||||
{
|
||||
label: "Email: info@bellasalon.com", href: "/photos#contacto"},
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 BELLA SALON. Todos los derechos reservados."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user