From 2615f7cca5302167404d232e7136eec74513d6b7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 14:41:43 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 81 +++++++++++++++------------------------ 1 file changed, 30 insertions(+), 51 deletions(-) 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"}, + ], + }, + ]} + /> ); } -- 2.49.1