From b3047549059e5d0d2513a0562069c1b4a03809db Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:05:06 +0000 Subject: [PATCH 1/3] Add src/app/avisos-legales/page.tsx --- src/app/avisos-legales/page.tsx | 127 ++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 src/app/avisos-legales/page.tsx diff --git a/src/app/avisos-legales/page.tsx b/src/app/avisos-legales/page.tsx new file mode 100644 index 0000000..3a45bef --- /dev/null +++ b/src/app/avisos-legales/page.tsx @@ -0,0 +1,127 @@ +"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 LegalNoticePage() { + 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", href: "/privacidad" }, + { name: "Aviso Legal", href: "/avisos-legales" } + ]; + + return ( + + + + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From ed99193f33b068e16d1f43a2d43217a675c43d99 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:05:06 +0000 Subject: [PATCH 2/3] 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 8eeeb44..61c1eea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,9 @@ export default function LandingPage() { { name: "Contacto", id: "#contact"}, { - name: "Privacidad", id: "/privacidad"}, + name: "Privacidad", href: "/privacidad"}, + { + name: "Aviso Legal", href: "/avisos-legales"} ]} logoSrc="http://img.b2bpic.net/free-photo/digital-art-cute-dog_23-2151150620.jpg" logoAlt="Logotipo Clínica Veterinaria San Isidro" @@ -254,7 +256,7 @@ export default function LandingPage() { leftLink={{ text: "Política de Privacidad", href: "/privacidad"}} rightLink={{ - text: "Aviso Legal", href: "#"}} + text: "Aviso Legal", href: "/avisos-legales"}} /> -- 2.49.1 From b3544f3211acefae2d7364ce2dcbc73d643a564f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 17:05:07 +0000 Subject: [PATCH 3/3] Update src/app/privacidad/page.tsx --- src/app/privacidad/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/privacidad/page.tsx b/src/app/privacidad/page.tsx index 75b9ec9..941249d 100644 --- a/src/app/privacidad/page.tsx +++ b/src/app/privacidad/page.tsx @@ -14,7 +14,8 @@ export default function PrivacyPage() { { name: "Testimonios", id: "#testimonials" }, { name: "Equipo", id: "#team" }, { name: "Contacto", id: "#contact" }, - { name: "Privacidad", id: "/privacidad" }, + { name: "Privacidad", href: "/privacidad" }, + { name: "Aviso Legal", href: "/avisos-legales" }, ]; return ( @@ -95,7 +96,7 @@ export default function PrivacyPage() { -- 2.49.1