diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 5018e30..07f5edf 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -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 (
<>
+ logo="Krymska Brew"
+ navItems={navItems}
+ ctaButton={{
+ text: "Visit Us", href: "#contact"}}
+ />
+ 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"},
+ ],
+ },
+ ]}
+ />
>
);
}