добавил footer и navbar

This commit is contained in:
2025-05-18 21:55:08 +04:00
parent 5d87f07043
commit 853b43c5e8
5 changed files with 14 additions and 12 deletions

View File

@@ -1,7 +1,5 @@
<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>

View File

@@ -1 +1,5 @@
@import 'bootstrap/scss/bootstrap';
html, body, #__nuxt {
min-height: 100vh;
}

View File

@@ -1,11 +1,9 @@
<template>
<div />
<div class="container p-3">
<span>&copy; {{year}} Информационная система университета</span>
</div>
</template>
<script lang="ts" setup>
const year = new Date().getFullYear()
</script>
<style>
</style>

View File

@@ -49,7 +49,7 @@
</div>
</li>
</ul>
<form class="d-flex my-2 my-lg-0">
<!-- <form class="d-flex my-2 my-lg-0">
<input
class="form-control me-sm-2"
type="text"
@@ -61,7 +61,7 @@
>
Search
</button>
</form>
</form> -->
</div>
</div>
</nav>

View File

@@ -1,7 +1,9 @@
<template>
<div>
<div class="d-flex flex-column min-vh-100">
<AppHeader />
<slot />
<div class="container flex-fill">
<slot />
</div>
<AppFooter />
</div>
</template>