Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion profile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="assets/logo-dark.svg">
<img src="assets/logo.svg" alt="Model Context Protocol Logo" width="600" height="87">
<img src="assets/logo.svg" alt="Model Context Protocol Logo" width="600" height="87" fetchpriority="high" decoding="async">
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

For the Largest Contentful Paint (LCP) image, decoding="async" can be counter-productive. It tells the browser that it can delay decoding the image to prioritize other content, which can increase the time it takes for the logo to actually appear on the screen. For critical hero elements like a logo, it is generally recommended to use decoding="sync" or omit the attribute entirely to allow the browser to prioritize its display.

Suggested change
<img src="assets/logo.svg" alt="Model Context Protocol Logo" width="600" height="87" fetchpriority="high" decoding="async">
<img src="assets/logo.svg" alt="Model Context Protocol Logo" width="600" height="87" fetchpriority="high">

</picture>
</p>

Expand Down
2 changes: 1 addition & 1 deletion profile/assets/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion profile/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.