-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
49 lines (49 loc) · 1.93 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
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>MyTimetable</title>
<meta
name="description"
content="MyTimetable is a simple drag-and-drop timetable planner for University of Adelaide students. Easily organise your course classes and create the perfect timetable with this tool by the CS Club Open Source Team."
/>
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="theme-color" content="#FC8500" />
<meta property="og:title" content="MyTimetable" />
<meta property="og:url" content="https://mytimetable.csclub.org.au/" />
<meta
property="og:description"
content="MyTimetable is a simple drag-and-drop timetable planner for University of Adelaide students."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="/banner.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="A banner image featuring the logo and title, with a laptop displaying a preview of a weekly class schedule."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:description"
content="MyTimetable is a simple drag-and-drop timetable planner for University of Adelaide students."
/>
<meta name="twitter:image" content="/banner.png" />
<script
defer
src="https://umami.csclub.org.au/script.js"
data-website-id="%VITE_UMAMI_WEBSITE_ID%"
></script>
</head>
<body class="min-h-dvh bg-background text-foreground dark:dark">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>