aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app.html8
-rw-r--r--src/lib/HeadTitle.svelte2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/app.html b/src/app.html
index 6c1fae5c..55214f6f 100644
--- a/src/app.html
+++ b/src/app.html
@@ -13,8 +13,8 @@
<!-- Facebook -->
<meta property="og:url" content="https://due.moe" />
<meta property="og:type" content="website" />
- <meta property="og:title" content="due.moe • 期限" />
- <meta property="og:site_name" content="due.moe • 期限" />
+ <meta property="og:title" content="due.moe" />
+ <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! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga."
@@ -25,14 +25,14 @@
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="due.moe" />
<meta property="twitter:url" content="https://due.moe" />
- <meta name="twitter:title" content="due.moe • 期限" />
+ <meta name="twitter:title" content="due.moe" />
<meta
name="twitter:description"
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" />
- <title>due.moe • 期限</title>
+ <title>due.moe</title>
<!-- Web Application Manifest -->
<link rel="manifest" href="%sveltekit.assets%/manifest.json" />
diff --git a/src/lib/HeadTitle.svelte b/src/lib/HeadTitle.svelte
index 1b759705..39d6b4ef 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 = (route ? `${route} • ` : '') + 'due.moe';
</script>
<svelte:head>