feat: add City Organizers link to meetup page footer (#41) - #42
Merged
FrankezeCode merged 1 commit intoJul 31, 2026
Merged
Conversation
The footer nav on /meetup linked Contact, Partners, Careers, and Docs but omitted the organizers directory. Add a "City Organizers" link routing to /organizers, styled identically to its sibling links (transition hover:text-white), placed alongside the other page links. The mobile layout is unchanged: the nav already uses flex-wrap, so the new link reflows without breaking. The file lints clean.
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.
Closes #41.
What & why. The footer navigation on the
/meetuppage linked Contact, Partners, Careers, and Docs but omitted the organizers directory. This PR adds a "City Organizers" link that routes to/organizers(an existing route).Change. A single
<Link href="/organizers">in the footer<nav>ofsrc/app/meetup/page.tsx, styled identically to its siblings (className="transition hover:text-white") so hover styling matches. It's placed alongside the other page links (after Careers).Mobile layout. Unchanged — the nav already uses
flex flex-wrap ... justify-center gap-6, so the new link reflows on small screens without breaking the layout.Verification.
next lint --file src/app/meetup/page.tsx→ No ESLint warnings or errors.next buildcompiles successfully (✓ Compiled successfully). Note: the build's lint step currently fails on pre-existingreact/no-unescaped-entitieserrors in unrelated files (e.g.src/app/meetup/[meetupId]/page.tsx, present onmainbefore this change) — this PR neither introduces nor touches them. My changed file passes lint and type-checking.