9 Commits

Author SHA1 Message Date
a8b2f742c6 Merge version_2 into main
Merge version_2 into main
2026-06-12 05:24:46 +00:00
80ae529cb0 Update src/app/photos/page.tsx 2026-06-12 05:24:43 +00:00
f3103ccc60 Update src/app/page.tsx 2026-06-12 05:24:42 +00:00
a09c408a20 Merge version_2 into main
Merge version_2 into main
2026-06-12 05:24:22 +00:00
d89a658aee Add src/app/photos/page.tsx 2026-06-12 05:24:18 +00:00
c7107c57bd Update src/app/page.tsx 2026-06-12 05:24:18 +00:00
651e0d4dc0 Merge version_1 into main
Merge version_1 into main
2026-06-09 20:59:14 +00:00
05d80ddc43 Merge version_1 into main
Merge version_1 into main
2026-06-09 20:58:44 +00:00
3a13756e3a Merge version_1 into main
Merge version_1 into main
2026-06-09 20:57:51 +00:00
2 changed files with 123 additions and 5 deletions

View File

@@ -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
View 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>
);
}