Files
sb-front/src/components/layout/AppFooter.vue
T
ByungCheol 1ca09b7439
CI / build (push) Failing after 11m38s
feat: 앱명을 '돈돼지 가계부'로 통일 (가계부 인식 + 마스코트)
- 헤더·웹안내·홈·약관 서비스명·푸터/설정 저작권·타이틀 → 돈돼지 가계부
- productName/capacitor appName/안드로이드 app_name·창제목/Electron app.setName·window title → 돈돼지 가계부
- 기술 식별자(appId, 설치파일명)는 유지

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-27 16:51:29 +09:00

22 lines
441 B
Vue

<script setup></script>
<template>
<footer class="app-footer">
<span>© 2026 돈돼지 가계부. All rights reserved.</span>
</footer>
</template>
<style scoped>
.app-footer {
display: flex;
align-items: center;
justify-content: center;
height: 44px;
padding: 0 1.5rem;
background: var(--color-background-soft);
border-top: 1px solid var(--color-border);
font-size: 0.85rem;
color: var(--color-text);
}
</style>