Files
deb59af8-503e-4edb-87e5-21c…/src/components/Layout.tsx
kudinDmitriyUp be32b70d28 Initial commit
2026-04-26 14:19:08 +00:00

90 lines
1.7 KiB
TypeScript

import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarCentered from '@/components/ui/NavbarCentered';
import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Pricing",
"href": "#pricing"
}
];
return (
<>
<NavbarCentered
logo="EmotioSaaS"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
<main className="flex-grow">
<Outlet />
</main>
<FooterSimple
brand="EmotioSaaS"
columns={[
{
title: "Platform",
items: [
{
label: "Marketplace",
href: "#products",
},
{
label: "Pricing",
href: "#pricing",
},
{
label: "Security",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Careers",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2024 EmotioSaaS Inc. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
</>
);
}