Update src/components/Layout.tsx

This commit is contained in:
2026-06-13 11:26:18 +00:00
parent 98730839f5
commit cb4e8d2dc0

View File

@@ -7,94 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Amenities",
"href": "#features"
},
{
"name": "Rooms",
"href": "#rooms"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ name: "About", href: "#about" },
{ name: "Amenities", href: "#features" },
{ name: "Rooms", href: "#rooms" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Faq", href: "#faq" }
];
return (
<StyleProvider buttonVariant="stagger" siteBackground="gridDots" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Afrikanas Hotel"
logoImageSrc="https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=100&h=100&q=80"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
navItems={navItems} />
logo="Afrikanas Hotel"
logoImageSrc="https://images.pexels.com/photos/15447099/pexels-photo-15447099.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
ctaButton={{ text: "Book Now", href: "#contact" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Explore",
items: [
columns={[
{
label: "About Us",
href: "#about",
title: "Explore", items: [
{ label: "About Us", href: "#about" },
{ label: "Rooms", href: "#rooms" },
{ label: "Amenities", href: "#features" }
]
},
{
label: "Rooms",
href: "#rooms",
},
{
label: "Amenities",
href: "#features",
},
],
},
{
title: "Support",
items: [
{
label: "FAQs",
href: "#faq",
},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
leftText="© 2024 Afrikanas Hotel. All rights reserved."
rightText="Downtown Eldoret, Kenya"
/>
title: "Support", items: [
{ label: "FAQs", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
{ label: "Contact", href: "#contact" }
]
}
]}
leftText="© 2024 Afrikanas Hotel. All rights reserved."
rightText="Downtown Eldoret, Kenya"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}