Use SVG emblem for login screen and add vector asset#26
Merged
ChrisAdamsdevelopment merged 1 commit intoMay 17, 2026
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideReplaces the login screen emblem image with a new SVG asset and wires the auth screen to load the scalable vector version instead of the previous PNG raster image. Flow diagram for loading SVG emblem on auth screenflowchart LR
AuthScreen --> ImgTag
ImgTag["<img src=/assets/spectracleanse-login-emblem.svg>"] --> PublicAssets
PublicAssets[public/assets/spectracleanse-login-emblem.svg] --> BrowserRender[Browser_render_emblem]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Motivation
spectracleanse-login-emblem.pngwith a scalablespectracleanse-login-emblem.svgto improve visual fidelity and rendering on the auth screen.Description
app.tsxto load/assets/spectracleanse-login-emblem.svginstead of the PNG and add the newpublic/assets/spectracleanse-login-emblem.svgSVG asset.Testing
npm run build) and started the local dev server (npm run dev) to verify the emblem renders correctly, and both commands completed successfully.Codex Task
Summary by Sourcery
Switch the authentication screen emblem to a scalable SVG asset.
Enhancements:
Chores: