feat: add mobile-friendly navigation with drawer menu#253
Merged
marco-souza merged 9 commits intomainfrom Apr 26, 2026
Merged
Conversation
Agent-Logs-Url: https://github.com/podcodar/webapp/sessions/2a9c85a4-5689-4b4a-b49e-54ae9bbf3ea7 Co-authored-by: marco-souza <4452113+marco-souza@users.noreply.github.com>
Agent-Logs-Url: https://github.com/podcodar/webapp/sessions/2a9c85a4-5689-4b4a-b49e-54ae9bbf3ea7 Co-authored-by: marco-souza <4452113+marco-souza@users.noreply.github.com>
Contributor
✅ Playwright E2E — All tests passed
|
Contributor
✅ Playwright E2E — All tests passed
|
- Add MobileMenu component with DaisyUI drawer (80% width) - Refactor Header.astro for responsive layout: - Mobile (<1024px): Logo left, Hamburger+CTA right in a flex row - Desktop (1024px+): Original layout preserved (Logo+Nav left, CTAs right) - Drawer contains: logo + nav links (top), empty space (center), CTAs (bottom) - Add i18n keys for menu labels - Pure CSS implementation using DaisyUI drawer Closes #252
c542979 to
92ad94e
Compare
Contributor
✅ Playwright E2E — All tests passed
|
Contributor
✅ Playwright E2E — All tests passed
|
Contributor
✅ Playwright E2E — All tests passed
|
Contributor
✅ Playwright E2E — All tests 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.
Summary
Implements mobile-friendly navigation for PodCodar 2026 Rebranding as specified in issue #252.
Changes
MobileMenu.astrocomponent: Uses DaisyUI v5 drawer component (pure CSS, no JavaScript)Header.astro: Responsive layout with mobile/desktop breakpointsnav.menuandnav.close_menufor accessibility labelsMobile Layout (small screens)
Drawer Behavior
When hamburger is clicked, a drawer slides in from the left:
Desktop Layout (lg+ screens)
Technical Details
drawercomponent (CSS-only, no JS island needed)Closes #252