Merge version_1_1781696873012 into main

Merge version_1_1781696873012 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-17 11:48:53 +00:00

View File

@@ -7,89 +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 (
<StyleProvider buttonVariant="magnetic" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Kosova"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Kosova"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=7ry5px"
ctaButton={{
text: "Book Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Hotel Restaurant Kosova"
columns={[
{
items: [
brand="Hotel Restaurant Kosova"
columns={[
{
label: "About Us",
href: "#about",
items: [
{ label: "About Us", href: "#about" },
{ label: "Dining Menu", href: "#features" },
{ label: "Hotel Rooms", href: "#rooms" },
],
},
{
label: "Dining Menu",
href: "#features",
items: [
{ label: "Reservations", href: "#contact" },
{ label: "Directions", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
{
label: "Hotel Rooms",
href: "#rooms",
},
],
},
{
items: [
{
label: "Reservations",
href: "#contact",
},
{
label: "Directions",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);