mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 09:31:21 +00:00
Merge pull request #237 from bartvdbraak/chore/content-updates
Add Azure Network Engineer Associate (AZ-700) certification
This commit is contained in:
commit
797c343ced
3 changed files with 21 additions and 0 deletions
5
src/lib/assets/tools/terraform.svg
Normal file
5
src/lib/assets/tools/terraform.svg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" fill="none" viewBox="0 0 64 64">
|
||||||
|
<path fill="#4040B2" d="M38.06 26.151v11.473L48 31.891V20.406l-9.94 5.745z" />
|
||||||
|
<path fill="#5C4EE5"
|
||||||
|
d="m27.03 20.406 9.94 5.745v11.473l-9.94-5.74V20.407zM16 14v11.479l9.94 5.74v-11.48L16 14zm11.03 30.624 9.94 5.74v-11.48l-9.94-5.739v11.48z" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 356 B |
|
@ -20,6 +20,12 @@ export type TimelineItem = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const timeline: TimelineItem[] = [
|
const timeline: TimelineItem[] = [
|
||||||
|
{
|
||||||
|
title: 'Azure Network Engineer Associate (AZ-700)',
|
||||||
|
subTitle: 'Microsoft',
|
||||||
|
icon: Badge,
|
||||||
|
startYear: 2024
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'Azure Administrator Associate (AZ-104)',
|
title: 'Azure Administrator Associate (AZ-104)',
|
||||||
subTitle: 'Microsoft',
|
subTitle: 'Microsoft',
|
||||||
|
|
|
@ -46,6 +46,7 @@ import slackLogo from '$lib/assets/tools/slack.svg';
|
||||||
import nmapLogo from '$lib/assets/tools/nmap.svg';
|
import nmapLogo from '$lib/assets/tools/nmap.svg';
|
||||||
import dBeaverLogo from '$lib/assets/tools/dbeaver.svg';
|
import dBeaverLogo from '$lib/assets/tools/dbeaver.svg';
|
||||||
import openTofuLogo from '$lib/assets/tools/opentofu.svg';
|
import openTofuLogo from '$lib/assets/tools/opentofu.svg';
|
||||||
|
import terraformLogo from '$lib/assets/tools/terraform.svg';
|
||||||
import gitLensLogo from '$lib/assets/tools/gitlens.png?enhanced';
|
import gitLensLogo from '$lib/assets/tools/gitlens.png?enhanced';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
@ -540,6 +541,15 @@ const tools: Tool[] = [
|
||||||
url: 'https://opentofu.org',
|
url: 'https://opentofu.org',
|
||||||
enhanced: false
|
enhanced: false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Terraform',
|
||||||
|
tagLine: 'Infrastructure as Code Tool',
|
||||||
|
description:
|
||||||
|
'Terraform is infrastructure as code software tool that provides a consistent CLI workflow to manage hundreds of cloud services.',
|
||||||
|
logo: terraformLogo,
|
||||||
|
url: 'https://opentofu.org',
|
||||||
|
enhanced: false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'GitLens',
|
name: 'GitLens',
|
||||||
tagLine: 'Git Extension for Visual Studio Code',
|
tagLine: 'Git Extension for Visual Studio Code',
|
||||||
|
|
Loading…
Reference in a new issue