feat: ajout de pas mal d'infos sur mes centres d'intérêt dans AboutView.vue, ajout de mes coordonées dans CvView.vue

This commit is contained in:
Emi Boucly 2025-06-02 15:29:22 +02:00
parent 0944626f24
commit 72c9dc6bb3
4 changed files with 71 additions and 4 deletions

View file

@ -1,5 +1,6 @@
<template> <template>
<nav class="font-bigger"> <nav class="font-bigger">
<RouterLink to="/cv" class="nav-li">Web Resume</RouterLink>
<RouterLink to="/about" class="nav-li">About me</RouterLink> <RouterLink to="/about" class="nav-li">About me</RouterLink>
<RouterLink to="/" class="nav-li">Home</RouterLink> <RouterLink to="/" class="nav-li">Home</RouterLink>
</nav> </nav>

View file

@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router' import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue' import HomeView from '@/views/HomeView.vue'
import AboutView from '../views/AboutView.vue' import AboutView from '@/views/AboutView.vue'
import CvView from "@/views/CvView.vue";
const router = createRouter({ const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL), history: createWebHistory(import.meta.env.BASE_URL),
@ -15,6 +16,11 @@ const router = createRouter({
name: 'about', name: 'about',
component: AboutView, component: AboutView,
}, },
{
path: '/cv',
name: 'cv',
component: CvView
}
], ],
}) })

View file

@ -34,11 +34,51 @@
I'm a beginner vocaloid producer, using FL Studio, SynthesizerV and some random knowledge I acquired on the internet. I'm a beginner vocaloid producer, using FL Studio, SynthesizerV and some random knowledge I acquired on the internet.
Also been self-taught bass and guitar for 3 years now, have random skills on piano when absolutely needed. Also been self-taught bass and guitar for 3 years now, have random skills on piano when absolutely needed.
Maybe one day i'll commit on learning drums and saxophone. Maybe one day i'll commit on learning drums and saxophone.
Huge Kasane Teto fan, KAFU enjoyer, Ado follower, maybe I should make a public playlist for you to check :think: Huge Kasane Teto fan, KAFU enjoyer, Ado follower, Gloryhammer headbanger, just to name a few.
Maybe I should make a public playlist for you to check :think:
</p> </p>
<br> <br>
<p>Want a linktree ? Have one</p> <h2 style="text-decoration: underline">Anime and manga stuff</h2>
<p>
Steins;Gate fan, NGNL-Zero's my fav animated film all-time, is there more to explain?
Jokes apart, i'm not a HUGE anime watcher, but i'm still an anime enjoyer. Working at an anime association 'round home.
<br>[Insérer paragraphe pertinent]
</p>
<br>
<h2 style="text-decoration: underline">Video game stuff</h2>
<p>
I'm playing a bit too much roguelites I think- <br>
Huge fan of Mateusz Skutnik's works, like Submachine (Legacy), Covert Front and Slice of Sea. If you like good ol'
point and clicks, check that guy out, he's on those games since 2005. So yeah, I use to play a heck lot of flash games.
<br>[Insérer paragraphe utile]
</p>
<br>
<h2 style="text-decoration: underline">Art stuff</h2>
<p>
I'm drawing on paper and on photoshop sometimes when I'm bored (and maybe at work too). Check my instagram for more pics, but here,
you can have some.
<br>[Penser à inclure des photos !!]
</p>
<br>
<h2 style="text-decoration: underline">Telecom stuff</h2>
<p>
I'm studying telecommunications, so obviously I have some knowledge and interest about it.
I'm planning on making guitar pedals (an overdrive one seems really easy to make, only take some LC filters)
and maybe a modular MOOG synthesizer if I ever find motivation to build one.
I know the basics about amplutide and frequency modulation, QAM, spectre analysis, fibre optics, electronics...
And i hopefully plan to lean more :D
<br>[Insérer de la SCIENCE]
</p>
<br>
<p>Want a linktree ? Have one.</p>
<ul> <ul>
<li><a href="">Backloggd</a></li> <li><a href="">Backloggd</a></li>
<li><a href="">Steam</a></li> <li><a href="">Steam</a></li>
@ -46,6 +86,8 @@
<li><a href="">GitHub</a></li> <li><a href="">GitHub</a></li>
<li><a href="">Itch.io</a></li> <li><a href="">Itch.io</a></li>
<li><a href="">SoundCloud</a></li> <li><a href="">SoundCloud</a></li>
<li><a href="">AniList</a></li>
<li><a href="">Instagram</a></li>
</ul> </ul>
</div> </div>
<div> <div>

View file

@ -3,7 +3,25 @@
</script> </script>
<template> <template>
<div class="center">
<h1>Web Resume</h1>
</div>
<div class="margin flex">
<div>
<h2>Coordinates</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>
</div>
<div>
<h2>Education</h2>
<p>2024/2025 - 2nd year of Networking and Telecommunications </p>
</div>
</div>
</template> </template>
<style scoped lang="scss"> <style scoped lang="scss">