This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (44 loc) · 1.49 KB
/
index.html
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
<!--
Hi!
If you're here for Roarer's source code, see the following link:
https://github.com/mybearworld/roarer
-->
<!doctype html>
<html lang="en" class="scroll-smooth [scrollbar-gutter:stable_both-edges]">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/bear.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Roarer</title>
<meta
name="description"
content="A simple mobile-friendly Meower client."
/>
<meta property="og:url" content="https://mybearworld.github.io/roarer" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Roarer" />
<meta
property="og:description"
content="A simple mobile-friendly Meower client."
/>
<meta property="og:image" content="/banner.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="mybearworld.github.io" />
<meta
property="twitter:url"
content="https://mybearworld.github.io/roarer"
/>
<meta name="twitter:title" content="Roarer" />
<meta
name="twitter:description"
content="A simple mobile-friendly Meower client."
/>
<meta name="twitter:image" content="./banner.png" />
</head>
<body
class="mx-auto !mr-auto w-[min(100ch,100%)] !overflow-auto bg-background px-4 py-2 text-text"
>
<div id="app" class=""></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>