Merge version_1_1781697197336 into main #1

Merged
bender merged 2 commits from version_1_1781697197336 into main 2026-06-17 11:54:29 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Location",
"href": "#location"
"name": "Location", "href": "#location"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,54 +35,42 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Fade Men's Barber"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Fade Men's Barber"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=9n5mj3"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Fade Men's Barber"
columns={[
{
items: [
brand="Fade Men's Barber"
columns={[
{
label: "Services",
href: "#services",
items: [
{
label: "Services", href: "#services"},
{
label: "Team", href: "#team"},
{
label: "FAQ", href: "#faq"},
],
},
{
label: "Team",
href: "#team",
items: [
{
label: "Location", href: "#location"},
{
label: "Booking", href: "#contact"},
{
label: "Call Us", href: "tel:0388208129"},
],
},
{
label: "FAQ",
href: "#faq",
},
],
},
{
items: [
{
label: "Location",
href: "#location",
},
{
label: "Booking",
href: "#contact",
},
{
label: "Call Us",
href: "tel:0388208129",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);