blob: 30498107c04e7ba9389dbd678aa02ac55523fe97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 <kjhoerr@submelon.tech>"
/>
<meta name="twitter:creator" content="Kevin J Hoerr" />
<meta name="twitter:card" content="summary" />
<meta name="description" content={metaDescription} />
<title>Kevin J Hoerr <kjhoerr@submelon.tech></title>
</>
);
}
|