fix: restore NFT avatar as site favicon - #66
Merged
Conversation
The Rails to Next.js migration left the default Next.js favicon.ico in place. Replace it with the RECTOR pixel-art NFT avatar (already the homepage avatar and OG image source), plus icon.png (crisp modern/retina tabs) and apple-icon.png (iOS touch icon), all generated from public/images/rector_profile_image.png.
|
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.
Problem
The Rails→Next.js migration left the stock Next.js
favicon.icoinsrc/app/— so the site tab showed the default placeholder instead of the RECTOR NFT avatar it used pre-migration.Fix
Generated a full icon set from
public/images/rector_profile_image.png(the 476×476 NFT, already the homepage avatar + OG source):src/app/favicon.ico— multi-size (16/32/48), legacy + direct /favicon.icosrc/app/icon.png— crisp PNG for modern/retina tabs (Next auto-links it)src/app/apple-icon.png— 180×180 iOS touch iconNo metadata config needed — Next.js App Router auto-detects these special files.