diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 86b4e6d..d420234 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -4,78 +4,45 @@ import { Outlet } from 'react-router-dom'; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Experience", - "href": "#features" - }, - { - "name": "Films", - "href": "#product" - }, - { - "name": "Pricing", - "href": "#pricing" - } -]; + { name: "About", href: "#about" }, + { name: "Experience", href: "#features" }, + { name: "Films", href: "#product" }, + { name: "Pricing", href: "#pricing" } + ]; return ( <> + logo="SEAT" + navItems={navItems} + ctaButton={{ + text: "Book Now", href: "#contact"}} + />
+ brand="SEAT" + columns={[ + { + title: "Theater", items: [ + { label: "About Us", href: "#about" }, + { label: "Careers", href: "#" }, + ], + }, + { + title: "Support", items: [ + { label: "Contact", href: "#contact" }, + { label: "FAQ", href: "#faq" }, + ], + }, + ]} + copyright="© 2024 Seat Cinema. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ]} + /> ); -} +} \ No newline at end of file