-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.vue
58 lines (53 loc) · 1.35 KB
/
app.vue
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<script setup lang="ts">
useHead({
titleTemplate: (title) =>
title
? `${title} · Redot Engine`
: "Redot Engine: Open source game engine for everyone.",
meta: [
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
name: "description",
content: "Open source game engine for everyone. No strings attached.",
},
{
name: "google-site-verification",
content: "Gsmu73HojIdCvaz-xl2dv8faF4tzOrti6gZMNqigOyM",
},
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
htmlAttrs: {
lang: "en",
},
});
useSeoMeta({
ogType: "website",
ogTitle: "Redot Engine",
ogImage: "https://www.redotengine.org/img/seo/banner.avif",
twitterCard: "summary_large_image",
twitterTitle: "Redot Engine",
twitterDescription:
"Open source game engine for everyone. No strings attached.",
twitterImage: "https://www.redotengine.org/img/seo/banner.avif",
});
</script>
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtPage />
</div>
</template>
<style>
@import "@/assets/styles/reset.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
font-size: 14px;
line-height: 1.2;
color: #fff;
background: #000;
}
</style>