2026-05-30 21:18:13 +09:00
|
|
|
<script setup>
|
2026-05-31 21:32:08 +09:00
|
|
|
// 홈 = 대시보드 (임시: 히어로 이미지). 추후 요약 위젯으로 교체 예정.
|
2026-05-30 21:18:13 +09:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-05-31 21:32:08 +09:00
|
|
|
<section class="home">
|
|
|
|
|
<div class="hero"></div>
|
2026-05-31 15:42:52 +09:00
|
|
|
</section>
|
2026-05-30 21:18:13 +09:00
|
|
|
</template>
|
2026-05-31 15:42:52 +09:00
|
|
|
|
|
|
|
|
<style scoped>
|
2026-05-31 21:32:08 +09:00
|
|
|
.home {
|
2026-05-31 15:42:52 +09:00
|
|
|
max-width: 960px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
2026-05-31 21:32:08 +09:00
|
|
|
/* 임시 히어로 이미지 — public/home-hero.jpg 를 두면 표시됨. 없으면 연한 바다색 배경 */
|
|
|
|
|
.hero {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 70vh;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
background-color: #bfe6fb;
|
|
|
|
|
background-image: url('/home-hero.jpg');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
2026-05-31 15:42:52 +09:00
|
|
|
}
|
2026-05-31 21:32:08 +09:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.hero {
|
|
|
|
|
min-height: 78vh;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
2026-05-31 15:42:52 +09:00
|
|
|
}
|
|
|
|
|
</style>
|