GNXSOFT.COM
This commit is contained in:
45
gnx-react/public/data/blog-category.ts
Normal file
45
gnx-react/public/data/blog-category.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
// Blog category data - Replace with API call to get blog categories
|
||||
export const BlogCategoryButtons = [
|
||||
{
|
||||
id: 1,
|
||||
title: "All",
|
||||
slug: "all",
|
||||
display_order: 1
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Enterprise Software",
|
||||
slug: "enterprise-software",
|
||||
display_order: 2
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Digital Transformation",
|
||||
slug: "digital-transformation",
|
||||
display_order: 3
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "System Integration",
|
||||
slug: "system-integration",
|
||||
display_order: 4
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Cloud Solutions",
|
||||
slug: "cloud-solutions",
|
||||
display_order: 5
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Security",
|
||||
slug: "security",
|
||||
display_order: 6
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
title: "API Development",
|
||||
slug: "api-development",
|
||||
display_order: 7
|
||||
}
|
||||
];
|
||||
76
gnx-react/public/data/blog-items.ts
Normal file
76
gnx-react/public/data/blog-items.ts
Normal file
@@ -0,0 +1,76 @@
|
||||
// Blog post data - Replace with API call to postsAPI.getAll()
|
||||
import one from "@/public/images/blog/one.png";
|
||||
import two from "@/public/images/blog/two.png";
|
||||
import three from "@/public/images/blog/three.png";
|
||||
import four from "@/public/images/blog/four.png";
|
||||
import five from "@/public/images/blog/five.png";
|
||||
import six from "@/public/images/blog/six.png";
|
||||
import seven from "@/public/images/blog/seven.png";
|
||||
import eight from "@/public/images/blog/eight.png";
|
||||
|
||||
export const BlogPostData = [
|
||||
{
|
||||
id: 1,
|
||||
title: "The Future of Enterprise Software Architecture",
|
||||
thumb: one,
|
||||
category: "enterprise-software",
|
||||
author: "Sarah Johnson",
|
||||
date: "15 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Digital Transformation Strategies for Large Enterprises",
|
||||
thumb: two,
|
||||
category: "digital-transformation",
|
||||
author: "Michael Chen",
|
||||
date: "12 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "API-First Approach to System Integration",
|
||||
thumb: three,
|
||||
category: "system-integration",
|
||||
author: "Emily Rodriguez",
|
||||
date: "10 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
title: "Cloud Migration Best Practices for Enterprise",
|
||||
thumb: four,
|
||||
category: "cloud-solutions",
|
||||
author: "David Thompson",
|
||||
date: "08 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
title: "Enterprise Security in the Digital Age",
|
||||
thumb: five,
|
||||
category: "security",
|
||||
author: "Sarah Johnson",
|
||||
date: "05 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
title: "Building Scalable API Architectures",
|
||||
thumb: six,
|
||||
category: "api-development",
|
||||
author: "Michael Chen",
|
||||
date: "03 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
title: "Microservices Architecture for Enterprise Applications",
|
||||
thumb: seven,
|
||||
category: "enterprise-software",
|
||||
author: "Emily Rodriguez",
|
||||
date: "01 Jan 2024",
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
title: "Data Analytics and Business Intelligence Solutions",
|
||||
thumb: eight,
|
||||
category: "digital-transformation",
|
||||
author: "David Thompson",
|
||||
date: "29 Dec 2023",
|
||||
}
|
||||
];
|
||||
110
gnx-react/public/data/offcanvas-data.ts
Normal file
110
gnx-react/public/data/offcanvas-data.ts
Normal file
@@ -0,0 +1,110 @@
|
||||
// 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: "Blog",
|
||||
path: "/blog",
|
||||
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"
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user