-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (79 loc) · 2.93 KB
/
Copy pathindex.html
File metadata and controls
84 lines (79 loc) · 2.93 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>GoobApp</title>
<meta name="description" content="The (worst) chatting platform!" />
<!-- Open Graph Meta Tags -->
<meta property="og:url" content="https://goobapp.org" />
<meta property="og:type" content="website" />
<meta property="og:title" content="GoobApp" />
<meta property="og:description" content="The (worst) chatting platform!" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/GoobApp/goobapp/refs/heads/main/public/OpenGraph.jpg"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="goobapp.org" />
<meta property="twitter:url" content="http://goobapp.org" />
<meta name="twitter:title" content="GoobApp" />
<meta name="twitter:description" content="The (worst) chatting platform!" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/GoobApp/goobapp/refs/heads/main/public/OpenGraph.jpg"
/>
<!-- Meta Tags Generated via https://opengraph.dev (thanks)-->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, interactive-widget=resizes-content"
/>
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self' https://*.cloudflare.com 'unsafe-eval' https://www.google.com https://www.gstatic.com http://cse.google.com;
frame-src *;
connect-src 'self'
https://www.google.com
https://wfdcqaqihwsilzegcknq.supabase.co
wss://wfdcqaqihwsilzegcknq.supabase.co
https://api.precontation.me
wss://api.precontation.me
%VITE_CSP_CONNECT_SRC%
https://picsum.photos
https://fastly.picsum.photos;
style-src 'self' 'unsafe-inline' https://www.google.com;
img-src 'self' https: data: http://clients1.google.com;
object-src 'none';
base-uri 'self';
"
/>
<meta
content="text/html; charset=UTF-8; X-Content-Type-Options=nosniff"
http-equiv="Content-Type"
/>
<link
rel="icon"
type="image/png"
href="favicon/favicon-96x96.png"
sizes="96x96"
/>
<link rel="icon" type="image/svg+xml" href="favicon/favicon.svg" />
<link rel="shortcut icon" href="favicon/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<meta name="apple-mobile-web-app-title" content="GoobApp" />
<link rel="manifest" href="favicon/site.webmanifest" />
</head>
<body>
<div id="root" style="border-radius: 10px"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>