Persist Insights tile view across all listing pages - #30
Merged
Conversation
The merged Insights explorer (protocol#27) renders content as tiles, but clicking through to /publications, /talks, /blog, /tutorials reverted to a plain list. Extract the tile into a shared <ContentTile>/<ContentTileGrid> and reuse it across the Insights explorer and every listing page so the tile view persists end to end.
|
Someone is attempting to deploy a commit to the gainforest Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
After #27 introduced the tiled Insights explorer, clicking through to the full listings (
/publications,/talks,/blog,/tutorials) dropped back to a plain text list. This makes the tile view persist end-to-end.Before / After
Publications
Talks
Changes
src/components/ContentTile.tsx— extracts the Insights card (ContentTile) + responsive 1/2/3-col grid (ContentTileGrid) into a single shared source of truth.InsightsExplorer.tsx— refactored to use the sharedContentTile(removes the duplicated localRecentTile); look is unchanged./publications— tiles withvenue · yeareyebrow + authors./talks— tiles withvenue · location · yeareyebrow + abstract./blog— tiles for both static and ATProto posts, keeping external-link markers +source · date./tutorials— tiles with year eyebrow + summary.Notes
npm run buildpasses; verified all four pages + Insights locally.