We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0d4de commit 7a2c579Copy full SHA for 7a2c579
src/lib/index/sections/games/games-section.svelte
@@ -33,7 +33,13 @@
33
<Card padding="0">
34
<a href={game.url} target="_blank" class="game" title={`View "${game.name}" on Steam`}>
35
<div class="game-picture">
36
- <Image src={game.header_url} alt={game.name} width={460} height={215} />
+ <Image
37
+ src={game.header_url}
38
+ alt={game.name}
39
+ width={460}
40
+ height={215}
41
+ placeholder={game.header_blur_hash}
42
+ />
43
</div>
44
<div class="stats">
45
<Stats
src/lib/lcp/steam.ts
@@ -4,6 +4,7 @@ export interface Game {
4
url: string;
5
icon_url: string;
6
header_url: string;
7
+ header_blur_hash: string;
8
library_url: string | undefined;
9
playtime_forever: number;
10
achievement_progress: number | undefined;
0 commit comments