You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
850 B

import Head from "next/head";
export default function Meta(props) {
return (
<>
<Head>
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<meta charSet="utf-8" />
<title>{props.siteTitle}</title>
<meta
name="Description"
content="Random thoughts, tips and rants about software"
></meta>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<script
async
defer
data-domain="garrit.xyz"
src="https://analytics.slashdev.space/js/plausible.js"
></script>
</Head>
</>
);
}