GNXSOFT.COM
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
@@ -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
@@ -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"
|
||||
}
|
||||
];
|
||||
BIN
gnx-react/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
9
gnx-react/public/icons/font-awesome/css/all.min.css
vendored
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/fa-brands-400.ttf
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/fa-brands-400.woff2
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/fa-regular-400.ttf
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/fa-solid-900.ttf
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/fa-solid-900.woff2
Normal file
BIN
gnx-react/public/icons/font-awesome/webfonts/material-icon.woff2
Normal file
25
gnx-react/public/icons/material-icons/css/material-icons.css
Normal file
@@ -0,0 +1,25 @@
|
||||
/* Material Symbols Outlined */
|
||||
@font-face {
|
||||
font-family: 'Material Symbols Outlined';
|
||||
font-style: normal;
|
||||
font-weight: 100 700;
|
||||
src: url("../webfonts/material-icon.woff2") format('woff2');
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-family: 'Material Symbols Outlined';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: inherit;
|
||||
line-height: 1;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
display: inline-grid;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
direction: ltr;
|
||||
color: var(--heading-1st-color);
|
||||
-webkit-font-feature-settings: 'liga';
|
||||
font-feature-settings: 'liga';
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
BIN
gnx-react/public/images/banner/avatar-one.png
Normal file
|
After Width: | Height: | Size: 421 B |
BIN
gnx-react/public/images/banner/avatar-three.png
Normal file
|
After Width: | Height: | Size: 369 B |
BIN
gnx-react/public/images/banner/avatar-two.png
Normal file
|
After Width: | Height: | Size: 369 B |
BIN
gnx-react/public/images/banner/banner-bg.png
Normal file
|
After Width: | Height: | Size: 284 KiB |
BIN
gnx-react/public/images/banner/banner-two-thumb.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
gnx-react/public/images/banner/cp-thumb.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
gnx-react/public/images/banner/hand.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
gnx-react/public/images/banner/thumb.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
gnx-react/public/images/blog/blog-info.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
gnx-react/public/images/blog/blog-poster.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
gnx-react/public/images/blog/eight.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/five.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/four.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/one.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/related-four.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/blog/related-one.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/blog/related-three.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/blog/related-two.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/blog/seven.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/six.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/three.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/blog/two.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
gnx-react/public/images/case/eight.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/eleven.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
gnx-react/public/images/case/fifteen.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/case/five.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/four.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/fourteen.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/case/nine.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
gnx-react/public/images/case/one.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/poster.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
gnx-react/public/images/case/project.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/case/seven.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/six.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/sixteen.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/case/ten.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
gnx-react/public/images/case/thirteen.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/case/three.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/case/twelve.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
gnx-react/public/images/case/two.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
gnx-react/public/images/contact-thumb.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/favicon.png
Normal file
|
After Width: | Height: | Size: 320 B |
BIN
gnx-react/public/images/footer/arrow.png
Normal file
|
After Width: | Height: | Size: 754 B |
BIN
gnx-react/public/images/footer/gmail.png
Normal file
|
After Width: | Height: | Size: 388 B |
BIN
gnx-react/public/images/footer/location.png
Normal file
|
After Width: | Height: | Size: 471 B |
BIN
gnx-react/public/images/footer/phone.png
Normal file
|
After Width: | Height: | Size: 497 B |
BIN
gnx-react/public/images/footer/thumb.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
gnx-react/public/images/logo-light.png
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
gnx-react/public/images/logo.png
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
gnx-react/public/images/masonry/five.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
gnx-react/public/images/masonry/four.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
gnx-react/public/images/masonry/one.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
gnx-react/public/images/masonry/seven.png
Normal file
|
After Width: | Height: | Size: 924 B |
BIN
gnx-react/public/images/masonry/six.png
Normal file
|
After Width: | Height: | Size: 924 B |
BIN
gnx-react/public/images/masonry/three.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/masonry/two.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
gnx-react/public/images/overview/five.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/overview/four.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/overview/one.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
gnx-react/public/images/overview/three.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/overview/two.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
gnx-react/public/images/service/eight.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
gnx-react/public/images/service/five.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
gnx-react/public/images/service/four.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
gnx-react/public/images/service/one.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
gnx-react/public/images/service/seven.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/service/six.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gnx-react/public/images/service/three.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
gnx-react/public/images/service/thumb-one.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
gnx-react/public/images/service/thumb-two.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
gnx-react/public/images/service/two.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
gnx-react/public/images/skill.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
gnx-react/public/images/start-thumb.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
gnx-react/public/images/story/one.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
gnx-react/public/images/story/three.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
gnx-react/public/images/story/two.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
gnx-react/public/images/study/five.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/study/four.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/study/one.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/study/three.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/study/two.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
gnx-react/public/images/support.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
gnx-react/public/images/team-thumb.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
gnx-react/public/images/testimonial/avatar-five.png
Normal file
|
After Width: | Height: | Size: 301 B |