From efbf26e78602a411630dee34ca39d2ffe57e92c9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 14:23:39 +0000 Subject: [PATCH 1/3] Update src/app/contacto/page.tsx --- src/app/contacto/page.tsx | 139 +++++++++++--------------------------- 1 file changed, 38 insertions(+), 101 deletions(-) diff --git a/src/app/contacto/page.tsx b/src/app/contacto/page.tsx index 73eb7e8..f5490ed 100644 --- a/src/app/contacto/page.tsx +++ b/src/app/contacto/page.tsx @@ -1,13 +1,20 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactSplit from "@/components/sections/contact/ContactSplit"; -import TextAbout from "@/components/sections/about/TextAbout"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; -export default function ContactPage() { +export default function ContactoPage() { + const navItems = [ + { name: "Inicio", id: "/" }, + { name: "Servicios", id: "/servicios" }, + { name: "Trabajos", id: "projects" }, + { name: "Nosotros", id: "about" }, + { name: "Contacto", id: "contact" }, + ]; + return ( + {/* Navigation */} + {/* Contact Section */}
-
- -
- -
- -
- + {/* Footer */}