summaryrefslogtreecommitdiff
path: root/src/lib/Seo.svelte
blob: 94a45267a2d62b27912ec96f9dd2a0a4a6b37d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<script>
  import SvelteSeo from "svelte-seo";
  import thumbnail from "../assets/thumbnail.webp";

  const title = "Embroidery Viewer";
  const description = "A free online tool to view embroidery files.";
  const url = "https://embroideryviewer.xyz/";
  const type = "website";
  const keywords =
    "Free Emrbroidery Viewer, embroidery design, sewing machine, preview .pes files, preview embroider designs, brother machine.";
  const embroideryViewerThumbnail = {
    url: thumbnail,
    width: 1200,
    height: 630,
    alt: "Embroidery viewer thumbnail.",
  };
</script>

<SvelteSeo {title} {description} {keywords} />
<SvelteSeo
  openGraph={{
    title,
    description,
    url,
    type,
    images: [embroideryViewerThumbnail],
  }}
/>