77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
// 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",
|
|
}
|
|
];
|