aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Home/HeadTitle.svelte
blob: 9ac1ea7106364ef41e1c2deef207a9b7673d0d54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script lang="ts">
let { route = undefined, path = "/" }: { route?: string; path?: string } =
	$props();
const title = $derived((route ? `${route} • ` : "") + "due.moe");
</script>

<svelte:head>
  <!-- Facebook -->
  <meta name="og:url" property="og:url" content={`https://due.moe${path}`} />
  <meta name="og:title" property="og:title" content={title} />

  <!-- Twitter -->
  <meta name="twitter:url" property="twitter:url" content={`https://due.moe${path}`} />
  <meta name="twitter:title" property="twitter:title" content={title} />

  <title>{title}</title>
</svelte:head>