forked from quavedev/react-vite-tailwindcss-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Jost:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>AI Proof Dev - Become the 1%</title>
<meta property="og:title" content="AI Proof Dev - Become the 1%" />
<meta property="og:description" content="Don't be afraid of AI. The best Developers (aka 1% Devs) will not be replaced by AI." />
<meta property="og:image" content="https://aiproofdev.com/opengraph.png" />
<meta property="og:url" content="https://aiproofdev.com" />
<meta property="og:type" content="website" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YZK8QX5CBB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YZK8QX5CBB');
</script>
</head>
<body class="bg-dark">
<div id="root" class="dark h-[100%]"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>