Add new authors; Fix devops guide routing issue (#5883)

* add william and kenny as authors

* fixed routing issue from /authors on new devops guides
pull/5885/head
dsh 4 months ago committed by GitHub
parent 533e93e647
commit f37cc57177
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. BIN
      public/authors/ekene-eze.jpg
  2. BIN
      public/authors/william-imoh.jpg
  3. 13
      src/data/authors/ekene.md
  4. 12
      src/data/authors/william.md
  5. 2
      src/data/guides/devops-vs-sre.md
  6. 4
      src/data/guides/how-to-become-devops-engineer.md
  7. 2
      src/pages/devops/devops-vs-sre.astro
  8. 2
      src/pages/devops/how-to-become-devops-engineer.astro

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

@ -0,0 +1,13 @@
---
name: 'Ekene Eze'
imageUrl: '/authors/ekene-eze.jpg'
employment:
title: 'Author'
company: 'roadmap.sh'
social:
linkedin: 'https://www.linkedin.com/in/ekeneeze/'
twitter: 'https://x.com/kenny_io'
website: 'https://kenny.engineer/'
---
Kenny is a Software Engineer and Developer Advocate with over 5 years experience working in DevRel across different functions. Recently as a Senior Developer Experience Engineer at Netlify and leading DevRel teams in others.

@ -0,0 +1,12 @@
---
name: 'William Imoh'
imageUrl: '/authors/william-imoh.jpg'
employment:
title: 'Author'
company: 'roadmap.sh'
social:
linkedin: 'https://www.linkedin.com/in/william-imoh/'
twitter: 'https://x.com/iChuloo'
---
William is a Software Engineer, Developer Advocate and Product Manager turned Entrepreneur. He leads the team at **Hackmamba** and occasionally talks about building performant web experiences.

@ -2,7 +2,7 @@
title: 'DevOps vs SRE: Key Differences Explained' title: 'DevOps vs SRE: Key Differences Explained'
description: 'DevOps vs SRE: Discover which role suits your career best. Learn key differences, skills required, and career prospects in our detailed guide.' description: 'DevOps vs SRE: Discover which role suits your career best. Learn key differences, skills required, and career prospects in our detailed guide.'
authorId: kamran authorId: kamran
excludedBySlug: 'devops/devops-vs-sre' excludedBySlug: '/devops/devops-vs-sre'
seo: seo:
title: 'DevOps vs SRE: Key Differences Explained' title: 'DevOps vs SRE: Key Differences Explained'
description: 'DevOps vs SRE: Discover which role suits your career best. Learn key differences, skills required, and career prospects in our detailed guide.' description: 'DevOps vs SRE: Discover which role suits your career best. Learn key differences, skills required, and career prospects in our detailed guide.'

@ -1,8 +1,8 @@
--- ---
title: 'How to become a DevOps Engineer in @currentYear@' title: 'How to become a DevOps Engineer in @currentYear@'
description: 'Want to become a DevOps engineer? Our @currentYear@ guide covers skills, certifications, and expert career advice. Start your journey today!' description: 'Want to become a DevOps engineer? Our @currentYear@ guide covers skills, certifications, and expert career advice. Start your journey today!'
authorId: kamran authorId: william
excludedBySlug: 'devops/how-to-become-devops-engineer' excludedBySlug: '/devops/how-to-become-devops-engineer'
seo: seo:
title: 'How to become a DevOps Engineer in @currentYear@' title: 'How to become a DevOps Engineer in @currentYear@'
description: 'Want to become a DevOps engineer? Our @currentYear@ guide covers skills, certifications, and expert career advice. Start your journey today!' description: 'Want to become a DevOps engineer? Our @currentYear@ guide covers skills, certifications, and expert career advice. Start your journey today!'

@ -22,7 +22,7 @@ const ogImageUrl =
<BaseLayout <BaseLayout
title={replaceVariables(guideData.seo.title)} title={replaceVariables(guideData.seo.title)}
description={replaceVariables(guideData.seo.description)} description={replaceVariables(guideData.seo.description)}
permalink={`/devops/devops-vs-sre`} permalink={guide.frontmatter.excludedBySlug}
canonicalUrl={guideData.canonicalUrl} canonicalUrl={guideData.canonicalUrl}
ogImageUrl={ogImageUrl} ogImageUrl={ogImageUrl}
> >

@ -22,7 +22,7 @@ const ogImageUrl =
<BaseLayout <BaseLayout
title={replaceVariables(guideData.seo.title)} title={replaceVariables(guideData.seo.title)}
description={replaceVariables(guideData.seo.description)} description={replaceVariables(guideData.seo.description)}
permalink={`/devops/how-to-become-devops-engineer`} permalink={guide.frontmatter.excludedBySlug}
canonicalUrl={guideData.canonicalUrl} canonicalUrl={guideData.canonicalUrl}
ogImageUrl={ogImageUrl} ogImageUrl={ogImageUrl}
> >

Loading…
Cancel
Save