From a99ffd570cd9ad3a86203c64e8e8a4b42e853912 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 11:52:34 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 97 +++++++++++++-------------------------- 1 file changed, 32 insertions(+), 65 deletions(-) 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 -- 2.49.1