Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-06-12 05:24:22 +00:00
2 changed files with 118 additions and 0 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"},
{

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", imageAlt: "Manicura profesional"},
{
imageSrc: "http://img.b2bpic.net/free-photo/woman-beauty-clinic-face-treatment_23-2148878913.jpg", imageAlt: "Tratamiento facial"},
{
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg", 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", imageAlt: "Depilación con cera"},
{
imageSrc: "http://img.b2bpic.net/free-photo/professional-woman-making-up-girl_23-2148210702.jpg", 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>
);
}