Merge version_1_1781728783891 into main #1

Merged
bender merged 2 commits from version_1_1781728783891 into main 2026-06-17 20:40:59 +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": "El Museo",
"href": "#about"
"name": "El Museo", "href": "#about"
},
{
"name": "Visita",
"href": "#features"
"name": "Visita", "href": "#features"
},
{
"name": "Testimonios",
"href": "#testimonials"
"name": "Testimonios", "href": "#testimonials"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,46 +35,38 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="La Capilla"
ctaButton={{
text: "Entradas",
href: "#pricing",
}}
navItems={navItems} />
logo="La Capilla"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=jsqwur"
ctaButton={{
text: "Entradas", href: "#pricing"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="La Capilla del Hombre"
columns={[
{
title: "Info",
items: [
brand="La Capilla del Hombre"
columns={[
{
label: "Sobre nosotros",
href: "#about",
title: "Info", items: [
{
label: "Sobre nosotros", href: "#about"},
{
label: "Accesibilidad", href: "#features"},
],
},
]
}
copyright="© 2024 La Capilla del Hombre. Todos los derechos reservados."
links={[
{
label: "Accesibilidad",
href: "#features",
},
],
},
]}
copyright="© 2024 La Capilla del Hombre. Todos los derechos reservados."
links={[
{
label: "Privacidad",
href: "#",
},
{
label: "Términos",
href: "#",
},
]}
/>
label: "Privacidad", href: "#"},
{
label: "Términos", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);