Initial commit

This commit is contained in:
2022-04-16 14:38:06 +02:00
parent 646e8c86dd
commit 89a55ecf85
8 changed files with 41 additions and 29 deletions

View File

@@ -10,11 +10,21 @@
full-stack web development in 2018.
</span>
</v-col>
<v-col cols="12">
<ul>
<li v-for="(value, index) in languages" :key="index">{{ value }}</li>
</ul>
</v-col>
</v-row>
</template>
<script>
export default {
name: 'BioPage'
name: 'BioPage',
data () {
return {
languages: ['Java', 'Android']
}
}
}
</script>

View File

@@ -1,5 +1,5 @@
<template>
<v-row justify="center" align="center" class="my-16">
<v-row justify="center" align="center">
<v-col cols="12">
<span class="text-h3">Hi,<br/>I'm Manuel,<br/>Software Engineer.</span>
</v-col>
@@ -7,7 +7,10 @@
<span class="text-h6">I'm a Software Developer based in Vienna, Austria. I make all kind of applications.</span>
</v-col>
<v-col cols="12">
<v-btn depressed outlined color="primary" href="mailto:rakantor.dev@gmail.com">Contact me</v-btn>
<v-btn depressed outlined color="primary" href="mailto:rakantor.dev@gmail.com">
<v-icon left>mdi-email-outline</v-icon>
Contact me
</v-btn>
</v-col>
</v-row>
</template>