-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
85 lines (80 loc) · 3 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" sizes="24x24" />
<!-- <link rel="icon" type="image/svg+xml" href="./src/assets/images/favicon.png" sizes="24x24" /> -->
<meta
name="description"
content="I enjoy creating frontend solutions with solid foundations, scalability, and excellent user experiences."
/>
<meta
name="keywords"
content="Victor Olatunji, VickyJay, Victorola-coder, Vickyjaydev, Software engineer, Creative Frontend developer, Portfolio, vickyjay.dev"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://vickyjay.vercel.app" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Victor || VickyJay - Creative Frontend Engineer"
/>
<meta
property="og:description"
content="I enjoy creating frontend
solutions with solid foundations, scalability, and excellent user
experiences."
/>
<meta
property="og:image"
content="https://res.cloudinary.com/dkoe20rzl/image/upload/v1692130992/cover_xhnhes.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="vickyjay.vercel.app" />
<meta property="twitter:url" content="https://vickyjay.vercel.app" />
<meta
name="twitter:title"
content="Victor || VickyJay - Creative Frontend Engineer"
/>
<meta
name="twitter:description"
content="I enjoy creating frontend
solutions with solid foundations, scalability, and excellent user
experiences."
/>
<meta
name="twitter:image"
content="https://res.cloudinary.com/dkoe20rzl/image/upload/v1692130992/cover_xhnhes.png"
/>
<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=Poppins:wght@400;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body class="lg:bg-blue-950s md:bg-red-300s bg-yellow-400s">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script>
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");
}
// Whenever the user explicitly chooses light mode
localStorage.theme = "light";
// Whenever the user explicitly chooses dark mode
localStorage.theme = "dark";
// Whenever the user explicitly chooses to respect the OS preference
localStorage.removeItem("theme");
</script>
</body>
</html>