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
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