mirror of
https://github.com/Akomry/website.git
synced 2025-12-06 11:33:54 +00:00
need to take a break
This commit is contained in:
parent
5e2183fd25
commit
65452ce448
27 changed files with 454 additions and 32 deletions
|
|
@ -1,35 +1,60 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
import {RouterLink} from "vue-router";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="center">
|
||||
<h1>Web Resume</h1>
|
||||
<h1>{{ $t('cv.title') }}</h1>
|
||||
</div>
|
||||
|
||||
<div class="margin flex space-around">
|
||||
<div>
|
||||
<h2>Coordinates</h2>
|
||||
<h2>{{ $t('cv.coord') }}</h2>
|
||||
<p>Emi BOUCLY</p>
|
||||
<p>34 rue de Mortillet, 38000 Grenoble</p>
|
||||
<p><a href="mailto:emi.boucly38@gmail.com">emi.boucly38@gmail.com</a></p>
|
||||
<p><a href="tel:0768280432">07 68 28 04 32</a></p>
|
||||
<p>19 years old</p>
|
||||
<p>{{ $t('cv.age') }}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>Education</h2>
|
||||
<p>2024/2025 - 2nd year of Networking and Telecommunications</p>
|
||||
<em style="font-size: smaller">IUT1 from Grenoble - Saint-Martin-d'Hères</em>
|
||||
<h2>{{ $t('cv.formation') }}</h2>
|
||||
<p>2024/2025 - {{ $t('cv.rt') }}</p>
|
||||
<em style="font-size: smaller">{{ $t('cv.iut') }}</em>
|
||||
|
||||
<br><br>
|
||||
<p>2022/2023 - High school diploma</p>
|
||||
<em style="font-size: smaller">Charles-Gabriel Pravaz High School - Pont de Beauvoisin</em> <br>
|
||||
<em style="font-size: smaller">Math, English Literature, Expert Maths, with high honours</em>
|
||||
<p>2022/2023 - {{ $t('cv.bac') }}</p>
|
||||
<em style="font-size: smaller">{{ $t('cv.lycee') }} - Pont de Beauvoisin</em> <br>
|
||||
<em style="font-size: smaller">{{ $t('cv.spebac') }}</em>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>{{ $t('cv.lang') }}</h2>
|
||||
<p>{{ $t('cv.francais') }}</p>
|
||||
<p>{{ $t('cv.anglais') }}</p>
|
||||
<p>{{ $t('cv.allemand') }}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>{{ $t('cv.comp') }}</h2>
|
||||
<p>{{ $t('cv.prog') }}</p>
|
||||
<p>{{ $t('cv.devnet') }}</p>
|
||||
<p>{{ $t('cv.cont') }}</p>
|
||||
<p>{{ $t('cv.ad') }}</p>
|
||||
<p>{{ $t('cv.db') }}</p>
|
||||
<p>{{ $t('cv.automate') }}</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>Experience</h2>
|
||||
<h3><RouterLink to="/apprenticeship">Impactiv'</RouterLink></h3>
|
||||
<em style="font-size: smaller">2024 - Now</em>
|
||||
<p>IT and networking technician in a co-op program.</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2></h2>
|
||||
</div>
|
||||
|
|
@ -37,5 +62,7 @@
|
|||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue