-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
101 lines (74 loc) · 4.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<!--
To change the theme, change the class on the html tag below to one of:
- theme-auto: Automatically switches based on user's system preferences
- theme-light: Forces light theme
- theme-dark: Forces dark theme
-->
<html class="theme-dark" lang="en"> <!-- Update`class="theme-auto" with your preference -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page Title - Change this to your name/brand (50-60 characters recommended) -->
<title>Hey! It's Justin!</title>
<link rel="icon" type="image/x-icon" href="/images/avatar.png"> <!-- Update this with your own favicon -->
<meta name="description" content="Find me (Justin Smith) online! A list of links to all my different online profiles.">
<meta name="author" content="Justin Smith">
<meta name="og:title" content="Hey! It's Justin's... Little Links!">
<meta name="og:description" content="Find me (Justin Smith) online! A list of links to all my different online profiles.">
<meta name="og:type" content="website">
<meta name="og:image" content="/images/avatar.png">
<meta name="og:url" content="https://links.justinsmith.sh">
<meta name="keywords" content="software engineer, dad, husband, coding, building, learning">
<meta rel="canonical" href="https://links.justinsmith.sh">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/brands.css">
<!-- Favicons -->
<link rel="icon" type="image/png" href="images/avatar.png">
<!-- Umami Analytics -->
<script defer src="https://cloud.umami.is/script.js" data-website-id="8c93b038-53e9-4bf6-b5f9-0f29716bb73d"></script>
</head>
<body>
<div class="container">
<div class="column">
<!--
By default, the Avatar is rounded. Use the following:
- avatar--rounded: Automatically rounds the image
- avatar--soft: Slightly rounds the image
- avatar--none: Removes any rounding
Be sure to replace the src with your own image path and update the alt text
-->
<img class="avatar avatar--none" src="images/avatar.png" srcset="images/avatar.png" alt="Justin Smith">
<!-- Replace with your name or brand -->
<h1 tabindex="0">
<div>Justin Smith</div>
</h1>
<!-- Add a short description about yourself or your brand -->
<p tabindex="0">Currently turning data challenges into streamlined solutions. I design real-time pipelines, event-driven systems, and architectures that perform and scale. Problem solver, tech enthusiast, and team player. Secret PCL Clearance — trustworthy and ready to deliver. 🚀</p>
<!-- All your buttons go here -->
<div class="button-stack" role="navigation">
<h2>Professional</h2>
<!-- Blog -->
<a class="button button-default" href="https://justinsmith.sh" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/blog.svg" alt="Blog Icon">Blog</a>
<!-- Resume -->
<a class="button button-white" href="https://resume.justinsmith.sh" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/generic-blog.svg" alt="Resume" style="filter: brightness(0);">Resume</a>
<!-- Digital Garden -->
<a class="button button-purple" href="https://garden.justinsmith.sh" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/digital-garden.svg" alt="Digital Garden">Digital Garden</a>
<!-- GitHub -->
<a class="button button-github" href="https://github.com/JustinASmith" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/github.svg" alt="GitHub Logo">GitHub</a>
<!-- LinkedIn -->
<a class="button button-linked" href="https://www.linkedin.com/in/justin-a-smith662" target="_blank" rel="noopener" role="button"><img class="icon" aria-hidden="true" src="images/icons/linkedin.svg" alt="LinkedIn Logo">LinkedIn</a>
<h2>Contact</h2>
<!-- Email -->
<a class="button button-apple-music-alt" href="mailto:[email protected]" role="button"><img class="icon" aria-hidden="true" src="images/icons/email.svg" alt="Email Logo">Email</a>
</div>
<!-- Feel free to add your own footer information, including updating `privacy.html` to reflect how your LittleLink fork is set up -->
<footer>
<a href="privacy.html">Privacy Policy</a> | Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink</a>
</footer>
</div>
</div>
</body>
</html>