Merge version_1_1782160210470 into main #1

Merged
bender merged 2 commits from version_1_1782160210470 into main 2026-06-22 20:31:25 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
"name": "Home", "href": "/"
},
{
"name": "Collections",
"href": "/collections"
"name": "Collections", "href": "/collections"
},
{
"name": "About",
"href": "/about"
"name": "About", "href": "/about"
},
{
"name": "Gallery",
"href": "/gallery"
"name": "Gallery", "href": "/gallery"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,46 +35,38 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Luxe Bridal Atelier"
ctaButton={{
text: "Book Appointment",
href: "/booking",
}}
navItems={navItems} />
logo="Luxe Bridal Atelier"
logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-wedding-logo-design_23-2150233585.jpg"
ctaButton={{
text: "Book Appointment", href: "/booking"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Luxe Bridal Atelier"
columns={[
{
items: [
brand="Luxe Bridal Atelier"
columns={[
{
label: "About",
href: "/about",
items: [
{
label: "About", href: "/about"},
{
label: "Collections", href: "/collections"},
],
},
{
label: "Collections",
href: "/collections",
items: [
{
label: "Appointments", href: "/booking"},
{
label: "Contact", href: "/contact"},
],
},
],
},
{
items: [
{
label: "Appointments",
href: "/booking",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);