diff options
| author | Fuwn <[email protected]> | 2023-12-25 00:46:05 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-25 00:46:05 -0800 |
| commit | 486c01a572f50c6db925ca74600ba5d4984752df (patch) | |
| tree | 96fac5e1aa3f221e141a74ada0864044bc70c5ac /src/routes/user/+page.svelte | |
| parent | feat(html): update title (diff) | |
| download | due.moe-486c01a572f50c6db925ca74600ba5d4984752df.tar.xz due.moe-486c01a572f50c6db925ca74600ba5d4984752df.zip | |
feat(routes): route-specific head title
Diffstat (limited to 'src/routes/user/+page.svelte')
| -rw-r--r-- | src/routes/user/+page.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/user/+page.svelte b/src/routes/user/+page.svelte index b6c63f35..f3c5894a 100644 --- a/src/routes/user/+page.svelte +++ b/src/routes/user/+page.svelte @@ -4,6 +4,7 @@ import type { UserIdentity } from '$lib/AniList/identity'; import { onMount } from 'svelte'; import { env } from '$env/dynamic/public'; + import HeadTitle from '$lib/HeadTitle.svelte'; const user = browser && localStorage.getItem('userIdentity') @@ -20,3 +21,5 @@ } }); </script> + +<HeadTitle route="Profile" path="/user" /> |