feat: implement global hotkeys (#604) and dynamic SEO metadata config for roadmaps (#607)#610
Merged
Aditya948351 merged 5 commits intoJun 15, 2026
Conversation
added 3 commits
June 12, 2026 18:11
…orm and DevCard using onSnapshot
… changes, and fix profile username prerendering parameters
Contributor
Author
|
Hi @Aditya948351, I have bundled the changes for both Issue #604 and Issue #607 into this single PR to prevent layout conflicts. The build passes perfectly, and the lint failure is just from pre-existing legacy files. Please review and merge it. Thank you |
Collaborator
|
As it seems those two issues are made seems to be completely fine and also as you have solved two issues in this PR, I am adding a |
3103f90
into
devpathindcommunity-india:master
3 of 4 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
⌨️ & 🚀 Pull Request Details for Hotkeys (#604) & Dynamic SEO Metadata (#607)
Description:
This consolidated PR implements a global keyboard shortcuts engine paired with an animated visual legend, alongside a fully dynamic server-side SEO Metadata configuration matrix for all dynamic roadmap curriculum tracks.
1. Keyboard Shortcuts & Accessibility Engine (#604)
useKeyboardShortcuts.ts): Implements a window keydown matrix with strict active bounds tracking (document.activeElement) to safely isolate active inputs or textareas during user typing workflows.Ctrl + K/Cmd + K: Toggles global search overlay utilizing local Zustand store boundaries.Escape (Esc): Emits custom'close-all-overlays'browser events caught reactively byNavbar.tsxandSkillTreeVisualizer.tsxto dismiss mobile drawers, side cards, and active menus.ArrowLeft/ArrowRight: Sequentially cycles focus parameters across curriculum node selections in the skill tree dashboard layout.?(Shift + /): Spawns the Shortcut Help Guide layer.ShortcutLegend.tsx): A glassmorphic float modal styled with deep slate tones and responsive toggle micro-interactions usingframer-motion.2. Advanced Dynamic SEO Metadata Engine (#607)
src/app/roadmaps/[id]/page.tsxto handle route params strictly as an asyncPromisewrapper.generateMetadatalifecycle triggers to output targetedtitle,description, and tailored OpenGraph/Twitter summary configurations based on active parameters.generateStaticParams()pre-rendering bindings supporting clean static HTML compilation (output: 'export') for target routes with zero hydration drops.ComingSoonRoadmap.tsx): Designed an elegant glassmorphic "Coming Soon" card layer with interactive email notification inputs for roadmap tracks pending backend asset releases.Verification Check Suite:
npm run build).Fixes #604
Fixes #607