feat(blog): move "About the author" card to the bottom of each post - #8060
Merged
Conversation
Relocate the per-post AuthorBio ("About the author") card from just below
the header to the end of the article, after the body and before the
series/related-posts section, so readers meet the author credentials
right after finishing the post. The compact byline (avatars + date) stays
in the header. Update the placement comments to match.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughThe blog post page now renders ChangesAuthor bio placement
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
Comment |
|
The latest updates on your projects. Learn more about Argos notifications ↗︎
|
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.
What
Moves the per-post "About the author" card (
AuthorBio) from just below the post header to the end of the article, after the body and before the series / related-posts section. This affects every blog post page (apps/blog/src/app/(blog)/[slug]/page.tsx).The compact byline at the top (author avatars + publish date,
AuthorAvatarGroup) is unchanged — only the full author-bio card moves.Why
Places author credentials where readers naturally reach them: right after finishing the post, the conventional spot for an "About the author" block.
Changes
apps/blog/src/app/(blog)/[slug]/page.tsx— render<AuthorBio>after</article>instead of before the body.apps/blog/src/components/AuthorBio.tsx— update the component docstring to describe the end-of-post placement.Note / tradeoff
The bio was originally surfaced high in the document deliberately, for E-E-A-T and so LLM/agent crawlers encounter author credentials early (#8037). Moving it to the bottom reverses that choice. The author name/link still appears at the top via the byline, and full
BlogPosting+Personstructured data (author name, URL, bio, social profiles) is emitted in JSON-LD regardless of visual placement, so machine-readable authorship is preserved. Flag if you'd prefer the bio to remain near the top.Scope
Layout-only; no data, schema, or API changes.
🤖 Generated with Claude Code
Summary by CodeRabbit