Merge version_1_1781444890425 into main #1

Merged
bender merged 2 commits from version_1_1781444890425 into main 2026-06-14 13:49:39 +00:00

View File

@@ -8,32 +8,19 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
"name": "Home", "href": "/"
},
{
"name": "Academic Guitars",
"href": "/academic"
"name": "Academic Guitars", "href": "/academic"
},
{
"name": "Signature Guitars",
"href": "/signature"
"name": "Signature Guitars", "href": "/signature"
},
{
"name": "About",
"href": "/about"
"name": "About", "href": "/about"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About Section",
"href": "#about-section"
},
{
"name": "Features Glow",
"href": "#features-glow"
"name": "Contact", "href": "/contact"
}
];
@@ -44,9 +31,7 @@ export default function Layout() {
<NavbarDropdown
logo="Alfredo González"
ctaButton={{
text: "Contact Us",
href: "/contact",
}}
text: "Contact Us", href: "/contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,54 +42,36 @@ export default function Layout() {
brand="Alfredo González"
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Academic Guitars",
href: "/academic",
},
label: "Academic Guitars", href: "/academic"},
{
label: "Signature Guitars",
href: "/signature",
},
label: "Signature Guitars", href: "/signature"},
],
},
{
title: "Workshop",
items: [
title: "Workshop", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "/home#faq",
},
label: "FAQ", href: "/"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}
copyright="© 2024 Alfredo González. All rights reserved."
links={[
{
label: "WhatsApp 054-9200480",
href: "https://wa.me/972549200480",
},
label: "WhatsApp 054-9200480", href: "https://wa.me/972549200480"},
]}
imageSrc="http://img.b2bpic.net/free-photo/middle-aged-man-his-instrument-workshop_23-2149018604.jpg"
imageAlt="Middle aged man in his instrument workshop"
/>
</SectionErrorBoundary>
</StyleProvider>