Merge version_1_1777041503831 into main #1

Merged
bender merged 1 commits from version_1_1777041503831 into main 2026-04-24 14:41:50 +00:00

View File

@@ -4,65 +4,44 @@ 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="Krymska Brew"
ctaButton={{
text: "Visit Us",
href: "#contact",
}}
/ navItems={navItems} />
logo="Krymska Brew"
navItems={navItems}
ctaButton={{
text: "Visit Us", href: "#contact"}}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterBrand
brand="Krymska Brew"
columns={[
{
items: [
{
label: "Location: Krymska, Prague",
href: "#contact",
},
{
label: "Daily Hours: 8:00 - 20:00",
href: "#",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Facebook",
href: "https://facebook.com",
},
],
},
]}
/>
brand="Krymska Brew"
columns={[
{
items: [
{
label: "Location: Krymska, Prague", href: "#contact"},
{
label: "Daily Hours: 8:00 - 20:00", href: "#"},
],
},
{
items: [
{
label: "Instagram", href: "https://instagram.com"},
{
label: "Facebook", href: "https://facebook.com"},
],
},
]}
/>
</>
);
}