website/src/lib/Content.svelte
2022-06-21 21:58:50 +03:00

31 lines
538 B
Svelte

<script lang="ts">
import SvelteSeo from "svelte-seo";
import Banner from "$lib/images/ProjectSegfault_Desktop_16-9.png";
import * as strings from "$lib/strings";
import { t } from '$lib/translations';
</script>
<SvelteSeo
openGraph={{
title: strings.NAME,
description: $t('common.indexDescription'),
type: "website",
images: [
{
url: Banner,
width: 850,
height: 650,
alt: "Image"
}
]
}}
/>
<svelte:head>
<title>{strings.NAME}</title>
</svelte:head>
<div class="mdsvex_content">
<slot />
</div>