Add logo to README for visual enhancement#105
Conversation
Added logo image to README for better visual appeal.
| 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" /> |
There was a problem hiding this comment.
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.png or .github/assets/) and referencing it via a relative path or raw GitHub URL so it’s durable and works offline/forked copies.
| <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="docs/assets/logo.png" /> |
| 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" /> |
There was a problem hiding this comment.
The image hard-codes both width and height to 400px, which can distort the logo if the source isn’t perfectly square and doesn’t adapt well on small screens. Prefer specifying only one dimension (or using style="max-width: ...; height: auto") so the aspect ratio is preserved and the README remains responsive.
| <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;" /> |
| <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.
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> | |
| --- | |
|  | |
| --- |
Added logo image to README for better visual appeal.