From 5191e0bc80053c7281cf5650755d6ba0a2c16888 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 20:06:11 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 76 +++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 44 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ae9313b..f7845b1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,46 +1,40 @@ import FooterBrand from '@/components/sections/footer/FooterBrand'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; -import { StyleProvider } from "@/components/ui/StyleProvider"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function Layout() { const navItems = [ - { - "name": "Work", "href": "#hero" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Services", "href": "#features" - }, - { - "name": "Pricing", "href": "#pricing" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "Product", "href": "#product" - }, - { - "name": "Metrics", "href": "#metrics" - } -]; + { name: "Work", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Services", href: "#features" }, + { name: "Pricing", href: "#pricing" }, + { name: "Contact", href: "#contact" }, + { name: "Product", href: "#product" }, + { name: "Metrics", href: "#metrics" } + ]; return ( - - - + +
@@ -50,27 +44,21 @@ export default function Layout() { columns={[ { items: [ - { - label: "Portfolio", href: "#features"}, - { - label: "Pricing", href: "#pricing"}, - { - label: "Services", href: "#features"}, + { label: "Portfolio", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Services", href: "#features" }, ], }, { items: [ - { - label: "Contact Us", href: "#contact"}, - { - label: "Careers", href: "#"}, - { - label: "Privacy Policy", href: "#"}, + { label: "Contact Us", href: "#contact" }, + { label: "Careers", href: "#" }, + { label: "Privacy Policy", href: "#" }, ], }, ]} />
-
+ ); }