diff options
| author | Fuwn <[email protected]> | 2023-12-28 17:16:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-28 17:16:18 -0800 |
| commit | 5eb99837aed4b265b7d834947e4480d7be010b85 (patch) | |
| tree | f59cd923f4cccfa43f8ec42d4f2690b175d3c2bf | |
| parent | fix(wrapped): size by width (diff) | |
| download | due.moe-5eb99837aed4b265b7d834947e4480d7be010b85.tar.xz due.moe-5eb99837aed4b265b7d834947e4480d7be010b85.zip | |
feat(html): update description and title
| -rw-r--r-- | src/app.html | 6 | ||||
| -rw-r--r-- | src/lib/HeadTitle.svelte | 2 | ||||
| -rw-r--r-- | static/manifest.json | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/app.html b/src/app.html index 173149f7..ee6e2987 100644 --- a/src/app.html +++ b/src/app.html @@ -7,7 +7,7 @@ <meta name="theme-color" content="#060506" /> <meta name="description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <!-- Facebook --> @@ -17,7 +17,7 @@ <meta property="og:site_name" content="due.moe • 期限" /> <meta property="og:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <meta property="og:image" content="https://due.moe/favicon-196x196.png" /> @@ -28,7 +28,7 @@ <meta name="twitter:title" content="due.moe • 期限" /> <meta name="twitter:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters!" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." /> <meta name="twitter:image" content="https://due.moe/favicon-196x196.png" /> diff --git a/src/lib/HeadTitle.svelte b/src/lib/HeadTitle.svelte index 892eef48..1b759705 100644 --- a/src/lib/HeadTitle.svelte +++ b/src/lib/HeadTitle.svelte @@ -2,7 +2,7 @@ export let route: string | undefined = undefined; export let path: string | undefined = undefined; - const title = 'due.moe • 期限' + (route ? ` | ${route}` : ''); + const title = 'due.moe' + (route ? ` • ${route}` : ''); </script> <svelte:head> diff --git a/static/manifest.json b/static/manifest.json index 3c4350b7..d198debb 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "期限", - "name": "期限", + "short_name": "due.moe", + "name": "due.moe", "start_url": "/", "icons": [ { |