diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a389372..df959e1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -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 ( + 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} + />
+ 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" + />
); -} +} \ No newline at end of file