This commit is contained in:
2025-12-12 13:30:09 +03:00
commit 2f1e1f35e3
75 changed files with 4603 additions and 0 deletions

28
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<div id="app">
<Header />
<main class="main-content">
<router-view />
</main>
</div>
</template>
<script setup>
import Header from './components/common/Header.vue'
</script>
<style scoped>
#app {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.main-content {
flex: 1;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
</style>