first commit

This commit is contained in:
just-mn
2026-02-25 00:33:20 +03:00
commit 2b3ab57289
21 changed files with 381 additions and 0 deletions

22
src/components/Header.vue Normal file
View File

@@ -0,0 +1,22 @@
<script setup>
const props = defineProps({
currentTab: String
})
</script>
<template>
<header>
<ul>
<li><RouterLink to="/">Home</RouterLink></li>
</ul>
</header>
</template>
<style scoped>
header {
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #4F4F4F;
}
</style>