Working on skills page

This commit is contained in:
2025-03-25 00:45:22 +01:00
parent 6a681e06a3
commit ba92749517
5 changed files with 34 additions and 3 deletions

17
src/views/SkillsView.vue Normal file
View File

@@ -0,0 +1,17 @@
<template>
<Header/>
<h1 class="center">Skills</h1>
<p class="center">
As I have worked on various topics, I learned a lot about different technologies. As years and tasks are going by, I always strive to learn more and make a good use of my capacities.</p>
</template>
<script setup>
import Header from '@/components/header.vue';
</script>
<style scoped>
.center{
text-align: center;
}
</style>