-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.63 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
<!DOCTYPE html>
<html class="w-full" lang="en">
<head>
<meta charset="UTF-8" />
<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=Courier+Prime:wght@400;700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shayne Geilman Portfolio</title>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-HWWGFZV1CD"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-HWWGFZV1CD");
</script>
</head>
<body class="font-roboto">
<div class="mx-10" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<footer class="text-center text-gray-400/50 bg-black/25 py-5 w-full">
Built by Shayne Geilman, following a design by
<a
class="hover:cursor-pointer hover:text-blue-700 text-blue-300/50"
href="https://www.figma.com/community/file/1199400234468163757/Developer's-Portfolio"
target="_blank"
>Yasmim Guimaraes</a
>
with changes made by Shayne Geilman. Licenced under
<a
class="hover:cursor-pointer hover:text-blue-700 text-blue-300/50"
href="https://creativecommons.org/licenses/by/4.0/legalcode"
target="_blank"
>Creative Commons 4.0</a
>
</footer>
</body>
</html>