Files
ba80abc8-6f36-4963-a1f5-e74…/src/components/Layout.tsx
2026-04-27 11:08:14 +03:00

75 lines
1.4 KiB
TypeScript

import FooterBrandReveal from '@/components/sections/footer/FooterBrandReveal';
import NavbarCentered from '@/components/ui/NavbarCentered';
import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "About",
"href": "#about"
},
{ name: "Pricing", href: "/pricing" },
];
return (
<>
<NavbarCentered
logo="Emotify"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
<main className="flex-grow">
<Outlet />
</main>
<FooterBrandReveal
brand="Emotify"
columns={[
{
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Careers",
href: "#",
},
{
label: "Press",
href: "#",
},
],
},
{
items: [
{
label: "Terms",
href: "#",
},
{
label: "Privacy",
href: "#",
},
{
label: "Security",
href: "#",
},
],
},
]}
/>
</>
);
}