You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
863 B
35 lines
863 B
5 years ago
|
<template>
|
||
|
<div>
|
||
5 years ago
|
<h2>Who am I?</h2>
|
||
|
<p>
|
||
|
Hi there, good to see you on my website.
|
||
|
My name is Raymon Zutekouw({{ age }}).
|
||
|
Building software and exploring the wide variety of tools (or making them) is my passion.
|
||
5 years ago
|
To see it in action, checkout the stuff I make on
|
||
|
<a href='https://github.com/Raymonzut'>GitHub</a>.
|
||
5 years ago
|
The projects that may be useful to others are open source; for inspiring others and improving each others work.
|
||
5 years ago
|
That is why I am a huge fan of
|
||
|
<a href='https://www.gnu.org/philosophy/free-sw.en.html'>free software</a>.
|
||
5 years ago
|
</p>
|
||
5 years ago
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import me from '../me.js'
|
||
|
|
||
|
export default {
|
||
5 years ago
|
name: 'AboutMe',
|
||
5 years ago
|
computed: {
|
||
|
age: me.age
|
||
|
}
|
||
5 years ago
|
};
|
||
5 years ago
|
</script>
|
||
5 years ago
|
|
||
|
<style scoped>
|
||
|
p {
|
||
|
--margin-side: 12vw;
|
||
|
margin-left: var(--margin-side);
|
||
|
margin-right: var(--margin-side);
|
||
|
}
|
||
|
</style>
|