diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 1df2705..148b2ab 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -2,52 +2,44 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import Link from "next/link"; export default function BlogPage() { const navItems = [ { name: "Inicio", id: "/" }, { name: "Tratamientos", id: "/tratamientos" }, - { name: "Sobre Nosotros", id: "/about" }, + { name: "Sobre Nosotros", id: "/equipo" }, { name: "Contacto", id: "/contacto" }, ]; const footerColumns = [ { - title: "Clínica", - items: [ - { label: "Sobre Nosotros", href: "/about" }, + title: "Clínica", items: [ + { label: "Sobre Nosotros", href: "/equipo" }, { label: "Nuestro Equipo", href: "/equipo" }, - { label: "Instalaciones", href: "/facilities" }, - { label: "Tecnología", href: "/technology" }, + { label: "Instalaciones", href: "/equipo" }, + { label: "Tecnología", href: "/equipo" }, ], }, { - title: "Servicios", - items: [ - { label: "Implantes", href: "/treatments" }, - { label: "Ortodoncia", href: "/treatments" }, - { label: "Estética Dental", href: "/treatments" }, - { label: "Odontología General", href: "/treatments" }, + title: "Servicios", items: [ + { label: "Implantes", href: "/tratamientos" }, + { label: "Ortodoncia", href: "/tratamientos" }, + { label: "Estética Dental", href: "/tratamientos" }, + { label: "Odontología General", href: "/tratamientos" }, ], }, { - title: "Información", - items: [ - { label: "Casos Reales", href: "/cases" }, - { label: "Opiniones", href: "/reviews" }, + title: "Información", items: [ + { label: "Casos Reales", href: "/casos-reales" }, + { label: "Opiniones", href: "/opiniones" }, { label: "Blog", href: "/blog" }, - { label: "FAQ", href: "/blog#faq" }, + { label: "FAQ", href: "#faq" }, ], }, { - title: "Contacto", - items: [ + title: "Contacto", items: [ { label: "Teléfono", href: "tel:953225409" }, { label: "WhatsApp", href: "https://wa.me/34953225409" }, { label: "Email", href: "mailto:info@clinicagarciamara.es" }, @@ -56,11 +48,6 @@ export default function BlogPage() { }, ]; - const navItemsConverted = navItems.map((item) => ({ - name: item.name, - id: item.id.startsWith("/") ? item.id : "/" + item.id, - })); - return ( - {/* Navbar */} -