Update src/components/Layout.tsx

This commit is contained in:
2026-04-24 11:52:34 +00:00
parent 41f585649d
commit a99ffd570c

View File

@@ -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 (
<>
<NavbarCentered
logo="SEAT"
ctaButton={{
text: "Book Now",
href: "#contact",
}}
/ navItems={navItems} />
logo="SEAT"
navItems={navItems}
ctaButton={{
text: "Book Now", href: "#contact"}}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterSimpleReveal
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: "#",
},
]}
/>
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: "#" },
]}
/>
</>
);
}
}