Merge version_1_1782376418667 into main #1

Merged
bender merged 2 commits from version_1_1782376418667 into main 2026-06-25 08:35:08 +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": "Menu",
"href": "#products"
"name": "Menu", "href": "#products"
},
{
"name": "Our Story",
"href": "#about"
"name": "Our Story", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,77 +35,55 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Crimson Bakery"
ctaButton={{
text: "Order Online",
href: "#contact",
}}
navItems={navItems} />
logo="Crimson Bakery"
logoImageSrc="https://images.pexels.com/photos/30954120/pexels-photo-30954120.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
ctaButton={{
text: "Order Online", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
imageSrc="https://images.pexels.com/photos/19117290/pexels-photo-19117290.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
brand="Crimson Bakery"
columns={[
{
title: "Menu",
items: [
imageSrc="https://images.pexels.com/photos/19117290/pexels-photo-19117290.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
brand="Crimson Bakery"
columns={[
{
label: "Breads",
href: "#",
title: "Menu", items: [
{
label: "Breads", href: "#"},
{
label: "Pastries", href: "#"},
{
label: "Custom Orders", href: "#"},
],
},
{
label: "Pastries",
href: "#",
title: "Location", items: [
{
label: "123 Baker St", href: "#"},
{
label: "Open daily: 7am-6pm", href: "#"},
],
},
{
label: "Custom Orders",
href: "#",
title: "Social", items: [
{
label: "Instagram", href: "#"},
{
label: "Twitter", href: "#"},
],
},
],
},
{
title: "Location",
items: [
]}
copyright="© 2024 Crimson Bakery Inc."
links={[
{
label: "123 Baker St",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Open daily: 7am-6pm",
href: "#",
},
],
},
{
title: "Social",
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
],
},
]}
copyright="© 2024 Crimson Bakery Inc."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);