-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
32 lines (29 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
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description"
content="June Hansen, a fullstack developer from Norway, excels in Vue and Angular frontend, .NET backend, and Azure cloud services.">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="icon" href="/src/assets/images/Kahera.webp">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>June Hansen</title>
</head>
<script>
// Added inline in head to avoid FOUC
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
localStorage.theme = 'dark';
window.document.documentElement.style.colorScheme = 'dark';
} else {
document.documentElement.classList.remove('dark');
localStorage.theme = 'light';
window.document.documentElement.style.colorScheme = 'light';
}
</script>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>