You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.0 KiB
Vue

<style scoped>
.about-text {
font-size: 18px;
color: #212322;
text-align: justify;
}
h3 {
font-family: "Open Sans", sans-serif;
font-size: 30px;
font-weight: bold;
}
p {
font-family: "Inconsolata", monospace;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
</style>
<template>
<div>
<MenuBar/>
<b-row class="about-text">
<b-col md="10">
<p>I'm Alice, a Romanian artist/researcher based in Rotterdam, and you're looking at my portfolio.</p>
<p>For more information/questions/collaboration enquiries, drop me an email at alice.strt@gmail.com
You can also find me on <a href="https://www.instagram.com/alicestrt/" target="_blank">Instagram</a> and <a href="https://post.lurk.org/@alcstrt" target="_blank">Mastodon</a>.
</p>
</b-col>
</b-row>
</div>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'AboutPage',
components: {
MenuBar
}
}
</script>