mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-30 19:11:22 +00:00
feat: added an about page with info
This commit is contained in:
parent
a75f93384f
commit
f452a99f29
1 changed files with 19 additions and 0 deletions
19
src/routes/about/+page.svelte
Normal file
19
src/routes/about/+page.svelte
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!-- About.svelte -->
|
||||
<script>
|
||||
export let proficientLanguages = ["Python", "Javascript", "Bash"];
|
||||
export let proficientTechnologies = ["Terraform", "Bicep"];
|
||||
export let workPlace = "Triple, Alkmaar";
|
||||
export let workRole = "DevOps engineer";
|
||||
export let azureExperience = "Azure and Azure DevOps";
|
||||
export let containerSkills = "containers and Kubernetes";
|
||||
export let certifications = ["AZ-104", "CKA"];
|
||||
</script>
|
||||
|
||||
<main>
|
||||
<h1>About Me</h1>
|
||||
<p>I'm a {workRole} at {workPlace}.</p>
|
||||
<p>I'm proficient in languages like {proficientLanguages.join(", ")} and technologies such as {proficientTechnologies.join(", ")}.</p>
|
||||
<p>I have extensive experience with {azureExperience}.</p>
|
||||
<p>I'm keen on utilizing {containerSkills}.</p>
|
||||
<p>Certifications I've obtained: {certifications.join(", ")}.</p>
|
||||
</main>
|
Loading…
Reference in a new issue