diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8c88cc5..9343604 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,92 +1,89 @@ -import { Outlet } from "react-router-dom"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +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", - }, - ]; + { + "name": "About", + "href": "#about" + }, + { + "name": "Features", + "href": "#features" + }, + { + "name": "Products", + "href": "#products" + }, + { + "name": "Pricing", + "href": "#pricing" + } +]; return ( -
-
- -
+ <> +
-
+ 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: "#", + }, + ]} + /> + ); -} \ No newline at end of file +}