Skip to content

Commit de8310f

Browse files
davidagustinclaude
andcommitted
feat: add cheatsheet page for all 21 languages
- Add /[language]/cheatsheet route with interview-focused method references - Include 40-50 curated entries per language with syntax, examples, time/space complexity - Desktop table view and mobile card view with responsive design - Category and priority filters, search, and print functionality - Quick navigation sidebar for category jumping - Update layout to include Cheatsheet in mode navigation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 510acf8 commit de8310f

25 files changed

Lines changed: 16306 additions & 0 deletions

app/[language]/cheatsheet/page.tsx

Lines changed: 580 additions & 0 deletions
Large diffs are not rendered by default.

app/[language]/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const MODES = [
1616
{ slug: 'quiz', label: 'Quiz', icon: '🧠' },
1717
{ slug: 'exercises', label: 'Exercises', icon: '🔄' },
1818
{ slug: 'reference', label: 'Reference', icon: '📚' },
19+
{ slug: 'cheatsheet', label: 'Cheatsheet', icon: '📋' },
1920
{ slug: 'interview', label: 'Interview', icon: '🤖' },
2021
] as const;
2122

0 commit comments

Comments
 (0)