formatted with prettier

This commit is contained in:
2025-04-10 20:50:21 +03:00
parent d3c744fec7
commit 6944751b82
18 changed files with 473 additions and 469 deletions

View File

@ -1,27 +1,30 @@
export const COLORS = {
PRIMARY: 'text-blue-900',
DARK_PRIMARY: 'dark:text-amber-50',
TEXT: 'text-gray-700',
DARK_TEXT: 'dark:text-gray-300',
BORDER: 'border-blue-900',
DARK_BORDER: 'border-blue-900',
PRIMARY: 'text-blue-900',
DARK_PRIMARY: 'dark:text-amber-50',
TEXT: 'text-gray-700',
DARK_TEXT: 'dark:text-gray-300',
BORDER: 'border-blue-900',
DARK_BORDER: 'border-blue-900',
}
export const EMAIL = 'taqitahmid@gmail.com'
export const RESUME = 'https://www.linkedin.com/in/taqi-tahmid/overlay/1735981754176/single-media-viewer/?profileId=ACoAACDU_GsBCgKtvw2bmzbVwTy2WixBG6-e3JM'
export const RESUME =
'https://www.linkedin.com/in/taqi-tahmid/overlay/1735981754176/single-media-viewer/?profileId=ACoAACDU_GsBCgKtvw2bmzbVwTy2WixBG6-e3JM'
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"
},
];
{
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',
},
]