Merge version_1_1782247275403 into main #1

Merged
bender merged 1 commits from version_1_1782247275403 into main 2026-06-23 20:42:18 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Projects",
"href": "#projects"
"name": "Projects", "href": "#projects"
},
{
"name": "Reviews",
"href": "#reviews"
"name": "Reviews", "href": "#reviews"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AMS Reformas"
logoImageSrc="http://img.b2bpic.net/free-photo/construction-design-project-renovation-concept_53876-133668.jpg"
ctaButton={{
text: "Get a Quote",
href: "#contact",
}}
text: "Get a Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="AMS Reformas"
columns={[
{
title: "Empresa",
items: [
title: "Empresa", items: [
{
label: "Sobre nosotros",
href: "#about",
},
label: "Sobre nosotros", href: "#about"},
{
label: "Portafolio",
href: "#projects",
},
label: "Portafolio", href: "#projects"},
{
label: "Contacto",
href: "#contact",
},
label: "Contacto", href: "#contact"},
],
},
{
title: "Servicios",
items: [
title: "Servicios", items: [
{
label: "Cocinas",
href: "#services",
},
label: "Cocinas", href: "#services"},
{
label: "Baños",
href: "#services",
},
label: "Baños", href: "#services"},
{
label: "Reformas Integrales",
href: "#services",
},
label: "Reformas Integrales", href: "#services"},
],
},
]}
copyright="© 2024 AMS Reformas Generales Madrid. Todos los derechos reservados."
links={[
{
label: "Política de Privacidad",
href: "#",
},
label: "Política de Privacidad", href: "#"},
{
label: "Aviso Legal",
href: "#",
},
label: "Aviso Legal", href: "#"},
]}
/>
</SectionErrorBoundary>