generated from PDMLab/vite-react-typescript-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
51 lines (46 loc) · 1.53 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- dark mode loading -->
<script type="text/javascript">
if (
localStorage.theme === 'dark' ||
(!('theme' in localStorage) &&
window.matchMedia('(prefers-color-scheme: dark)').matches)
) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
<!-- google 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=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- favicon -->
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Olson Studio" />
<meta
property="og:description"
content="A Curated Collection of Works from the Olson Family."
/>
<meta
property="og:image"
content="https://olson.studio/assets/favicon.3b2fb856.svg"
/>
<title>olson.studio</title>
</head>
<body class="bg-white text-black dark:bg-black dark:text-white">
<div
id="root"
class="md:h-screen overflow-y-scroll w-full flex justify-center"
></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>