Merge version_1_1777042744074 into main #1

Merged
bender merged 1 commits from version_1_1777042744074 into main 2026-04-24 15:02:16 +00:00

View File

@@ -4,81 +4,62 @@ import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Menu",
"href": "#products"
},
{
"name": "FAQ",
"href": "#faq"
}
];
{
"name": "Home", "href": "#hero"
},
{
"name": "About", "href": "#about"
},
{
"name": "Menu", "href": "#products"
},
{
"name": "FAQ", "href": "#faq"
}
];
return (
<>
<NavbarCentered
logo="Bean & Brew"
ctaButton={{
text: "Order Online",
href: "#contact",
}}
/ navItems={navItems} />
logo="Bean & Brew"
ctaButton={{
text: "Order Online", href: "#contact"}}
navItems={navItems}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterBrandReveal
brand="BEAN & BREW"
columns={[
{
items: [
{
label: "Menu",
href: "#products",
},
{
label: "Our Story",
href: "#about",
},
{
label: "FAQ",
href: "#faq",
},
],
},
{
items: [
{
label: "Terms of Service",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
],
},
]}
/>
brand="BEAN & BREW"
columns={[
{
items: [
{
label: "Menu", href: "#products"},
{
label: "Our Story", href: "#about"},
{
label: "FAQ", href: "#faq"},
],
},
{
items: [
{
label: "Terms of Service", href: "#"},
{
label: "Privacy Policy", href: "#"},
],
},
{
items: [
{
label: "Instagram", href: "#"},
{
label: "Twitter", href: "#"},
],
},
]}
/>
</>
);
}