fix menu
All checks were successful
CV build / build (push) Successful in 8m24s

This commit is contained in:
Alter 2026-09-04 13:22:57 +02:00
parent 6377afd90c
commit 7339b1368b
2 changed files with 4 additions and 3 deletions

View File

@ -167,7 +167,7 @@ import SideMenu from './components/SideMenu.vue'
<li>Radio Control FPV plane</li>
</ul>
</div>
<h3>Get in touch</h3>
<h3 id="getin">Get in touch</h3>
<div class="section">
<GetInTouch />
</div>

View File

@ -5,7 +5,7 @@ function scrollTo(to: string) {
</script>
<template>
<div class="SideMenu">
<div class="menuBox">
<nav class="menuBox">
<h4>Menu</h4>
<ul class="menuItems">
<li><a @click.prevent="scrollTo('experiences')" href="#">Experiences</a></li>
@ -13,8 +13,9 @@ function scrollTo(to: string) {
<li><a @click.prevent="scrollTo('skills')" href="#">Skills</a></li>
<li><a @click.prevent="scrollTo('sensibilities')" href="#">Sensibilities</a></li>
<li><a @click.prevent="scrollTo('hobbies')" href="#">Hobbies</a></li>
<li><a @click.prevent="scrollTo('getin')" href="#">Get in touch</a></li>
</ul>
</div>
</nav>
</div>
</template>
<style lang="css" scoped>