75 lines
1.4 KiB
TypeScript
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: "#",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
}
|