feat: add icon and meta to head

This commit is contained in:
Anthony Berg 2024-10-29 20:17:26 +01:00
parent 6c87ad6cca
commit 6a1224b111

View File

@ -38,6 +38,7 @@ export default {
return ( return (
<> <>
<link rel={'icon'} href={'/logo_t.png'} />
<meta property="og:url" content={url} /> <meta property="og:url" content={url} />
<meta <meta
property="og:title" property="og:title"
@ -50,6 +51,7 @@ export default {
'Guides to running Flight Simulators on Linux' 'Guides to running Flight Simulators on Linux'
} }
/> />
<meta property={'og:image'} content={'/logo_t.png'} />
</> </>
); );
}, },