Skip to content

Commit ea6c2f3

Browse files
committed
feat: restructure AboutView with improved layout and contact information
1 parent d0820ea commit ea6c2f3

1 file changed

Lines changed: 23 additions & 1 deletion

File tree

src/views/AboutView.vue

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
<script setup lang="ts"></script>
22

33
<template>
4-
<p>A propos</p>
4+
<section>
5+
<h2>A propos</h2>
6+
<p>
7+
Pour me contacter, n'hésitez pas à m'envoyer un email à l'adresse
8+
<a href="mailto:contact+portfolio@bastienluben.dev"
9+
>contact+portfolio@bastienluben.dev</a
10+
>
11+
</p>
12+
<p>Vous pouvez également obtenir un lien temporaire pour mon portfolio ici.</p>
13+
</section>
514
</template>
15+
16+
<style scoped>
17+
section {
18+
display: flex;
19+
flex-direction: column;
20+
justify-content: center;
21+
align-items: center;
22+
}
23+
24+
a {
25+
color: #ffffff;
26+
}
27+
</style>

0 commit comments

Comments
 (0)