-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (95 loc) · 5.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-store" />
<meta name="description" content="Brodie Kirby Resume">
<meta name="keywords" content="HTML, CSS, JavaScript, Resume">
<meta name="author" content="Brodie Kirby">
<link href="./src/built.css" rel="stylesheet">
<title>Brodie Kirby Links Page</title>
</head>
<body class="topograph-bg flex flex-col min-h-screen">
<header>
</header>
<main class="flex-grow">
<div class="bg-transparent py-10">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-center items-center md:space-x-6">
<!-- Logo -->
<div class="md:w-1/12 w-1/2 p-4">
<img src="./images/logo.png" alt="Kirby-b Logo"
class="max-w-full h-auto">
</div>
</div>
<br>
<div class="flex flex-col md:flex-row justify-center items-center md:space-x-6">
<!-- Basic Links -->
<div class="md:w-2/6 p-4 bg-white border-4 border-rose-900 rounded-lg shadow-lg">
<div class="container mx-auto px-4">
<div class="flex flex-col justify-center items-center text-2xl font-sans m-4 font-semibold">
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/github-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://github.com/kirby-b" class="hover:text-red-600" target="_blank">Github</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/arduino-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://projecthub.arduino.cc/kirby-b" class="hover:text-red-600" target="_blank">Arduino Makers Hub</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/linkedin-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://www.linkedin.com/in/brodie-kirby-1078bb2a7/" class="hover:text-red-600" target="_blank">Linked In</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/leetcode-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://leetcode.com/u/Kirby-B/" class="hover:text-red-600" target="_blank">LeetCode</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/stackoverflow-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://stackoverflow.com/users/24921093/brodie-kirby" class="hover:text-red-600" target="_blank">Stack Overflow</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/codepen-icon.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://codepen.io/kirby-b" class="hover:text-red-600" target="_blank">Codepen</a></div>
<br>
<div class="md:w-1/5 w-1/2 p-4">
<img src="./images/coffee.png" alt="Github Logo" class="max-w-full h-auto">
</div>
<div><a href="https://www.buymeacoffee.com/Kirbyb" class="hover:text-red-600" target="_blank">BuyMeACoffee</a></div>
</div>
</div>
</div>
</div>
<br>
<div class="flex flex-col md:flex-row justify-center items-center md:space-x-6">
<!-- Websites I have made -->
<div class="md:w-2/6 p-4 bg-white border-4 border-rose-900 rounded-lg shadow-lg">
<div class="text-center text-2xl pb-2 font-bold italic">
Websites Made By Me
</div>
<p class="text-center text-xl font-sans m-4 font-semibold">
<a href="https://kirby-b.github.io/WebBasedProjects/" class="hover:text-red-600 underline underline-offset-4 decoration-slate-500" target="_blank">Web Based Projects</a>
<br><br>
<a href="https://kirby-b.github.io/" class="hover:text-red-600 underline underline-offset-4 decoration-slate-500" target="_blank">Personal Website</a>
<br><br>
<a href="https://github.com/kirby-b/Custom-Links-Page" class="hover:text-red-600 underline underline-offset-4 decoration-slate-500" target="_blank">This websites source code</a>
</p>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-gradient-to-r from-black to-red-950 text-white text-center py-6">
<div class="max-w-6xl mx-auto px-4">
<p class="text-sm">© 2025 Brodie Kirby.</p>
</div>
</footer>
</body>
</html>