add: faqs added

This commit is contained in:
Alexandro Uc Santos
2024-01-27 19:56:19 -06:00
parent 57fa36be4d
commit c0e9b12bae
10 changed files with 298 additions and 92 deletions

View File

@@ -0,0 +1,28 @@
<script setup>
import Header from '../components/Header.vue';
</script>
<template>
<Header/>
<div class="auth-layout">
<RouterView/>
</div>
</template>
<style scoped>
.auth-layout {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
/* background-color: red; */
width: 100%;
margin: 0px auto !important;
padding: 0px 5px !important;
overflow: hidden;
min-height: 700px;
}
</style>