diff --git a/src/app/aviso-legal/page.tsx b/src/app/aviso-legal/page.tsx new file mode 100644 index 0000000..971b3d2 --- /dev/null +++ b/src/app/aviso-legal/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function AvisoLegalPage() { + return ( + + + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index a109d64..dcea314 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -250,11 +250,11 @@ export default function LandingPage() { { title: "Legal", items: [ { - label: "Aviso Legal", href: "#"}, + label: "Aviso Legal", href: "/aviso-legal"}, { - label: "Política de Privacidad", href: "#"}, + label: "Política de Privacidad", href: "/politica-privacidad"}, { - label: "Política de Cookies", href: "#"}, + label: "Política de Cookies", href: "/politica-cookies"}, ], }, ]} @@ -264,4 +264,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/politica-cookies/page.tsx b/src/app/politica-cookies/page.tsx new file mode 100644 index 0000000..1fc8dc5 --- /dev/null +++ b/src/app/politica-cookies/page.tsx @@ -0,0 +1,85 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function PoliticaCookiesPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/politica-privacidad/page.tsx b/src/app/politica-privacidad/page.tsx new file mode 100644 index 0000000..6db1c2c --- /dev/null +++ b/src/app/politica-privacidad/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import LegalSection from '@/components/legal/LegalSection'; + +export default function PoliticaPrivacidadPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file