aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Head.svelte
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-02-15 21:58:20 +0000
committermat <github@matdoes.dev>2022-02-15 21:58:20 +0000
commitc060d60ba1d5f3ad9f37b48b50b694a2d19240d1 (patch)
tree23fb02b54c16c878675f47052eb4c2d5e6c7829c /src/lib/Head.svelte
parent235fac70c745973f0fe3f18ea900922fa4b199f8 (diff)
downloadskyblock-stats-c060d60ba1d5f3ad9f37b48b50b694a2d19240d1.tar.gz
skyblock-stats-c060d60ba1d5f3ad9f37b48b50b694a2d19240d1.tar.bz2
skyblock-stats-c060d60ba1d5f3ad9f37b48b50b694a2d19240d1.zip
start adding profile
Diffstat (limited to 'src/lib/Head.svelte')
-rw-r--r--src/lib/Head.svelte20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/Head.svelte b/src/lib/Head.svelte
index d301f14..e8032db 100644
--- a/src/lib/Head.svelte
+++ b/src/lib/Head.svelte
@@ -1,17 +1,17 @@
<script lang="ts">
- /** The title that is shown at the top of the page and in search engines */
- export let title = 'SkyBlock Stats'
- /** The description that is shown in search engines */
+ /** The title that is shown at the top of the page and in search engines */
+ export let title = 'SkyBlock Stats'
+ /** The description that is shown in search engines */
export let description = ''
- /** The title that is shown in platforms like Discord */
+ /** The title that is shown in platforms like Discord */
export let metaTitle = title
- /** The description that is shown in platforms like Discord */
- export let metaDescription = description
+ /** The description that is shown in platforms like Discord */
+ export let metaDescription = description
</script>
<svelte:head>
- <title>{title}</title>
- <meta name="description" content={description}>
- <meta property="og:title" content={metaTitle}>
- <meta property="og:description" content={metaDescription}>
+ <title>{title}</title>
+ <meta name="description" content={description} />
+ <meta property="og:title" content={metaTitle} />
+ <meta property="og:description" content={metaDescription} />
</svelte:head>