From 925e24664567a49b2badae5cb04f8b680be752b0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 20:16:49 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 105 +++++++++++++++++--------------------- 1 file changed, 46 insertions(+), 59 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 36b1e2d..5a747ce 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -3,73 +3,60 @@ import NavbarCentered from '@/components/ui/NavbarCentered'; import { Outlet } from 'react-router-dom'; export default function Layout() { - const navItems = []; + const navItems: { name: string; href: string }[] = [ + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Features", href: "#features" }, + { name: "Pricing", href: "#pricing" }, + { name: "Contact", href: "#contact" } + ]; return ( <> + logo="NexusIT" + ctaButton={{ + text: "Consultation", href: "#contact"}} + navItems={navItems} + />
+ brand="NexusIT Solutions © 2024" + columns={[ + { + items: [ + { + label: "Services", href: "#features"}, + { + label: "Case Studies", href: "#"}, + { + label: "Security Compliance", href: "#"}, + ], + }, + { + items: [ + { + label: "Our Approach", href: "#about"}, + { + label: "Careers", href: "#"}, + { + label: "Partners", href: "#"}, + ], + }, + { + items: [ + { + label: "Privacy Policy", href: "#"}, + { + label: "Terms of Service", href: "#"}, + { + label: "Contact Us", href: "#contact"}, + ], + }, + ]} + /> ); } -- 2.49.1