-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (130 loc) · 8.88 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en" id="main-html">
<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 Portfolio Main Page</title>
</head>
<body id="main-body" class="flex flex-col min-h-screen circuit-bg"> <!--I dont know how to get it to work the way I want so it will just add the dark version and remove it as needed-->
<header class="bg-gradient-to-r from-rose-700 to-blue-700 text-white">
<div class="max-w-6xl mx-auto px-4 py-4 flex justify-between items-center">
<!-- Logo on the left -->
<div class="w-1/4 max-w-xs flex-shrink-0">
<a href="/index.html"><img src="/media/logo.png" alt="My Logo" class="size-14"></a>
</div>
<!-- Links on the right -->
<div class="flex md:flex-row flex-col space-x-4">
<nav class="flex space-x-4">
<a href="/pages/Work.html" class="md:text-base text-xs hover:text-purple-300">Work</a>
<a href="/pages/ContactInfo.html" class="md:text-base text-xs hover:text-purple-300">Contact Info</a>
<a href="/pages/WakaStats.html" class="md:text-base text-xs hover:text-purple-300">WakaTime</a>
<a href="https://github.com/kirby-b" class="md:text-base text-xs hover:text-purple-300" target="_blank">Github</a>
</nav>
</div>
</div>
</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">
<!-- Bio Section -->
<div class="md:w-3/4 p-4 bg-white border-2 border-gray-300 rounded-lg shadow-lg">
<div class="text-center text-2xl text-black">
<b>WHO AM I</b>
</div>
<p class="text-xl font-sans m-4 text-black">
My name is Brodie Kirby, and I am a college student who is studying Computer Programming. In my free time I like to program and experiment with various other technology (Mini PCs, building computers,
3d printing, etc.). I have experimented with many different branches of programming, and don't plan on stopping soon. As of right now I have the most experience with Game Development, Python Programming, and Web
Development. All of my projects (for the most part) end up on github or some other code sharing platform, so if you are interested please check it out.
<br><br>
The biggest help on my path in the technology world has been the Bay Arenac ISD Career Center. While there I have earned a Student of the Year Award two years in a row, completed certifications
from certiport, and furthered technical skills. The BAISD Career Center has also helped advance my skills by enrolling me as a member of The Business Professionals of America. As a member of BPA I ran for and won a position
at our local chapter (Michigan Region 7) as an officer , competed on multiple levels of competition, acted as a voting delegate, and won many awards (see below).
<br><br>
I am currently working on learning as many branches of programming as possible and I have found a few I am actively pursuing. I have the most experience with Web Development, but my current dream
job would be in Software Engineering or Data Analytics. I have found that not only am I good at doing tasks related to these subjects, but I actually have fun doing it.
</p>
</div>
</div>
<br>
<div class="flex flex-col md:flex-row justify-center items-center md:space-x-6">
<!-- Certs Section -->
<div class="md:w-1/2 p-4 bg-white border-2 border-gray-300 rounded-lg shadow-lg">
<div class="text-center text-2xl text-black">
<a href="https://www.credly.com/users/brodie-kirby" class="hover:text-purple-300" target="_blank"><b>CERTIFICATIONS AND AWARDS</b></a>
</div>
<p class="text-xl font-sans m-4 text-black">
It Specialist - Python (Certiport)<br>
It Specialist - Computational Thinking (Certiport)<br>
It Specialist - Data Analytics (Certiport)<br>
It Specialist - Software Development (Certiport)<br>
It Specialist - HTML & CSS (Certiport)<br>
<br>
Python Programming - 3rd (2022, BPA Regionals)<br>
Java Programming - 4th (2022, BPA Regionals)<br>
SQL Concepts - 2nd (2023, BPA Regionals)<br>
Computer Programming Concepts - 4th (2023, BPA Regionals)<br>
Web Application Team Virtual - Top 5 Competitor (2024, BPA Nationals)
</p>
</div>
<!-- Skills Section -->
<div class="md:w-1/2 p-4 bg-white border-2 border-gray-300 rounded-lg shadow-lg">
<div class="text-center text-2xl text-black">
<b>SKILLS</b>
</div>
<p class="text-xl font-sans m-4 text-center text-black">
<br><span class="font-semibold">Major Skills</span><br>
Python | Computer Terminology | Java | Godot Programming | Software Development | Code Conversion | Automation & Scripting |
HTML | CSS | Web Development | Data Analysis | Templating | PHP | Laravel | TailwindCSS | Arduino | Pc Building | Raspberry Pi |
Javascript | GitHub Setup & Version Control | File Management | Pc Troubleshooting | VSCode Setup & Use | Linux Setup & Use | C# |
Sprite Sheets
<br><br><span class="font-semibold">Minor Skills</span><br>
Ruby | C++ | Bash | GO | Diagram & Blueprint Creation | Cybersecurity | SQL | PostgreSQL | CLI Use | 3d Models | Node.js | Bootstrap | React | Docker |
Video Editing | Office 365 Use | Photo Editing | CAD | Julia | Flask
</p>
</div>
</div>
<br>
<div class="flex flex-col md:flex-row justify-center items-center md:space-x-6">
<!-- Education -->
<div class="md:w-1/2 p-4 bg-white border-2 border-gray-300 rounded-lg shadow-lg">
<div class="text-center text-2xl text-black">
<b>EDUCATION</b>
</div>
<p class="text-xl font-sans m-4 text-black">
- Bay City Western High school<br>
- BAISD Career Center for Computer Programming<br>
- Currently attending Western Governors University
</p>
</div>
<!-- Memberships -->
<div class="md:w-1/2 p-4 bg-white border-2 border-gray-300 rounded-lg shadow-lg">
<div class="text-center text-2xl text-black">
<b>MEMBERSHIPS</b>
</div>
<p class="text-xl font-sans m-4 text-black">
- Business Professionals of America (2022 - 2024)<br>
- Hack Club
</p>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-gradient-to-r from-blue-700 to-rose-700 text-white text-center py-6">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-center space-x-6">
<a href="/pages/Work.html" class="hover:text-purple-300">Work</a>
<a href="/pages/ContactInfo.html" class="hover:text-purple-300">Contact Info</a>
<a href="/pages/WakaStats.html" class="hover:text-purple-300">WakaTime</a>
</div><!--Links to other pages-->
<p class="mt-6 text-sm">© 2024 Brodie Kirby.</p>
</div>
</footer>
</body>
</html>