From b7a2e2b7a3b143b128be81978a71fb76b3bea585 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 11:48:50 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 96 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 68 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c702456..fcdd319 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "Dining", - "href": "#features" - }, - { - "name": "Rooms", - "href": "#rooms" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "Dining", "href": "#features" }, + { "name": "Rooms", "href": "#rooms" }, + { "name": "About", "href": "#about" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="Kosova" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=7ry5px" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
);