From b48035039202379cb9112a02006c3695c81e238c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:01:39 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7695d20..8eeeb44 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,6 +44,8 @@ export default function LandingPage() { name: "Equipo", id: "#team"}, { name: "Contacto", id: "#contact"}, + { + name: "Privacidad", id: "/privacidad"}, ]} logoSrc="http://img.b2bpic.net/free-photo/digital-art-cute-dog_23-2151150620.jpg" logoAlt="Logotipo Clínica Veterinaria San Isidro" @@ -250,7 +252,7 @@ export default function LandingPage() { @@ -258,4 +260,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 83405f7caca46026bcd647ed940167647b71eb8b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:01:39 +0000 Subject: [PATCH 2/2] Add src/app/privacidad/page.tsx --- src/app/privacidad/page.tsx | 104 ++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/app/privacidad/page.tsx diff --git a/src/app/privacidad/page.tsx b/src/app/privacidad/page.tsx new file mode 100644 index 0000000..75b9ec9 --- /dev/null +++ b/src/app/privacidad/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function PrivacyPage() { + const navItems = [ + { name: "Inicio", id: "#hero" }, + { name: "Nosotros", id: "#about" }, + { name: "Servicios", id: "#features" }, + { name: "Testimonios", id: "#testimonials" }, + { name: "Equipo", id: "#team" }, + { name: "Contacto", id: "#contact" }, + { name: "Privacidad", id: "/privacidad" }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1