add first page

This commit is contained in:
2026-07-15 23:09:04 +07:00
parent 083a856111
commit 63e83d87ed
18 changed files with 55 additions and 385 deletions
+24 -2
View File
@@ -1,9 +1,31 @@
<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
import MainPage from '@/components/MainPage.vue';
</script>
<!-- Главная страница -->
<template>
<header class="header">
<router-link to="/login" class="btn-login">Войти</router-link>
</header>
<main>
<TheWelcome />
<MainPage />
</main>
</template>
<style lang="css">
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.btn-login {
position: fixed;
top: 0;
right: 0;
padding: 8px 14px;
color: #ffffff
}
</style>