diff options
| author | Fuwn <[email protected]> | 2024-02-07 01:07:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-07 01:07:34 -0800 |
| commit | b2cd85ceddb1d39924b858cb198a9784954fd4c5 (patch) | |
| tree | 62c7afc68bbdf06da7221d0763db0c03bc28fcfa /src/routes/+layout.svelte | |
| parent | fix(match): skip specials and ovas in schedule (diff) | |
| download | due.moe-b2cd85ceddb1d39924b858cb198a9784954fd4c5.tar.xz due.moe-b2cd85ceddb1d39924b858cb198a9784954fd4c5.zip | |
feat(hololive): hololive schedule
Diffstat (limited to 'src/routes/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index e8fb9f9b..cc09bb94 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -113,8 +113,9 @@ <Dropdown items={[ { name: $locale().navigation.subtitleSchedule, url: root('/schedule') }, - { name: $locale().navigation.newReleases, url: root('/updates') }, - { name: $locale().tools.tool.characterBirthdays.short, url: root('/birthdays') } + { name: $locale().navigation.hololive, url: root('/hololive') }, + { name: $locale().tools.tool.characterBirthdays.short, url: root('/birthdays') }, + { name: $locale().navigation.newReleases, url: root('/updates') } ]} title={$locale().navigation.schedule} /> |