Merge version_1_1777023545589 into main #2

Merged
bender merged 1 commits from version_1_1777023545589 into main 2026-04-24 09:44:06 +00:00

View File

@@ -11,62 +11,45 @@ export default function Layout() {
return (
<>
<NavbarCentered
logo="Artisan Bakery"
ctaButton={{
text: "Order Online",
href: "#products",
}}
/ navItems={navItems} />
logo="Artisan Bakery"
navItems={navItems}
ctaButton={{
text: "Order Online", href: "#products"}}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterSimpleMedia
brand="Artisan Bakery"
columns={[
{
title: "Links",
items: [
{
label: "Our Story",
href: "#about",
},
{
label: "Menu",
href: "#products",
},
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Artisan Bakery. All rights reserved."
links={[
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
]}
imageSrc="https://images.unsplash.com/photo-1645717325628-9d4d79c52f97?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHw4fHxiYWtlcnklMjBzdG9yZSUyMGF0bW9zcGhlcmUlMjB3YXJtJTIwbGlnaHRpbmd8ZW58MXwwfHx8MTc3NzAyMzU2Mnww&ixlib=rb-4.1.0&q=80&w=1080&_wi=2"
/>
brand="Artisan Bakery"
columns={[
{
title: "Links", items: [
{
label: "Our Story", href: "#about"},
{
label: "Menu", href: "#products"},
{
label: "Contact", href: "#contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 Artisan Bakery. All rights reserved."
links={[
{
label: "Instagram", href: "#"},
{
label: "Facebook", href: "#"},
]}
imageSrc="https://images.unsplash.com/photo-1645717325628-9d4d79c52f97?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHw4fHxiYWtlcnklMjBzdG9yZSUyMGF0bW9zcGhlcmUlMjB3YXJtJTIwbGlnaHRpbmd8ZW58MXwwfHx8MTc3NzAyMzU2Mnww&ixlib=rb-4.1.0&q=80&w=1080"
/>
</>
);
}