[main] refactor: simplify pagination to Previous/Next layout#473
Merged
Conversation
Owner
kkhys
commented
Feb 28, 2026
- Replace numbered pagination with Previous/Next navigation
- Improve accessibility with rel attributes and proper ARIA roles
- Remove unused chevron icon assets (chevron-left.svg, chevron-right.svg)
- Simplify component by removing page number generation logic
Replace numbered pagination (1 2 3 ... N) with a simpler Previous/Next navigation pattern. This improves UX by reducing cognitive load and simplifies the component structure. Changes: - Remove generateVisiblePages function and page number rendering - Replace icon-based buttons with text links (Previous/Next) - Add rel="prev" and rel="next" attributes for SEO - Use role="link" and aria-disabled for better accessibility - Delete unused chevron-left.svg and chevron-right.svg icons The pagination now shows Previous and Next links in center alignment, with disabled state (50% opacity) when unavailable.
Update pagination component usage across all blog page routes to remove the now-unused baseUrl prop. The component now relies solely on page.url.prev and page.url.next from Astro's pagination API. Updated routes: - /blog - /blog/categories/[category] - /blog/tags/[tag]
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.