Merge version_1_1781451083797 into main #1

Merged
bender merged 2 commits from version_1_1781451083797 into main 2026-06-14 15:32:38 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Inicio",
"href": "#hero"
"name": "Inicio", "href": "#hero"
},
{
"name": "Sobre nosotros",
"href": "#about"
"name": "Sobre nosotros", "href": "#about"
},
{
"name": "Servicios",
"href": "#services"
"name": "Servicios", "href": "#services"
},
{
"name": "Contacto",
"href": "#contact"
"name": "Contacto", "href": "#contact"
},
{
"name": "Why Choose Us",
"href": "#why-choose-us"
"name": "Why Choose Us", "href": "#why-choose-us"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarDropdown
logo="Veterinaria Gómez Sayago"
ctaButton={{
text: "Pedir Cita",
href: "#booking",
}}
text: "Pedir Cita", href: "#booking"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -55,35 +46,28 @@ export default function Layout() {
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Clínica Veterinaria Gómez Sayago"
links={[
{ label: "Facebook", href: "https://es-es.facebook.com" },
{ label: "Aviso Legal", href: "#" },
{ label: "Política de Privacidad", href: "#" }
]}
columns={[
{
title: "Contacto",
items: [
title: "Contacto", items: [
{
label: "Calle San Bartolomé, 16, 21630 Beas",
href: "#",
},
label: "Calle San Bartolomé, 16, 21630 Beas", href: "#"},
{
label: "607 75 45 74",
href: "tel:607754574",
},
label: "607 75 45 74", href: "tel:607754574"},
],
},
{
title: "Enlaces",
items: [
title: "Enlaces", items: [
{
label: "Facebook",
href: "https://es-es.facebook.com",
},
label: "Facebook", href: "https://es-es.facebook.com"},
{
label: "Aviso Legal",
href: "#",
},
label: "Aviso Legal", href: "#"},
{
label: "Política de Privacidad",
href: "#",
},
label: "Política de Privacidad", href: "#"},
],
},
]}