@@ -4,42 +4,35 @@ import type {AppProps} from 'next/app'
44import Background from '../components/background' ;
55import Container from '../components/layout/container' ;
66import Navigation from '../components/navigation' ;
7- import { config } from '@fortawesome/fontawesome-svg-core'
7+ import { config } from '@fortawesome/fontawesome-svg-core'
88import '@fortawesome/fontawesome-svg-core/styles.css'
99import '../styles/clown.css'
1010import Clown from "../components/clown/clown" ;
1111import Head from "next/head" ;
12+ import { defaultMeta } from "../utils/defaultMeta" ;
13+
1214config . autoAddCss = false
1315
1416function MyApp ( { Component, pageProps} : AppProps ) {
1517 return (
1618 < >
1719 < Head >
20+ < title key = 'title' > { defaultMeta . title } </ title >
1821 < meta charSet = "UTF-8" />
19- < meta name = "keywords" content = "unitystation, Space Station 13, SS13, Unity, RPG, Among us" />
20- < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />
21- < title key = 'title' > Unitystation</ title >
22- < meta
23- key = 'description'
24- name = "description"
25- content = "Unitystation is a free and open-source multiplayer space station 13 remake built in Unity."
26- />
27- < meta
28- key = 'og:title'
29- property = "og:title"
30- content = "Unitystation - The Space Station 13 Remake made in Unity"
31- />
32- < meta
33- key = 'og:description'
34- property = "og:description"
35- content = "Unitystation is a free and open-source multiplayer space station 13 remake built in Unity."
36- />
37- < meta
38- key = 'og:image'
39- property = "og:image"
40- content = "https://unitystationfile.b-cdn.net/Branding/headerCapsule.png"
41- />
22+ < meta name = "keywords" content = { defaultMeta . keywords } />
23+ < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />
24+ < meta key = 'description' name = "description" content = { defaultMeta . description } />
25+ < meta key = 'og:title' property = "og:title" content = { defaultMeta . title } />
26+ < meta key = 'og:description' property = "og:description" content = { defaultMeta . description } />
27+ < meta key = 'og:image' property = "og:image" content = { defaultMeta . image } />
28+ < meta key = "og:url" property = "og:url" content = { defaultMeta . url } />
4229 < meta key = "og:type" property = "og:type" content = "website" />
30+ < meta name = "twitter:card" content = "summary_large_image" />
31+ < meta property = "twitter:domain" content = { defaultMeta . domain } />
32+ < meta property = "twitter:url" content = { defaultMeta . url } />
33+ < meta name = "twitter:title" content = { defaultMeta . title } />
34+ < meta name = "twitter:description" content = { defaultMeta . description } />
35+ < meta name = "twitter:image" content = { defaultMeta . image } />
4336 </ Head >
4437 < Background >
4538 < Clown > </ Clown >
0 commit comments