update the layout

This commit is contained in:
2026-07-30 20:34:44 +05:30
parent af8a9d5de1
commit 1e3f225bed
15 changed files with 533 additions and 141 deletions

View File

@@ -7,64 +7,66 @@ export interface NavItem {
export const navigationData: NavItem[] = [
{
label: "Home",
href: "#",
children: [
{ label: "Home 1", href: "#" },
{ label: "Home 2", href: "#" },
{ label: "Home 3", href: "#" },
{ label: "Home 4", href: "#" },
{ label: "Home 5", href: "#" },
{ label: "Home 6", href: "#" },
{ label: "Home 7", href: "#" },
{ label: "Home 8", href: "#" },
{ label: "Home 9", href: "#" },
],
href: "/",
},
{
label: "Pages",
href: "#",
label: "About",
href: "/about",
children: [
{ label: "About Us", href: "/about" },
{ label: "About Us 2", href: "#" },
{ label: "Team", href: "#" },
{ label: "Gallery Grid", href: "#" },
{ label: "Gallery Masonry", href: "#" },
{ label: "Pricing plans", href: "#" },
{ label: "FAQ", href: "#" },
{ label: "Typography", href: "#" },
{ label: "404", href: "#" },
{ label: "Company", href: "/about" },
{ label: "Mission & Vision", href: "/about#mission" },
{ label: "Leadership", href: "/about#team" },
{ label: "Careers", href: "/careers" },
],
},
{
label: "Services",
href: "#",
href: "/services",
children: [
{ label: "Services Page", href: "/services" },
{ label: "Service Single", href: "#" },
{ 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: "Shop",
href: "#",
label: "Solutions",
href: "/solutions",
children: [
{ label: "Products", href: "#" },
{ label: "Single Product", href: "#" },
{ label: "Shopping cart", href: "#" },
{ label: "Checkout", href: "#" },
{ label: "My account", href: "#" },
{ 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: "Blog",
href: "#",
label: "Industries",
href: "/industries",
children: [
{ label: "Blog Classic", href: "#" },
{ label: "Blog Grid", href: "#" },
{ label: "Blog Single", href: "#" },
{ 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: "Contacts",
label: "Case Studies",
href: "/case-studies",
},
{
label: "Resources",
href: "/resources",
},
{
label: "Careers",
href: "/careers",
},
{
label: "Contact",
href: "/contacts",
},
];