diff --git a/src/data/build.js b/src/data/build.js index c429d817..d0da5e34 100644 --- a/src/data/build.js +++ b/src/data/build.js @@ -3125,7 +3125,7 @@ export const builds = { id: 'halberd', }, ], - artifacts: [['vermillion_hereafter'], ['viridescent_venerer', '+18%_atk_set', '+18%_atk_set']], + artifacts: [['vermillion_hereafter'], ['viridescent_venerer', '+18%_atk_set']], mainStats: { sands: 'ATK%', goblet: 'Anemo DMG / ATK%', diff --git a/src/routes/_index/banner.svelte b/src/routes/_index/banner.svelte index 93ebb2c9..e6123dc2 100644 --- a/src/routes/_index/banner.svelte +++ b/src/routes/_index/banner.svelte @@ -13,16 +13,25 @@ const dispatch = createEventDispatcher(); const featured = { - kamisato_ayaka: { - name: 'Ayaka', + yelan: { + name: 'Yelan', + rarity: 'legendary', + count: 0, + average: '...', + percentage: '...', + }, + xiao: { + name: 'xiao', rarity: 'legendary', count: 0, average: '...', percentage: '...', }, }; - const bannerId = 300029; - const image = 'ayaka.png'; + const bannerId = 300030; + const image = 'yelanxiao.png'; + const width = 800; + const height = 455; let loading = true; let user = ''; @@ -66,7 +75,7 @@
- banner + banner
{#each Object.entries(featured) as [_, item], i}
{/each}
@@ -62,6 +64,8 @@ alt={artifact} title={artifact} class="w-12 h-12" + width="48" + height="48" /> {/each}
@@ -72,15 +76,36 @@

Stats

- SANDS + SANDS

{build.mainStats.sands}

- GOBLET + GOBLET

{build.mainStats.goblet}

- CIRCLET + CIRCLET

{build.mainStats.circlet}

diff --git a/src/routes/_index/item.svelte b/src/routes/_index/item.svelte index fae7916a..de0920ad 100644 --- a/src/routes/_index/item.svelte +++ b/src/routes/_index/item.svelte @@ -82,6 +82,8 @@ src="/images/characters/{char}.png" alt={char} title={char} + width="40" + height="40" /> {/each} diff --git a/src/routes/_index/wish.svelte b/src/routes/_index/wish.svelte index ffe7f202..ff72ed44 100644 --- a/src/routes/_index/wish.svelte +++ b/src/routes/_index/wish.svelte @@ -67,6 +67,8 @@ ? `/images/weapons/${latestPull.id}.png` : '/images/wish.png'} alt={latestPull.id} + width="64" + height="64" />
diff --git a/static/images/home/yelanxiao.png b/static/images/home/yelanxiao.png new file mode 100644 index 00000000..f098f694 Binary files /dev/null and b/static/images/home/yelanxiao.png differ