-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 1.9 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
<!doctype html>
<html lang="en">
<head>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-XML5X7KHME');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="https://cdn.jsdelivr.net/npm/dark-mode-toggle-component@1.1.2/dist/index.min.js"></script>
<link rel="stylesheet" href="/style.css">
<script type="module" src="src/components/LinkShortener.ts"></script>
<script type="module" src="src/components/ExternalClickableImage.ts"></script>
<title>SquishLink</title>
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon.png">
</head>
<body>
<header>
<nav>
<a href="https://chidinweke.be">Home</a>
<a href="https://chidinweke.be/articles/">Articles</a>
<a href="https://chidinweke.be/games/">Games</a>
</nav>
<dark-mode-toggle></dark-mode-toggle>
</header>
<main>
<section class="header-section">
<h1>SquishLink</h1>
<p>Making your links <span>smaller</span></p>
</section>
<link-shortener data-handler="fetch"></link-shortener>
</main>
<footer>
<section class="contact">
Reach me on
<external-clickable-image href="https://www.linkedin.com/in/chidi-nweke-a3835a201/">
<img src="/images/linkedin.png" slot="image">
</external-clickable-image>
<external-clickable-image href="https://www.instagram.com/chidinweke96/">
<img src="/images/instagram.png" slot="image">
</external-clickable-image>
<external-clickable-image href="https://github.com/ChidiRnweke/" id="github">
<img src="/images/github.png" data-alt-src="/squish/images/github-dark.png" slot="image" class="dark-toggle">
</external-clickable-image>
</section>
With ❤️ by Chidi Nweke.
</footer>
</body>
</html>