-
Notifications
You must be signed in to change notification settings - Fork 0
Add logo to README for visual enhancement #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,6 +7,10 @@ | |||||||||||||||||
| A Go framework for building highly maintainable Kubernetes operators using a behavioral component model and | ||||||||||||||||||
| version-gated feature mutations. | ||||||||||||||||||
|
|
||||||||||||||||||
| <p align="center"> | ||||||||||||||||||
| <img width="400" height="400" alt="OCF Logo" src="https://github.com/user-attachments/assets/ac8162e7-5963-4284-a590-5a9215090103" /> | ||||||||||||||||||
|
||||||||||||||||||
| <img width="400" height="400" alt="OCF Logo" src="https://github.com/user-attachments/assets/ac8162e7-5963-4284-a590-5a9215090103" /> | |
| <img alt="OCF Logo" src="https://github.com/user-attachments/assets/ac8162e7-5963-4284-a590-5a9215090103" style="max-width: 400px; width: 100%; height: auto;" /> |
Copilot
AI
Apr 2, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This adds raw HTML (<p align=...><img .../>) to the README; the rest of the repo’s markdown docs appear to avoid embedded HTML. Consider using standard Markdown image syntax instead (and center it only if necessary) to improve portability across renderers (e.g., pkg.go.dev) and keep documentation style consistent.
| <p align="center"> | |
| <img width="400" height="400" alt="OCF Logo" src="https://github.com/user-attachments/assets/ac8162e7-5963-4284-a590-5a9215090103" /> | |
| </p> | |
| --- | |
|  | |
| --- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The logo is referenced via a
github.com/user-attachments/assets/...URL. These attachment URLs aren’t a stable, versioned project asset and can break or become inaccessible; consider committing the logo into the repo (e.g.,docs/assets/logo.pngor.github/assets/) and referencing it via a relative path or raw GitHub URL so it’s durable and works offline/forked copies.