Files
62757fcf-efb1-439d-b2ad-bbd…/src/components/Layout.tsx
kudinDmitriyUp 95caea1f66 Initial commit
2026-04-25 10:12:22 +00:00

77 lines
1.4 KiB
TypeScript

import FooterBrand from '@/components/sections/footer/FooterBrand';
import NavbarCentered from '@/components/ui/NavbarCentered';
import { Outlet } from 'react-router-dom';
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#services"
},
{
"name": "Expertise",
"href": "#expertise"
},
{
"name": "Success",
"href": "#testimonials"
},
{
"name": "FAQ",
"href": "#faq"
}
];
return (
<>
<NavbarCentered
logo="TechCore"
ctaButton={{
text: "Schedule a Consultation",
href: "#contact",
}}
navItems={navItems} />
<main className="flex-grow">
<Outlet />
</main>
<FooterBrand
brand="TechCore"
columns={[
{
items: [
{
label: "Services",
href: "#services",
},
{
label: "Expertise",
href: "#expertise",
},
{
label: "Success",
href: "#testimonials",
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Compliance",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
/>
</>
);
}