File: //var/www/iq.affiliate/src/components/Seo/SeoHead.svelte
<script lang="ts">
import { browser } from '$app/environment';
export let type: string;
export let title: string;
export let image: string;
export let description: string;
let location = '';
if (browser) {
location = window.location.href;
}
</script>
<svelte:head>
<title>{title}</title>
<meta name="author" content="Quadcode" />
<meta name="description" content={description} />
<meta property="og:type" content={type} />
<meta property="og:url" content={location} />
<!-- <meta property="og:title" content={title} /> -->
<meta property="og:description" content={description} />
<meta property="og:image" content={image} />
<meta property="og:site_name" content="http://affiliate.iqoption.com/lp/iqaffiliate" />
<meta property="og:locale" content="en_US" />
<!-- <meta property="twitter:card" content="summary" />
<meta property="twitter:url" content={location} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} /> -->
<slot />
</svelte:head>