-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (63 loc) · 3.38 KB
/
index.html
File metadata and controls
75 lines (63 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Do Stuff - Exam Platform</title>
<meta name="description" content="Create engaging, interactive exams with multiple question types. From multiple choice to translations - make learning fun and assessment effective." />
<meta name="author" content="Do Stuff" />
<meta name="keywords" content="exam platform, education, quiz, assessment, duolingo, learning, teaching, interactive exams" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Theme Colors -->
<meta name="theme-color" content="#3b82f6" />
<meta name="msapplication-TileColor" content="#3b82f6" />
<meta name="msapplication-navbutton-color" content="#3b82f6" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- iOS PWA Support -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Do Stuff" />
<meta name="apple-touch-fullscreen" content="yes" />
<!-- PWA Icons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="167x167" href="/icon-192x192.png" />
<!-- Windows Tiles -->
<meta name="msapplication-TileImage" content="/icon-144x144.png" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Content Security Policy to prevent unauthorized image access -->
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
img-src 'self' data: https: blob:;
media-src 'self' https:;
script-src 'self' 'unsafe-inline' 'unsafe-eval' blob:;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
connect-src 'self' https: wss: blob:;
font-src 'self' data: https://fonts.gstatic.com;
object-src 'none';
base-uri 'self';
form-action 'self';
upgrade-insecure-requests;
" />
<meta property="og:title" content="Do Stuff - Exam Platform" />
<meta property="og:description" content="Create engaging, interactive exams with multiple question types. From multiple choice to translations - make learning fun and assessment effective." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://i.postimg.cc/9MRVC0T9/dostuff.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Oryno_dev" />
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Round" rel="stylesheet">
<!-- Preload critical font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Service Worker and PWA functionality is handled by the application -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>