-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
astro-seo.config.js
40 lines (38 loc) · 1.07 KB
/
astro-seo.config.js
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
29
30
31
32
33
34
35
36
37
38
39
40
let metaTitle = "Mythic";
let metaDescription = "An open-source Epic Games Launcher alternative and game launcher for macOS written in Apple Swift, with the ability to run Windows® games.";
let metaUrl = "https://getmythic.app";
let metaImage = "https://getmythic.app/ogimage.png";
const meta = {
title: metaTitle,
description: metaDescription,
image: metaImage,
url: metaUrl,
canonical: metaUrl,
themeColor: "#a046ff",
og: {
title: metaTitle,
description: metaDescription,
url: metaUrl,
type: "website",
site_name: metaTitle,
image: metaImage,
locale: "en_US",
},
twitter: {
card: "summary_large_image",
title: metaTitle,
description: metaDescription,
site: "@mythicapp",
image: metaImage,
},
author: "Mythic, Jeremy, Jecta, blackxfiied",
keywords: "mythic, macos, gaming, mac, apple",
referrer: "no-referrer-when-downgrade",
httpEquiv: {
"content-language": "en-US",
"X-UA-Compatible": "IE=edge",
},
robots: "index, follow",
viewport: "width=device-width, initial-scale=1.0",
};
export default meta;