2026-05-31 15:42:52 +09:00
|
|
|
<script setup></script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<footer class="app-footer">
|
2026-06-27 16:51:29 +09:00
|
|
|
<span>© 2026 돈돼지 가계부. All rights reserved.</span>
|
2026-05-31 15:42:52 +09:00
|
|
|
</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>
|