Skip to content

remove unused images#46

Merged
InftyAI-Agent merged 1 commit intoInftyAI:mainfrom
kerthcet:cleanup/images
Apr 26, 2026
Merged

remove unused images#46
InftyAI-Agent merged 1 commit intoInftyAI:mainfrom
kerthcet:cleanup/images

Conversation

@kerthcet
Copy link
Copy Markdown
Member

What this PR does / why we need it

Which issue(s) this PR fixes

Fixes #

Special notes for your reviewer

Does this PR introduce a user-facing change?


Signed-off-by: kerthcet <kerthcet@gmail.com>
Copilot AI review requested due to automatic review settings April 26, 2026 22:32
@kerthcet
Copy link
Copy Markdown
Member Author

/kind documentation
/lgtm

@InftyAI-Agent InftyAI-Agent added needs-triage Indicates an issue or PR lacks a label and requires one. needs-priority Indicates a PR lacks a label and requires one. do-not-merge/needs-kind Indicates a PR lacks a label and requires one. approved Indicates a PR has been approved by an approver from all required OWNERS files. documentation Categorizes issue or PR as related to documentation. lgtm Looks good to me, indicates that a PR is ready to be merged. and removed do-not-merge/needs-kind Indicates a PR lacks a label and requires one. labels Apr 26, 2026
@InftyAI-Agent InftyAI-Agent merged commit b0c8f6a into InftyAI:main Apr 26, 2026
42 of 44 checks passed
@kerthcet kerthcet deleted the cleanup/images branch April 26, 2026 22:33
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR appears to consolidate the project’s logo assets by removing older/unused logo files and updating the README to point at the new canonical light/dark SVGs under site/images/.

Changes:

  • Added new site/images/logo-{light,dark}.svg assets.
  • Removed older logo SVG variants under docs/images/.
  • Updated README.md header logo <picture> sources to reference the new SVGs.

Reviewed changes

Copilot reviewed 1 out of 6 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
site/images/logo-light.svg Adds the light-theme SVG logo asset intended for README/site usage.
site/images/logo-dark.svg Adds the dark-theme SVG logo asset intended for README/site usage.
README.md Updates the README’s <picture> logo references to the new assets.
docs/images/logo-light3.svg Removes an older logo SVG variant.
docs/images/logo-light2.svg Removes an older logo SVG variant.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread README.md
Comment on lines +4 to +6
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-light.svg">
<img alt="PUMA Logo" src="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-light.svg" width="240">
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README logo references raw.githubusercontent.com/.../main/..., which hard-pins rendering to the main branch and the upstream repo. This breaks logo rendering in forks, in non-main branches/PR previews, and when browsing the repo offline. Prefer repo-relative paths (e.g., site/images/logo-dark.svg / site/images/logo-light.svg) so the README renders consistently from the current checkout.

Suggested change
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-light.svg">
<img alt="PUMA Logo" src="https://raw.githubusercontent.com/InftyAI/PUMA/main/site/images/logo-light.svg" width="240">
<source media="(prefers-color-scheme: dark)" srcset="site/images/logo-dark.svg">
<source media="(prefers-color-scheme: light)" srcset="site/images/logo-light.svg">
<img alt="PUMA Logo" src="site/images/logo-light.svg" width="240">

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. documentation Categorizes issue or PR as related to documentation. lgtm Looks good to me, indicates that a PR is ready to be merged. needs-priority Indicates a PR lacks a label and requires one. needs-triage Indicates an issue or PR lacks a label and requires one.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants