Files
personal-portfolio/pages/index.vue
2022-04-13 20:12:05 +02:00

20 lines
555 B
Vue

<template>
<v-row justify="center" align="center" class="my-16">
<v-col cols="12">
<span class="text-h3">Hi,<br/>I'm Manuel,<br/>Software Engineer.</span>
</v-col>
<v-col cols="12">
<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-col>
</v-row>
</template>
<script>
export default {
name: 'IndexPage'
}
</script>