Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ RESEND_API_KEY=""
# Base URL for links in emails (verification, password reset).
NUXT_BASE_URL="http://localhost:3000"

# ─── Reports ───
# Email address for bug reports and feedback. Defaults to hugo@wordle.global.
REPORT_EMAIL=""

# ─── Dev tools ───
# Set to "true" to enable /api/auth/dev-login (bypasses OAuth for testing).
# NEVER enable in production.
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
docs/

# Design exploration HTML mockups (local only)
design/
public/design-explorations/
public/comments-exploration.html

# Node.js / Frontend
node_modules/
Expand Down Expand Up @@ -48,6 +50,9 @@ scripts/.freq_data

# Curation review temp files
scripts/.curation_review/

# Processed kaikki dictionary data (190MB+, regenerate with import_dictionary.py)
scripts/.kaikki_processed/
.mcp.json

# Archive (legacy assets, not tracked)
Expand Down
563 changes: 61 additions & 502 deletions TODO.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { usePageDirection } from '~/composables/usePageDirection';

const { direction } = usePageDirection();
const { showLoginModal, closeLoginModal } = useLoginModal();
const { showReportModal, closeReportModal } = useReportModal();

/** Direction-aware page transition. No 'out-in' — it causes blank screens
* because Nuxt's Suspense blocks the enter while out-in already removed
Expand All @@ -29,4 +30,5 @@ useHead({
</NuxtLayout>
<AccountBadgeEarned />
<AccountLoginModal :visible="showLoginModal" @close="closeLoginModal" />
<ReportModal :visible="showReportModal" @close="closeReportModal" />
</template>
Loading
Loading