first commit

This commit is contained in:
2025-10-20 17:10:51 +03:30
commit 42b184d9e9
35 changed files with 4701 additions and 0 deletions

12
src/App.vue Normal file
View File

@@ -0,0 +1,12 @@
<script setup lang="ts">
import '@/style.css'
import NavBar from './components/NavBar.vue'
</script>
<template>
<NavBar />
<RouterView />
</template>
<style scoped></style>