Merge version_1_1777148002098 into main #1

Merged
bender merged 1 commits from version_1_1777148002098 into main 2026-04-25 20:16:53 +00:00

View File

@@ -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 (
<>
<NavbarCentered
logo="NexusIT"
ctaButton={{
text: "Consultation",
href: "#contact",
}}
navItems={navItems} />
logo="NexusIT"
ctaButton={{
text: "Consultation", href: "#contact"}}
navItems={navItems}
/>
<main className="flex-grow">
<Outlet />
</main>
<FooterBrand
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",
},
],
},
]}
/>
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"},
],
},
]}
/>
</>
);
}