Add CutePetsBoston logo favicon (#112)#131
Merged
Merged
Conversation
Generate a cross-browser favicon set from the logo and reference it from the site head: - favicon.ico (16/32/48 multi-resolution) — universal fallback, served at /favicon.ico for every browser including legacy ones. - favicon.svg — crisp scalable icon for modern browsers. - apple-touch-icon.png (180x180, no alpha) — iOS home-screen bookmarks. Closes #112. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Closes #112. Adds the CutePetsBoston logo as the site favicon, generated into a cross-browser asset set and referenced from
docs/index.html's<head>.Assets (
docs/)favicon.ico— 16/32/48 multi-resolution. The universal fallback every browser auto-requests at/favicon.ico, including legacy ones.favicon.svg— crisp, scalable icon for modern browsers (Chrome, Firefox, Edge, Safari).apple-touch-icon.png— 180×180 with alpha removed (iOS requires no transparency) for iOS home-screen bookmarks.The
<head>usessizes="any"on the.icolink so Chromium prefers the SVG rather than downloading both.Browser coverage
.ico→ all browsers, including legacy/IE.svg→ modern desktop + mobile browsersVerification
Served
docs/locally and confirmed all three assets resolve with correct MIME types (image/x-icon,image/svg+xml,image/png), and that the small-size renders are clearly recognizable as the dog + cat logo.🤖 Generated with Claude Code