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"},
+ ],
+ },
+ ]}
+ />
>
);
}