Files
aa2a3517-2ef5-45af-a5b8-147…/src/components/Layout.tsx
2026-06-18 08:56:23 +00:00

110 lines
2.3 KiB
TypeScript

import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard';
import NavbarDropdown from '@/components/ui/NavbarDropdown';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
import { Outlet } from 'react-router-dom';
import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
},
{
"name": "Benefits",
"href": "#about"
},
{
"name": "FAQ",
"href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Bento",
"href": "#bento"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
return (
<StyleProvider buttonVariant="arrow" siteBackground="gridDots" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarDropdown
logo="FocusTube"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="FocusTube"
columns={[
{
title: "Platform",
items: [
{
label: "Features",
href: "#features",
},
{
label: "Security",
href: "#",
},
{
label: "Pricing",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "Documentation",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
copyright="© 2024 FocusTube Platform. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}