73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
export interface NavItem {
|
|
label: string;
|
|
href: string;
|
|
children?: NavItem[];
|
|
}
|
|
|
|
export const navigationData: NavItem[] = [
|
|
{
|
|
label: "Home",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
children: [
|
|
{ label: "Company", href: "/about" },
|
|
{ label: "Mission & Vision", href: "/about#mission" },
|
|
{ label: "Leadership", href: "/about#team" },
|
|
{ label: "Careers", href: "/careers" },
|
|
],
|
|
},
|
|
{
|
|
label: "Services",
|
|
href: "/services",
|
|
children: [
|
|
{ label: "Technology Engineering", href: "/services#technology-engineering" },
|
|
{ label: "Cloud & Enterprise Platforms", href: "/services#cloud-enterprise-platforms" },
|
|
{ label: "AI & Data Science", href: "/services#ai-data-science" },
|
|
{ label: "Enterprise Mobility", href: "/services#enterprise-mobility" },
|
|
{ label: "Digital Commerce", href: "/services#digital-commerce" },
|
|
],
|
|
},
|
|
{
|
|
label: "Solutions",
|
|
href: "/solutions",
|
|
children: [
|
|
{ label: "Digital Transformation", href: "/solutions#digital-transformation" },
|
|
{ label: "Product Development", href: "/solutions#product-development" },
|
|
{ label: "Internet of Things", href: "/solutions#iot" },
|
|
{ label: "SMAC", href: "/solutions#smac" },
|
|
{ label: "DevOps", href: "/solutions#devops" },
|
|
{ label: "Blockchain", href: "/solutions#blockchain" },
|
|
],
|
|
},
|
|
{
|
|
label: "Industries",
|
|
href: "/industries",
|
|
children: [
|
|
{ label: "Retail", href: "/industries#retail" },
|
|
{ label: "Financial Services", href: "/industries#financial-services" },
|
|
{ label: "Healthcare", href: "/industries#healthcare" },
|
|
{ label: "Manufacturing", href: "/industries#manufacturing" },
|
|
{ label: "Education", href: "/industries#education" },
|
|
],
|
|
},
|
|
{
|
|
label: "Case Studies",
|
|
href: "/case-studies",
|
|
},
|
|
{
|
|
label: "Resources",
|
|
href: "/resources",
|
|
},
|
|
{
|
|
label: "Careers",
|
|
href: "/careers",
|
|
},
|
|
{
|
|
label: "Contact",
|
|
href: "/contacts",
|
|
},
|
|
];
|