aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SEO.tsx
blob: 6d3323b46f496071de39e436fabc355eefff2831 (plain) (blame)
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
import React from "react";

export function Head(): React.ReactElement {
  const metaDescription =
    "The official website of Kevin Hoerr, developer of websites.";
  return (
    <>
      <meta name="twitter:description" content={metaDescription} />
      <meta
        name="twitter:title"
        content="Kevin J Hoerr &lt;kjhoerr@submelon.tech&gt;"
      />
      <meta name="twitter:creator" content="Kevin J Hoerr" />
      <meta name="twitter:card" content="summary" />
      <meta property="og:type" content="website" />
      <meta property="og:description" content={metaDescription} />
      <meta
        property="og:title"
        content="Kevin J Hoerr &lt;kjhoerr@submelon.tech&gt;"
      />
      <meta name="description" content={metaDescription} />
      <title>Kevin J Hoerr &lt;kjhoerr@submelon.tech&gt;</title>
    </>
  );
}