init source

This commit is contained in:
leejisun9
2025-08-08 13:11:33 +09:00
parent 02660627d2
commit 61d947a644
57 changed files with 1852863 additions and 0 deletions

29
layouts/auth.vue Normal file
View File

@@ -0,0 +1,29 @@
<template>
<div class="auth-layout">
<main class="auth-main">
<slot />
</main>
</div>
</template>
<script setup lang="ts">
// 인증 페이지용 레이아웃 - 헤더와 푸터 없음
</script>
<style scoped>
.auth-layout {
min-height: 100vh;
background: #f8f9fa;
display: flex;
flex-direction: column;
}
.auth-main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 0;
}
</style>