diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 92996b2..0cb0848 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -106,7 +106,6 @@ export default function BlogPage() { tagAnimation="slide-up" animationType="blur-reveal" textboxLayout="default" - gridVariant="three-columns-all-equal-width" useInvertedBackground={false} blogs={[ { @@ -129,7 +128,6 @@ export default function BlogPage() { } ]} containerClassName="max-w-7xl mx-auto px-4 py-16" - cardTitleClassName="text-lg font-semibold text-gray-900 mb-2" textBoxDescriptionClassName="text-lg text-gray-700" /> diff --git a/src/app/precios/page.tsx b/src/app/precios/page.tsx index eb279fe..806d004 100644 --- a/src/app/precios/page.tsx +++ b/src/app/precios/page.tsx @@ -5,10 +5,53 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import Link from "next/link"; -import { Sparkles, Shield, Crown, Phone } from "lucide-react"; +import { Sparkles, Shield, Crown } from "lucide-react"; export default function PricingPage() { + const navItems = [ + { name: "Inicio", id: "home" }, + { name: "Servicios", id: "services" }, + { name: "Sobre Nosotros", id: "about" }, + { name: "Precios", id: "pricing" }, + { name: "Blog", id: "blog" }, + { name: "Contacto", id: "contact" } + ]; + + const footerColumns = [ + { + title: "Empresa", items: [ + { label: "Sobre Nosotros", href: "/sobre-nosotros" }, + { label: "Nuestro Equipo", href: "/sobre-nosotros" }, + { label: "Instalaciones", href: "/sobre-nosotros" }, + { label: "Tienda Online", href: "/tienda" } + ] + }, + { + title: "Servicios", items: [ + { label: "Grooming Profesional", href: "/servicios" }, + { label: "Spa Canino", href: "/servicios" }, + { label: "Tratamientos Especializados", href: "/servicios" }, + { label: "Servicio a Domicilio", href: "/servicios" } + ] + }, + { + title: "Información", items: [ + { label: "Precios", href: "/precios" }, + { label: "Blog", href: "/blog" }, + { label: "Preguntas Frecuentes", href: "/faq" }, + { label: "Contacto", href: "/contacto" } + ] + }, + { + title: "Contacto", items: [ + { label: "Tel: +34 910 784 221", href: "tel:+34910784221" }, + { label: "WhatsApp: +34 622 914 508", href: "https://wa.me/34622914508" }, + { label: "Email: contacto@patitasdeoro.es", href: "mailto:contacto@patitasdeoro.es" }, + { label: "Madrid, España", href: "#" } + ] + } + ]; + return (