diff --git a/src/app/contacto/page.tsx b/src/app/contacto/page.tsx index bd64757..e348439 100644 --- a/src/app/contacto/page.tsx +++ b/src/app/contacto/page.tsx @@ -3,9 +3,14 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; +export const metadata = { + title: 'Contacto | Webild', + description: 'Contáctanos para transformar tu presencia digital con Webild. Inicia tu proyecto hoy mismo.', +}; + export default function ContactoPage() { return ( - - +
- -
- - +
); diff --git a/src/app/page.tsx b/src/app/page.tsx index a2541d4..a2c7c15 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,7 +37,8 @@ export default function WebAgency2Page() { { name: "Portafolio", id: "/portafolio" }, { name: "Servicios", id: "services" }, { name: "Nosotros", id: "about" }, - { name: "Contacto", id: "/contacto" } + { name: "Contacto", id: "/contacto" }, + { name: "Política de Privacidad", id: "/privacy-policy" } ]} button={{ text: "Comenzar", href: "/contacto" }} /> @@ -259,6 +260,7 @@ export default function WebAgency2Page() { { label: "Servicios", href: "#services" }, { label: "Portafolio", href: "/portafolio" }, { label: "Contacto", href: "/contacto" }, + { label: "Política de Privacidad", href: "/privacy-policy" } ], }, { diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..46cd808 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,129 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export const metadata = { + title: 'Política de Privacidad | Webild', + description: 'Conoce nuestra política de privacidad y cómo manejamos tus datos en Webild.', +}; + +export default function PrivacyPolicyPage() { + return ( + + + +
+ +
+ +
+
+ ); +}