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 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"}} /> 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() {