portfolio/website/components/Sidebar.vue

16 lines
466 B
Vue
Raw Normal View History

2023-11-21 21:23:16 +01:00
<template>
<div class="bg-dark-800 h-screen w-full sticky top-0">
<div class="flex flex-col gap-y-3 text-center">
<NuxtLink :to="{ hash: '#about'}" :external="true" class="text-primary-600 font-bold">
About
</NuxtLink>
<a href="#skills" to="#skills" class="text-primary-600 font-bold">
Skills
</a>
<a href="#projects" class="text-primary-600 font-bold">
Projects
</a>
</div>
</div>
</template>