- Custom SQLite task manager replacing TickTick wrapper - 73 tasks migrated from TickTick across 15 projects - RRULE recurrence engine with lazy materialization - Dashboard tasks widget (desktop sidebar + mobile card) - Tasks page with project tabs, add/edit/complete/delete - Security: locked ports to localhost, removed old containers - Gitea Actions runner configured and all 3 CI jobs passing - Fixed mobile overflow on dashboard cards - iOS Capacitor app shell (Second Brain) - Frontend/backend guide docs for adding new services - TickTick Google Calendar sync re-authorized Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
630 B
HTML
20 lines
630 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<title>Second Brain</title>
|
|
<style>
|
|
body { margin: 0; background: #09090b; display: flex; align-items: center; justify-content: center; height: 100vh; font-family: -apple-system, sans-serif; }
|
|
.loading { color: #a1a1aa; font-size: 16px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loading">Loading...</div>
|
|
<script>
|
|
// Redirect to live site (fallback if server.url doesn't work)
|
|
window.location.href = 'https://dash.quadjourney.com';
|
|
</script>
|
|
</body>
|
|
</html>
|