-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
253 lines (240 loc) · 11.4 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hayden Kong</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="https://www.heliosps.com/wp-content/uploads/sites/4/2019/01/cropped-favicon-1.png" type="image/x-icon">
<!-- Google Fonts -->
<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=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: 'Poppins', sans-serif;
}
.navbar {
background-color: rgba(30, 30, 30, 0.8) !important;
backdrop-filter: blur(10px);
}
.hero {
height: 100vh;
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.hero h1 {
font-size: 4rem;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
#about {
background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
}
.skill-tag {
background-color: #4ecdc4;
color: #1a1a1a;
}
.card {
background-color: #2d2d2d;
border: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-primary {
background-color: #45b7aa;
border-color: #4ecdc4;
}
.btn-primary:hover {
background-color: #3d8e84;
border-color: #45b7aa;
}
.btn-outline-primary {
border-color: #4ecdc4;
color: #4ecdc4;
}
.btn-outline-primary:hover {
background-color: #4ecdc4;
color: #2d2d2d;
}
.input{
background-color: #2d2d2d;
color: #ffffff;
border: 1px solid #4ecdc4;
}
.input:active{
background-color: #2d2d2d;
color: #ffffff;
border: 1px solid #4ecdc4;
}
/* Dark mode form styles */
.form-control {
background-color: #2d2d2d;
border-color: #4ecdc4;
color: #ffffff;
}
.form-control:focus {
background-color: #3d3d3d;
border-color: #4ecdc4;
color: #ffffff;
box-shadow: 0 0 0 0.25rem rgba(78, 205, 196, 0.25);
}
.form-control::placeholder {
color: #999999;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="/index.html">Hayden Kong</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="/index.html#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://scrapbook.hackclub.com/HaydenKong">Scrapbook</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header id="home" class="hero d-flex align-items-center">
<div class="container text-center">
<h1 class="mb-3">Hi! I'm Hayden</h1>
<p class="lead">A teenage developer from Australia, passionate about HTML, CSS, JS & Python.</p>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-5">
<div class="container">
<h2 class="text-center mb-5">About Me</h2>
<div class="row align-items-center">
<div class="col-lg-6 mb-4 mb-lg-0">
<p>Hi! I'm Hayden, a 13-year-old teenage hacker based in South Australia. I develop websites and python apps for fun and currently operate PixelVerseIT and PixelVerseAI. Most of my work is Open Source to the public.</p>
<p>If you spot any errors or potential improvments in my projects, feel free to reach out to me at [email protected] or by the contact form below, or if you have any questions! I will be happy to help!</p>
<div class="d-flex flex-wrap mt-3">
<span class="skill-tag badge rounded-pill me-2 mb-2">HTML</span>
<span class="skill-tag badge rounded-pill me-2 mb-2">CSS</span>
<span class="skill-tag badge rounded-pill me-2 mb-2">JavaScript</span>
<span class="skill-tag badge rounded-pill me-2 mb-2">Python</span>
<span class="skill-tag badge rounded-pill me-2 mb-2">Open Source</span>
</div>
</div>
<div class="col-lg-6">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c3/Adelaide_-_SA_%2825091207887%29.jpg" alt="Hayden Kong" class="img-fluid rounded shadow">
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-5 bg-dark">
<div class="container">
<h2 class="text-center mb-5">My Projects</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card h-100">
<img src="img/starshiplander.png" class="card-img-top" alt="Project 1">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Rocket Lander Game</h5>
<p class="card-text flex-grow-1">Land the rocket while avoiding obstacles and running out of fuel!</p>
<div class="mt-auto">
<a href="https://pixelverseit.github.io/hackclub-starship-launcher-game-js" class="btn btn-primary me-2">Demo</a>
<a href="https://github.com/PixelVerseIT/hackclub-starship-launcher-game-js" class="btn btn-outline-primary">Code</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<img src="img/aichatbot.png" class="card-img-top" alt="Project 2">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Groq API AI Chatbot</h5>
<p class="card-text flex-grow-1">Chat with the ultra-fast Groq API and 4 models, including Meta Llama 3!</p>
<div class="mt-auto">
<a href="https://pixelverseit.github.io/hackclub-ai-chatbot-app-groqapi/" class="btn btn-primary me-2">Demo</a>
<a href="https://github.com/PixelVerseIT/hackclub-ai-chatbot-app-groqapi" class="btn btn-outline-primary">Code</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<img src="img/weatherapp.png" class="card-img-top" alt="Project 3">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Weather App</h5>
<p class="card-text flex-grow-1">Keep track of the weather and see daily forecasts with graphs and maps!</p>
<div class="mt-auto">
<a href="https://pixelverseit.github.io/hackclub-weather-app-htmlcssjs/" class="btn btn-primary me-2">Demo</a>
<a href="https://github.com/PixelVerseIT/hackclub-weather-app-htmlcssjs" class="btn btn-outline-primary">Code</a>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-4">
<a href="projects.html" class="btn btn-primary">View more projects</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-5">
<div class="container">
<h2 class="text-center mb-3">Contact Me</h2>
<p class="text-secondary text-center mb-4">Got questions about me? Need help with something tech related? Got some feedback? Feel free to contact me and I will respond via email as soon as I can!</p>
<div class="row justify-content-center">
<div class="col-md-8">
<form data-netlify="true" name="HK-Web-Contact-Form">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" placeholder="Your email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Your message" required></textarea>
</div>
<button type="submit" onclick="alert('Please email [email protected] instead. The contact form is not yet fully working! Sorry!')" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-center text-white py-4">
<p>© 2024 Hayden Kong. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>