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 */}