-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 2.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="The Creative Portfolio of Joshua Newell Diehl - Software Engineer" />
<title>| Joshua Diehl | - Portfolio</title>
<style>
#image-root::before {
content: "";
background-position: center;
background-image: var(--pattern-blue);
background-size: cover;
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
opacity: 0.4;
filter: saturate(0.4);
z-index: -1;
}
</style>
<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=Catamaran:wght@500&family=Mate:ital@1&family=Pridi:wght@300&family=Quicksand&display=swap"
rel="stylesheet">
</head>
<body>
<div id="root"></div>
<div id="img-root"></div>
<div id="projects-modal"></div>
<div id="img-viewer-modal"></div>
<div id="sparkles-root" style="height: 100vh; position: absolute;top: 0; left: 0; right: 0; bottom: 0; z-index: -1">
</div>
<script type="module" src="/src/main.tsx"></script>
<script defer>
console.log(`
██ ██ ███████ ██ ██
██ ██ ██ ██ ██
███████ █████ ████
██ ██ ██ ██
██ ██ ███████ ██ ▄█
███████ ██████ ██ ███████ ███ ██ ██████
██ ██ ██ ██ ██ ████ ██ ██ ██
█████ ██████ ██ █████ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ███████ ██ ████ ██████ ██
Thanks for visiting!
Let's Connect:
https://www.linkedin.com/in/jaynewd73/
`)
</script>
</body>
</html>