Merge version_1_1782307554728 into main #1

Merged
bender merged 1 commits from version_1_1782307554728 into main 2026-06-24 13:28:14 +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": "Productos",
"href": "#products"
"name": "Productos", "href": "#products"
},
{
"name": "Contacto",
"href": "#contact"
"name": "Contacto", "href": "#contact"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Descanso Confort"
logoImageSrc="http://img.b2bpic.net/free-vector/flat-design-desert-logo-template_23-2149399746.jpg"
ctaButton={{
text: "Visítanos",
href: "#contact",
}}
text: "Visítanos", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -59,29 +51,19 @@ export default function Layout() {
{
items: [
{
label: "Inicio",
href: "#hero",
},
label: "Inicio", href: "#hero"},
{
label: "Productos",
href: "#products",
},
label: "Productos", href: "#products"},
{
label: "Contacto",
href: "#contact",
},
label: "Contacto", href: "#contact"},
],
},
{
items: [
{
label: "Privacidad",
href: "#",
},
label: "Privacidad", href: "#"},
{
label: "Términos",
href: "#",
},
label: "Términos", href: "#"},
],
},
]}