Files
shinalokandClaude Sonnet 5 ef2a3ea082 prepare app for public app store distribution
- rebrand from 습관 트래커 to 해빗랩 across templates, manifest, service worker
- add HTTPS redirect middleware for reverse-proxied deployments
- add public landing page (/) and privacy policy page with real data
  handling disclosures
- add in-app account deletion (Apple review requirement)
- add Android TWA Digital Asset Links support (/.well-known/assetlinks.json)
- add SFTP deployment script for the Synology-hosted server

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-23 13:41:50 +09:00

12 lines
459 B
HTML

{% extends "base.html" %}
{% block title %}오류가 발생했어요 · 해빗랩{% endblock %}
{% block content %}
<div style="min-height: 60vh; display:flex; align-items:center; justify-content:center; text-align:center;">
<div>
<h1>문제가 발생했어요</h1>
<p>일시적인 오류일 수 있어요. 잠시 후 다시 시도해주세요.</p>
<a href="/today" class="btn btn-primary">오늘 화면으로</a>
</div>
</div>
{% endblock %}