Merge version_1_1777036518411 into main #2

Merged
bender merged 1 commits from version_1_1777036518411 into main 2026-04-24 13:18:31 +00:00

View File

@@ -4,73 +4,43 @@ import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Menu",
"href": "#menu"
},
{
"name": "Contact",
"href": "#contact"
}
];
{ name: "Home", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Menu", href: "#menu" },
{ name: "Contact", href: "#contact" }
];
return (
<>
<NavbarCentered
logo="Izabella"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
/ navItems={navItems} />
logo="Izabella"
navItems={navItems}
ctaButton={{
text: "Visit Us", href: "#contact"
}}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterBrand
brand="Izabella Coffeeshop"
columns={[
{
items: [
{
label: "Menu",
href: "#menu",
},
{
label: "About",
href: "#about",
},
{
label: "Subscription",
href: "#",
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Careers",
href: "#",
},
],
},
]}
/>
brand="Izabella Coffeeshop"
columns={[
{
items: [
{ label: "Menu", href: "#menu" },
{ label: "About", href: "#about" },
{ label: "Subscription", href: "#" }
]
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Careers", href: "#" }
]
}
]}
/>
</>
);
}
}