-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
227 lines (208 loc) · 11 KB
/
index.html
File metadata and controls
227 lines (208 loc) · 11 KB
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sebastian Yeo</title>
<script src="https://cdn.tailwindcss.com"></script>
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script>
<style>
body {
font-family: 'Inter', sans-serif;
}
.section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible {
opacity: 1;
transform: translateY(0);
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.project-tag {
background-color: #374151;
color: #D1D5DB;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.875rem;
font-weight: 500;
}
</style>
</head>
<body class="bg-gray-900 text-gray-200">
<!-- Header & Navigation -->
<header id="header" class="bg-gray-900/80 backdrop-blur-sm fixed top-0 left-0 right-0 z-50 transition-all duration-300">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<a href="#home" class="text-2xl font-bold text-white hover:text-teal-400 transition-colors">SY</a>
<nav class="hidden md:flex space-x-8">
<a href="#about" class="text-gray-300 hover:text-teal-400 transition-colors">About</a>
<a href="#projects" class="text-gray-300 hover:text-teal-400 transition-colors">Projects</a>
<a href="#skills" class="text-gray-300 hover:text-teal-400 transition-colors">Skills</a>
<a href="#contact" class="text-gray-300 hover:text-teal-400 transition-colors">Contact</a>
</nav>
<button id="mobile-menu-button" class="md:hidden">
<i data-lucide="menu" class="w-6 h-6 text-white"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden px-6 pb-4">
<a href="#about" class="block py-2 text-gray-300 hover:text-teal-400">About</a>
<a href="#projects" class="block py-2 text-gray-300 hover:text-teal-400">Projects</a>
<a href="#skills" class="block py-2 text-gray-300 hover:text-teal-400">Skills</a>
<a href="#contact" class="block py-2 text-gray-300 hover:text-teal-400">Contact</a>
</div>
</header>
<main class="pt-20">
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center bg-gray-900 section">
<div class="container mx-auto px-6 text-center">
<img src="https://placehold.co/160x160/1F2937/FFFFFF?text=SY" alt="Profile Picture" class="w-40 h-40 rounded-full mx-auto mb-6 border-4 border-teal-400 shadow-lg">
<h1 class="text-5xl md:text-7xl font-bold text-white mb-4">Sebastian Yeo</h1>
<p class="text-xl md:text-2xl text-teal-400 mb-8">3rd Year BSc. Major in Computer Science at UBC</p>
<p class="max-w-3xl mx-auto text-gray-400 mb-10">
A passionate and disciplined developer with a background in military communications and a drive to solve complex problems through software. Currently exploring interests in machine learning, systems programming, and cybersecurity.
</p>
<div class="flex justify-center space-x-6">
<a href="https://github.com/khyeo1011" target="_blank" class="text-gray-400 hover:text-teal-400 transition-colors"><i data-lucide="github" class="w-8 h-8"></i></a>
<a href="https://www.linkedin.com/in/kyeo" target="_blank" class="text-gray-400 hover:text-teal-400 transition-colors"><i data-lucide="linkedin" class="w-8 h-8"></i></a>
</div>
</div>
</section>
<!-- About Me Section -->
<section id="about" class="py-20 bg-gray-800/50 section">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center text-white mb-12">About Me</h2>
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/3">
<img src="https://placehold.co/600x600/111827/7DD3FC?text=Still Choosing Portrait..." alt="About Me Image" class="rounded-lg shadow-2xl w-full">
</div>
<div class="md:w-2/3">
<p class="text-lg text-gray-300 mb-6">
Hello! I'm Sebastian, a Computer Science student at the University of British Columbia with a deep interest in building impactful software. My journey is driven by a fascination with creating robust systems, from developing a physics engine in C++ to engineering machine learning models to solve real-world health problems. I thrive on challenges that blend analytical thinking with creative problem-solving.
</p>
<p class="text-lg text-gray-300 mb-6">
I also served as a Sergeant in the Republic of Korea Army, where I led a small team and safeguarded military intelligence by managing secure communication channels. This experience developed my leadership, discipline, and performance under pressure; skills I now apply to my technical pursuits, and has also piqued my interest in competitive cybersecurity challenges with Maple Bacon.
</p>
<a href="#contact" class="inline-block bg-teal-500 text-white font-semibold px-6 py-3 rounded-lg hover:bg-teal-600 transition-all duration-300 shadow-md">
Get In Touch
</a>
</div>
</div>
</div>
</section>
<section id="projects" class="py-20 bg-gray-900 section">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center text-white mb-12">Projects</h2>
<div id="projects-container" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"></div>
<div id="show-more-container" class="text-center mt-8"></div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-800/50 section">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center text-white mb-12">Technical Skills</h2>
<div class="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div>
<h3 class="text-2xl font-semibold text-teal-400 mb-4">Languages</h3>
<ul class="space-y-2 text-gray-300">
<li>C</li>
<li>C++</li>
<li>Java</li>
<li>Python</li>
<li>R</li>
</ul>
</div>
<div>
<h3 class="text-2xl font-semibold text-teal-400 mb-4">Frameworks & Libraries</h3>
<ul class="space-y-2 text-gray-300">
<li>OpenGL</li>
<li>Swing</li>
<li>NumPy & Pandas</li>
<li>Matplotlib</li>
<li>Scikit-learn</li>
</ul>
</div>
<div>
<h3 class="text-2xl font-semibold text-teal-400 mb-4">Tools & Platforms</h3>
<ul class="space-y-2 text-gray-300">
<li>Git & GitHub</li>
<li>VSCode</li>
<li>Jupyter Notebook</li>
<li>JUnit</li>
<li>Jira</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900 section">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl font-bold text-white mb-4">Let's Connect!</h2>
<p class="max-w-2xl mx-auto text-gray-400 mb-8">
I'm currently open to new opportunities and collaborations. Feel free to reach out if you have a project in mind, want to connect, or just want to say hi!
</p>
<a href="mailto:khyeo81@gmail.com" class="inline-block bg-teal-500 text-white font-bold text-lg px-8 py-4 rounded-lg hover:bg-teal-600 transition-all duration-300 shadow-lg">
Say Hello
</a>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800/50">
<div class="container mx-auto px-6 py-6 text-center text-gray-400">
<p>© 2025 Sebastian Yeo. All Rights Reserved.</p>
</div>
</footer>
<script src="js/projects.js"></script>
<script>
// Lucide Icons
lucide.createIcons();
// Mobile Menu Toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu on link click
document.querySelectorAll('#mobile-menu a, .container a[href^="#"]').forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
// Header shadow on scroll
const header = document.getElementById('header');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('shadow-lg', 'bg-gray-900/80');
} else {
header.classList.remove('shadow-lg', 'bg-gray-900/80');
}
});
// Intersection Observer for section animations
const sections = document.querySelectorAll('.section');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, {
threshold: 0.1
});
sections.forEach(section => {
observer.observe(section);
});
// Render projects
document.addEventListener('DOMContentLoaded', renderProjects);
</script>
</body>
</html>