feat(ui): 푸터 공용화(프로필에도 노출) + 프사 반영 지연 안내

- footer 를 _footer.ejs 파티션으로 분리해 대시보드·프로필 공용으로 include
- footer 문구 '버그 제보:' → '버그 제보 -'
- 프로필 사진 크롭 모달에 '반영까지 최대 몇 분' 안내(연한 힌트) 추가

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-10 13:51:52 +09:00
parent 84ce8567e7
commit ef3d495878
3 changed files with 16 additions and 10 deletions

12
views/_footer.ejs Normal file
View File

@@ -0,0 +1,12 @@
<%
// 공용 푸터. 대시보드·프로필 등 모든 화면에서 include 해서 재사용.
%>
<footer class="footer">
<div class="footer-inner">
<div class="footer-left">
<span class="footer-brand"><span><%- icon("code", { size: 14 }) %></span><%= brand %></span>
<span class="footer-bug">· 버그 제보 - <a href="https://gitea.bokdev.in/playground/ai-dev-portal/issues" target="_blank" rel="noopener">gitea 이슈</a></span>
</div>
<div class="footer-tech">Express + Postgres + Keycloak SSO · deployed on Kubero</div>
</div>
</footer>