1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 12:40:03 +02:00

Add devops projects on homepage

This commit is contained in:
Kamran Ahmed
2025-02-04 18:06:54 +00:00
parent 4127f77aac
commit 24d10d212f
3 changed files with 6 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import { isMobileScreen } from '../lib/is-mobile.ts';
type FeatureAnnouncementProps = {}; type FeatureAnnouncementProps = {};
export function FeatureAnnouncement(props: FeatureAnnouncementProps) { export function FeatureAnnouncement(props: FeatureAnnouncementProps) {
return null;
return ( return (
<> <>
<a <a

View File

@@ -4,7 +4,7 @@ pdfUrl: '/pdfs/best-practices/backend-performance.pdf'
order: 1 order: 1
briefTitle: 'Backend Performance' briefTitle: 'Backend Performance'
briefDescription: 'Backend Performance Best Practices' briefDescription: 'Backend Performance Best Practices'
isNew: true isNew: false
isUpcoming: false isUpcoming: false
title: 'Backend Performance Best Practices' title: 'Backend Performance Best Practices'
description: 'Detailed list of best practices to improve your backend performance' description: 'Detailed list of best practices to improve your backend performance'

View File

@@ -24,6 +24,10 @@ const projectGroups = [
title: 'Backend', title: 'Backend',
id: 'backend', id: 'backend',
}, },
{
title: 'DevOps',
id: 'devops',
},
]; ];
const guides = await getAllGuides(); const guides = await getAllGuides();