testing with adding blog to portfolio website

This commit is contained in:
2025-02-15 10:40:09 +02:00
parent 14dd1b1d19
commit 3cb0bd51ef
15 changed files with 1852 additions and 154 deletions

View File

@ -7,4 +7,19 @@ export const COLORS = {
DARK_BORDER: 'border-blue-900',
}
export const EMAIL = 'taqitahmid@gmail.com'
export const EMAIL = 'taqitahmid@gmail.com'
export const POSTS = [
{
slug: "deployment-daemonset-statefulset",
title: "Deployment VS DaemonSet VS StatefulSet",
description: "All the information you need to find the difference between Deployment, DaemonSet, and StatefulSet controllers used to deploy Pods",
date: "2025-01-10"
},
{
slug: "volumes",
title: "Volumes in Kubernes and how to manage them",
description: "What is a Volume, different types of volumes, how do you provision, and claim volumes in Kubernetes.",
date: "2025-01-10"
},
];