Files
GNX-WEB/gnx-react/public/data/offcanvas-data.ts
Iliyan Angelov 18ae8b9f88 update
2025-10-08 13:46:46 +03:00

111 lines
2.5 KiB
TypeScript

// Navigation data - Replace with API call to navigationAPI.getAll()
export const OffcanvasData = [
{
id: 1,
title: "Home",
path: "/",
parent_id: null,
display_order: 1,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 2,
title: "About Us",
path: "/about-us",
parent_id: null,
display_order: 2,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 3,
title: "Services",
path: "/services",
parent_id: null,
display_order: 3,
submenu: [
{
id: 4,
title: "Enterprise Software Development",
path: "/services/enterprise-software",
parent_id: 3,
display_order: 1,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 5,
title: "API Development & Integration",
path: "/services/api-development",
parent_id: 3,
display_order: 2,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 6,
title: "Cloud Solutions",
path: "/services/cloud-solutions",
parent_id: 3,
display_order: 3,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 7,
title: "Digital Transformation",
path: "/services/digital-transformation",
parent_id: 3,
display_order: 4,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
}
],
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 8,
title: "Case Studies",
path: "/case-study",
parent_id: null,
display_order: 4,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 9,
title: "Insights",
path: "/insights",
parent_id: null,
display_order: 5,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 10,
title: "Career",
path: "/career",
parent_id: null,
display_order: 6,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
},
{
id: 11,
title: "Contact Us",
path: "/contact-us",
parent_id: null,
display_order: 7,
submenu: null,
created_at: "2024-01-01T00:00:00Z",
updated_at: "2024-01-01T00:00:00Z"
}
];