-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 1.14 KB
/
index.html
File metadata and controls
31 lines (26 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes" />
<!-- Primary Meta Tags -->
<title>Textus</title>
<meta name="description" content="A modern navigation management system with Material Design 3" />
<!-- Theme Color -->
<meta name="theme-color" content="#0288D1" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#00FF41" media="(prefers-color-scheme: dark)" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/textus.svg" />
<link rel="apple-touch-icon" href="/textus.svg" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>