From 10d6b44a7f8ce72b635efe596d4e2f6078a2c1cb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 19:08:37 +0000 Subject: [PATCH] Switch to version 1: modified src/components/Layout.tsx --- src/components/Layout.tsx | 161 +++++++++++++++++++------------------- 1 file changed, 79 insertions(+), 82 deletions(-) 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 +}