feat: add Docker deployment, design polish, and content update
- Add Dockerfile, nginx.conf, docker-compose.yml for containerized deployment - Improve typography with Pretendard font, larger hero, accent colors - Add Experience section (HI-ARC, ICPC, contests) - Add TOL project, enhance project descriptions - Update Skills with Backend category, more technologies - Add Solved.ac link, education period - Change nav logo to "tolelom", widen content area to 960px - Project card links now use domain labels as buttons Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.superpowers/
|
||||||
4
Dockerfile
Normal file
4
Dockerfile
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
FROM nginx:alpine
|
||||||
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
COPY . /usr/share/nginx/html
|
||||||
|
RUN rm /usr/share/nginx/html/Dockerfile /usr/share/nginx/html/nginx.conf /usr/share/nginx/html/docker-compose.yml 2>/dev/null || true
|
||||||
271
css/style.css
271
css/style.css
@@ -5,182 +5,276 @@
|
|||||||
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
|
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 1.6;
|
line-height: 1.7;
|
||||||
color: #333;
|
color: #2d2d2d;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
}
|
||||||
|
|
||||||
a { color: #333; text-decoration: none; }
|
a { color: #2d2d2d; text-decoration: none; }
|
||||||
a:hover { color: #0066cc; }
|
a:hover { color: #0055cc; }
|
||||||
|
|
||||||
img { max-width: 100%; display: block; }
|
img { max-width: 100%; display: block; }
|
||||||
|
|
||||||
/* === Layout === */
|
/* === Layout === */
|
||||||
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
|
.container { max-width: 960px; margin: 0 auto; padding: 0 40px; }
|
||||||
|
|
||||||
.section {
|
.section {
|
||||||
padding: 64px 0;
|
padding: 72px 0;
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
}
|
}
|
||||||
.section:last-child { border-bottom: none; }
|
.section:last-child { border-bottom: none; }
|
||||||
|
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: 1.25rem;
|
font-size: 1.35rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 28px;
|
||||||
color: #111;
|
color: #111;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* === Nav === */
|
/* === Nav === */
|
||||||
.nav {
|
.nav {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
background: rgba(255, 255, 255, 0.95);
|
background: rgba(255, 255, 255, 0.92);
|
||||||
backdrop-filter: blur(8px);
|
backdrop-filter: blur(12px);
|
||||||
|
-webkit-backdrop-filter: blur(12px);
|
||||||
border-bottom: 1px solid #eee;
|
border-bottom: 1px solid #eee;
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
padding: 0 24px;
|
padding: 0 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-inner {
|
.nav-inner {
|
||||||
max-width: 800px;
|
max-width: 960px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 56px;
|
height: 56px;
|
||||||
gap: 24px;
|
gap: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-logo {
|
.nav-logo {
|
||||||
font-weight: 700;
|
font-weight: 800;
|
||||||
font-size: 1rem;
|
font-size: 1.05rem;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
|
letter-spacing: -0.03em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link {
|
.nav-link {
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
color: #666;
|
color: #888;
|
||||||
|
font-weight: 500;
|
||||||
transition: color 0.2s;
|
transition: color 0.2s;
|
||||||
}
|
}
|
||||||
.nav-link:hover, .nav-link.active { color: #111; }
|
.nav-link:hover, .nav-link.active { color: #111; }
|
||||||
|
|
||||||
.nav-external::after { content: " ↗"; font-size: 0.75rem; }
|
.nav-external::after { content: " ↗"; font-size: 0.7rem; opacity: 0.6; }
|
||||||
|
|
||||||
/* === Hero === */
|
/* === Hero === */
|
||||||
.hero {
|
.hero {
|
||||||
padding: 80px 0 64px;
|
padding: 100px 0 72px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-name { font-size: 2rem; font-weight: 700; color: #111; }
|
.hero-name {
|
||||||
.hero-role { font-size: 1.1rem; color: #666; margin-top: 8px; }
|
font-size: 3rem;
|
||||||
|
font-weight: 800;
|
||||||
|
color: #111;
|
||||||
|
letter-spacing: -0.04em;
|
||||||
|
line-height: 1.1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-role {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: #555;
|
||||||
|
margin-top: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
.hero-tags {
|
.hero-tags {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: 10px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-top: 16px;
|
margin-top: 24px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
padding: 4px 12px;
|
padding: 5px 14px;
|
||||||
border-radius: 4px;
|
border-radius: 6px;
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
background: #f0f0f0;
|
background: #f4f4f5;
|
||||||
color: #555;
|
color: #444;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-links {
|
.hero-links {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-top: 24px;
|
margin-top: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
padding: 8px 20px;
|
padding: 10px 24px;
|
||||||
border-radius: 6px;
|
border-radius: 8px;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
|
font-weight: 500;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
color: #333;
|
color: #333;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background 0.2s, border-color 0.2s;
|
transition: all 0.2s;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.btn:hover { background: #f5f5f5; border-color: #bbb; }
|
.btn:hover { background: #f5f5f5; border-color: #bbb; }
|
||||||
.btn-primary { background: #111; color: #fff; border-color: #111; }
|
.btn-primary {
|
||||||
|
background: #111;
|
||||||
|
color: #fff;
|
||||||
|
border-color: #111;
|
||||||
|
}
|
||||||
.btn-primary:hover { background: #333; }
|
.btn-primary:hover { background: #333; }
|
||||||
|
|
||||||
/* === Project Card === */
|
/* === Project Card === */
|
||||||
.project-list { display: flex; flex-direction: column; gap: 16px; }
|
.project-list { display: flex; flex-direction: column; gap: 20px; }
|
||||||
|
|
||||||
.project-card {
|
.project-card {
|
||||||
padding: 20px;
|
padding: 24px;
|
||||||
border: 1px solid #eee;
|
border: 1px solid #e8e8e8;
|
||||||
border-radius: 8px;
|
border-radius: 12px;
|
||||||
transition: border-color 0.2s;
|
transition: border-color 0.2s, box-shadow 0.2s;
|
||||||
|
}
|
||||||
|
.project-card:hover {
|
||||||
|
border-color: #d0d0d0;
|
||||||
|
box-shadow: 0 2px 12px rgba(0,0,0,0.04);
|
||||||
}
|
}
|
||||||
.project-card:hover { border-color: #ccc; }
|
|
||||||
|
|
||||||
.project-card-header {
|
.project-card-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.project-card-name {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
color: #111;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
}
|
}
|
||||||
.project-card-name { font-weight: 600; font-size: 1.05rem; }
|
|
||||||
.project-card-category {
|
.project-card-category {
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
color: #999;
|
color: #0055cc;
|
||||||
|
font-weight: 600;
|
||||||
|
background: #eef4ff;
|
||||||
|
padding: 2px 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
.project-card-desc {
|
||||||
|
color: #555;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
margin-bottom: 14px;
|
||||||
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
.project-card-desc { color: #666; font-size: 0.925rem; margin-bottom: 12px; }
|
|
||||||
|
|
||||||
.project-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
|
.project-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
|
||||||
.project-card-tag {
|
.project-card-tag {
|
||||||
padding: 2px 8px;
|
padding: 3px 10px;
|
||||||
background: #f5f5f5;
|
background: #f4f4f5;
|
||||||
border-radius: 3px;
|
border-radius: 4px;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
color: #666;
|
color: #555;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-card-link {
|
.project-card-links {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
margin-top: 12px;
|
gap: 8px;
|
||||||
font-size: 0.85rem;
|
margin-top: 16px;
|
||||||
color: #0066cc;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
.project-card-link:hover { text-decoration: underline; }
|
|
||||||
|
.btn-sm {
|
||||||
|
padding: 6px 14px;
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
font-weight: 500;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
background: #fff;
|
||||||
|
color: #333;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
.btn-sm:hover { background: #f5f5f5; border-color: #bbb; color: #111; }
|
||||||
|
|
||||||
/* === Skills === */
|
/* === Skills === */
|
||||||
.skills-group { margin-bottom: 20px; }
|
.skills-group { margin-bottom: 24px; }
|
||||||
.skills-group:last-child { margin-bottom: 0; }
|
.skills-group:last-child { margin-bottom: 0; }
|
||||||
.skills-group-title {
|
.skills-group-title {
|
||||||
font-size: 0.8rem;
|
font-size: 0.75rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1.5px;
|
||||||
color: #999;
|
color: #999;
|
||||||
margin-bottom: 8px;
|
margin-bottom: 10px;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.skills-tags { display: flex; gap: 8px; flex-wrap: wrap; }
|
.skills-tags { display: flex; gap: 8px; flex-wrap: wrap; }
|
||||||
|
|
||||||
|
/* === Experience === */
|
||||||
|
.experience-list { display: flex; flex-direction: column; gap: 16px; }
|
||||||
|
|
||||||
|
.experience-item {
|
||||||
|
padding: 16px 20px;
|
||||||
|
border-left: 3px solid #e0e0e0;
|
||||||
|
transition: border-color 0.2s;
|
||||||
|
}
|
||||||
|
.experience-item:hover { border-left-color: #0055cc; }
|
||||||
|
|
||||||
|
.experience-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 12px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 1rem;
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-period {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: #999;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience-desc {
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
|
||||||
/* === Sitemap Cards === */
|
/* === Sitemap Cards === */
|
||||||
.sitemap-header {
|
.sitemap-header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 48px 0 32px;
|
padding: 56px 0 36px;
|
||||||
}
|
}
|
||||||
.sitemap-title { font-size: 1.5rem; font-weight: 700; }
|
.sitemap-title {
|
||||||
.sitemap-subtitle { color: #999; margin-top: 4px; }
|
font-size: 1.75rem;
|
||||||
|
font-weight: 800;
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
}
|
||||||
|
.sitemap-subtitle { color: #888; margin-top: 6px; font-size: 0.95rem; }
|
||||||
|
|
||||||
.sitemap-section-title {
|
.sitemap-section-title {
|
||||||
font-size: 0.9rem;
|
font-size: 0.8rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1.5px;
|
||||||
color: #999;
|
color: #999;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
@@ -189,14 +283,14 @@ img { max-width: 100%; display: block; }
|
|||||||
.card-grid {
|
.card-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
gap: 12px;
|
gap: 14px;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-card {
|
.site-card {
|
||||||
border: 1px solid #eee;
|
border: 1px solid #e8e8e8;
|
||||||
padding: 24px;
|
padding: 28px;
|
||||||
border-radius: 10px;
|
border-radius: 12px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
@@ -204,18 +298,19 @@ img { max-width: 100%; display: block; }
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.site-card:hover {
|
.site-card:hover {
|
||||||
border-color: #ccc;
|
border-color: #d0d0d0;
|
||||||
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
|
box-shadow: 0 4px 16px rgba(0,0,0,0.06);
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
|
.site-card-icon { font-size: 1.75rem; margin-bottom: 10px; }
|
||||||
.site-card-name { font-weight: 600; font-size: 0.95rem; }
|
.site-card-name { font-weight: 700; font-size: 1rem; color: #111; }
|
||||||
.site-card-desc { color: #999; font-size: 0.8rem; margin-top: 4px; }
|
.site-card-desc { color: #888; font-size: 0.85rem; margin-top: 6px; }
|
||||||
.site-card-sublink {
|
.site-card-sublink {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
color: #0066cc;
|
color: #0055cc;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Wrapper to keep card + sublink in one grid cell */
|
/* Wrapper to keep card + sublink in one grid cell */
|
||||||
@@ -224,28 +319,31 @@ img { max-width: 100%; display: block; }
|
|||||||
.infra-grid {
|
.infra-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr 1fr;
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
gap: 10px;
|
gap: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.infra-card {
|
.infra-card {
|
||||||
border: 1px solid #eee;
|
border: 1px solid #e8e8e8;
|
||||||
padding: 16px;
|
padding: 20px;
|
||||||
border-radius: 8px;
|
border-radius: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #666;
|
color: #666;
|
||||||
background: #fafafa;
|
background: #fafafa;
|
||||||
transition: border-color 0.2s;
|
transition: border-color 0.2s, box-shadow 0.2s;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.infra-card:hover { border-color: #ccc; }
|
.infra-card:hover {
|
||||||
.infra-card-icon { font-size: 1.2rem; }
|
border-color: #d0d0d0;
|
||||||
.infra-card-name { font-size: 0.85rem; margin-top: 4px; }
|
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
|
||||||
.infra-card-desc { font-size: 0.7rem; color: #aaa; margin-top: 2px; }
|
}
|
||||||
|
.infra-card-icon { font-size: 1.3rem; }
|
||||||
|
.infra-card-name { font-size: 0.85rem; margin-top: 6px; font-weight: 600; color: #444; }
|
||||||
|
.infra-card-desc { font-size: 0.72rem; color: #aaa; margin-top: 3px; }
|
||||||
|
|
||||||
/* === Footer === */
|
/* === Footer === */
|
||||||
.footer {
|
.footer {
|
||||||
padding: 32px 0;
|
padding: 40px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #999;
|
color: #999;
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
@@ -255,11 +353,14 @@ img { max-width: 100%; display: block; }
|
|||||||
|
|
||||||
/* === Responsive === */
|
/* === Responsive === */
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
|
.container { padding: 0 20px; }
|
||||||
|
.nav { padding: 0 20px; }
|
||||||
.nav-inner { gap: 16px; }
|
.nav-inner { gap: 16px; }
|
||||||
.nav-link { font-size: 0.8rem; }
|
.nav-link { font-size: 0.8rem; }
|
||||||
.hero { padding: 48px 0 40px; }
|
.hero { padding: 60px 0 48px; }
|
||||||
.hero-name { font-size: 1.5rem; }
|
.hero-name { font-size: 2rem; }
|
||||||
.section { padding: 40px 0; }
|
.hero-role { font-size: 1rem; }
|
||||||
|
.section { padding: 48px 0; }
|
||||||
.card-grid { grid-template-columns: 1fr; }
|
.card-grid { grid-template-columns: 1fr; }
|
||||||
.infra-grid { grid-template-columns: 1fr 1fr; }
|
.infra-grid { grid-template-columns: 1fr 1fr; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,28 +3,43 @@ const projects = [
|
|||||||
name: "One of the Plans (A301)",
|
name: "One of the Plans (A301)",
|
||||||
description: "Unity 기반 MMORPG 게임 프로젝트. 멀티플레이어 서버는 Go로 구현.",
|
description: "Unity 기반 MMORPG 게임 프로젝트. 멀티플레이어 서버는 Go로 구현.",
|
||||||
tags: ["Unity", "C#", "Go"],
|
tags: ["Unity", "C#", "Go"],
|
||||||
link: "https://a301.tolelom.xyz",
|
links: [
|
||||||
|
{ label: "a301.tolelom.xyz", url: "https://a301.tolelom.xyz" },
|
||||||
|
{ label: "GitHub", url: "https://github.com/tolelom" }
|
||||||
|
],
|
||||||
category: "게임"
|
category: "게임"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "No-Ill",
|
name: "No-Ill",
|
||||||
description: "노인 낙상 감지 및 외로움 방지를 위한 IoT 장치와 보호자 앱.",
|
description: "노인 낙상 감지 및 외로움 방지를 위한 IoT 장치와 보호자 앱. 센서 기반 낙상 감지 시스템과 보호자용 모니터링 웹/앱을 개발.",
|
||||||
tags: ["React", "Go", "IoT"],
|
tags: ["React", "Go", "IoT"],
|
||||||
link: "https://no-ill.tolelom.xyz",
|
links: [
|
||||||
|
{ label: "no-ill.tolelom.xyz", url: "https://no-ill.tolelom.xyz" },
|
||||||
|
{ label: "no-ill-app.tolelom.xyz", url: "https://no-ill-app.tolelom.xyz" }
|
||||||
|
],
|
||||||
category: "헬스케어"
|
category: "헬스케어"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "TOL",
|
||||||
|
description: "한글 프로그래밍 언어 개발 프로젝트. 3인 팀으로 진행하며 프로그래밍 언어 분야에 흥미를 가지게 된 계기. 순수 C++로 언어를 설계하고 구현.",
|
||||||
|
tags: ["C++", "Express.js", "MongoDB"],
|
||||||
|
links: [],
|
||||||
|
category: "언어 개발"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "SION",
|
name: "SION",
|
||||||
description: "Jetson 키트를 활용한 자율주행 및 모니터링 웹 페이지.",
|
description: "Jetson 키트를 활용한 자율주행 및 모니터링 웹 페이지.",
|
||||||
tags: ["Python", "Jetson", "Web"],
|
tags: ["Python", "Jetson", "Web"],
|
||||||
link: "https://sion.tolelom.xyz",
|
links: [
|
||||||
|
{ label: "sion.tolelom.xyz", url: "https://sion.tolelom.xyz" }
|
||||||
|
],
|
||||||
category: "IoT"
|
category: "IoT"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Neo-Slasher",
|
name: "Neo-Slasher",
|
||||||
description: "Unity 기반 액션 게임 프로젝트.",
|
description: "게임 개발 동아리 ExP에서 8인 팀으로 진행한 액션 게임. 프로그래밍 디렉터로 데이터 관리, 인터페이스 개발 및 전체 프로그래밍 과정을 담당.",
|
||||||
tags: ["Unity", "C#"],
|
tags: ["Unity", "C#"],
|
||||||
link: null,
|
links: [],
|
||||||
category: "게임"
|
category: "게임"
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
6
docker-compose.yml
Normal file
6
docker-compose.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
services:
|
||||||
|
web:
|
||||||
|
build: .
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
73
index.html
73
index.html
@@ -10,14 +10,16 @@
|
|||||||
<meta property="og:url" content="https://tolelom.xyz">
|
<meta property="og:url" content="https://tolelom.xyz">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>👨💻</text></svg>">
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>👨💻</text></svg>">
|
||||||
|
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css">
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="nav-inner">
|
<div class="nav-inner">
|
||||||
<a href="#" class="nav-logo">김성민</a>
|
<a href="#" class="nav-logo">tolelom</a>
|
||||||
<a href="#about" class="nav-link">About</a>
|
<a href="#about" class="nav-link">About</a>
|
||||||
<a href="#skills" class="nav-link">Skills</a>
|
<a href="#skills" class="nav-link">Skills</a>
|
||||||
|
<a href="#experience" class="nav-link">Experience</a>
|
||||||
<a href="#projects" class="nav-link">Projects</a>
|
<a href="#projects" class="nav-link">Projects</a>
|
||||||
<a href="#contact" class="nav-link">Contact</a>
|
<a href="#contact" class="nav-link">Contact</a>
|
||||||
<a href="/sitemap/" class="nav-link nav-external">Sitemap</a>
|
<a href="/sitemap/" class="nav-link nav-external">Sitemap</a>
|
||||||
@@ -42,7 +44,8 @@
|
|||||||
|
|
||||||
<section id="about" class="section">
|
<section id="about" class="section">
|
||||||
<h2 class="section-title">About</h2>
|
<h2 class="section-title">About</h2>
|
||||||
<p>홍익대학교 컴퓨터공학과에서 공부하며, 게임 개발과 웹 풀스택 개발을 하고 있습니다.</p>
|
<p>새로운 기술을 배우는 것을 좋아하며, 특히 언어 개발과 게임 제작에 관심이 많습니다. 효율적인 코드 작성법, 읽기 쉬운 코드에 대해 고민하는 것을 좋아합니다.</p>
|
||||||
|
<p style="margin-top: 12px;">홍익대학교 알고리즘 학회 HI-ARC 학회장을 역임했으며, ICPC 신촌 초급 강사와 멘토로 활동했습니다. 현재는 게임 서버 개발과 웹 풀스택 개발을 중심으로 다양한 프로젝트를 진행하고 있습니다.</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="skills" class="section">
|
<section id="skills" class="section">
|
||||||
@@ -50,11 +53,12 @@
|
|||||||
<div class="skills-group">
|
<div class="skills-group">
|
||||||
<div class="skills-group-title">Languages</div>
|
<div class="skills-group-title">Languages</div>
|
||||||
<div class="skills-tags">
|
<div class="skills-tags">
|
||||||
<span class="tag">C++</span>
|
<span class="tag">C/C++</span>
|
||||||
<span class="tag">Go</span>
|
<span class="tag">Go</span>
|
||||||
<span class="tag">C#</span>
|
<span class="tag">C#</span>
|
||||||
<span class="tag">JavaScript</span>
|
|
||||||
<span class="tag">Python</span>
|
<span class="tag">Python</span>
|
||||||
|
<span class="tag">JavaScript</span>
|
||||||
|
<span class="tag">Java</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="skills-group">
|
<div class="skills-group">
|
||||||
@@ -64,10 +68,20 @@
|
|||||||
<span class="tag">HTML/CSS</span>
|
<span class="tag">HTML/CSS</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="skills-group">
|
||||||
|
<div class="skills-group-title">Backend</div>
|
||||||
|
<div class="skills-tags">
|
||||||
|
<span class="tag">Go (Fiber)</span>
|
||||||
|
<span class="tag">Django</span>
|
||||||
|
<span class="tag">Express.js</span>
|
||||||
|
<span class="tag">Spring</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="skills-group">
|
<div class="skills-group">
|
||||||
<div class="skills-group-title">Game Engine</div>
|
<div class="skills-group-title">Game Engine</div>
|
||||||
<div class="skills-tags">
|
<div class="skills-tags">
|
||||||
<span class="tag">Unity</span>
|
<span class="tag">Unity</span>
|
||||||
|
<span class="tag">Unreal Engine</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="skills-group">
|
<div class="skills-group">
|
||||||
@@ -76,6 +90,48 @@
|
|||||||
<span class="tag">Docker</span>
|
<span class="tag">Docker</span>
|
||||||
<span class="tag">Caddy</span>
|
<span class="tag">Caddy</span>
|
||||||
<span class="tag">Linux</span>
|
<span class="tag">Linux</span>
|
||||||
|
<span class="tag">MongoDB</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section id="experience" class="section">
|
||||||
|
<h2 class="section-title">Experience</h2>
|
||||||
|
<div class="experience-list">
|
||||||
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">HI-ARC 학회장</span>
|
||||||
|
<span class="experience-period">2019</span>
|
||||||
|
</div>
|
||||||
|
<p class="experience-desc">홍익대학교 알고리즘 학회 HI-ARC 학회장</p>
|
||||||
|
</div>
|
||||||
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">HI-ARC 운영진</span>
|
||||||
|
<span class="experience-period">2022.01 ~ 2024.02</span>
|
||||||
|
</div>
|
||||||
|
<p class="experience-desc">학회 운영 및 스터디 관리</p>
|
||||||
|
</div>
|
||||||
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">ICPC 신촌 초급 강사 / 멘토</span>
|
||||||
|
<span class="experience-period">2020, 2022</span>
|
||||||
|
</div>
|
||||||
|
<p class="experience-desc">ICPC 신촌 Winter 초급 강사(2020) 및 멘토(2022) 활동</p>
|
||||||
|
</div>
|
||||||
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">제 1회 하이콘 출제 및 총괄</span>
|
||||||
|
<span class="experience-period">2019</span>
|
||||||
|
</div>
|
||||||
|
<p class="experience-desc">프로그래밍 대회 문제 출제 및 대회 운영 총괄</p>
|
||||||
|
</div>
|
||||||
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">SUAPC 2024 Winter</span>
|
||||||
|
<span class="experience-period">2024</span>
|
||||||
|
</div>
|
||||||
|
<p class="experience-desc">12등 (팀명: 하이아크 최고죠)</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@@ -87,7 +143,12 @@
|
|||||||
|
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<h2 class="section-title">Education</h2>
|
<h2 class="section-title">Education</h2>
|
||||||
<p>홍익대학교 컴퓨터공학과</p>
|
<div class="experience-item">
|
||||||
|
<div class="experience-header">
|
||||||
|
<span class="experience-title">홍익대학교 컴퓨터공학과</span>
|
||||||
|
<span class="experience-period">2018.03 ~ 2024.02</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<footer id="contact" class="footer">
|
<footer id="contact" class="footer">
|
||||||
@@ -95,6 +156,8 @@
|
|||||||
<a href="mailto:98kimsungmin@naver.com">98kimsungmin@naver.com</a>
|
<a href="mailto:98kimsungmin@naver.com">98kimsungmin@naver.com</a>
|
||||||
·
|
·
|
||||||
<a href="https://github.com/tolelom" target="_blank" rel="noopener">GitHub</a>
|
<a href="https://github.com/tolelom" target="_blank" rel="noopener">GitHub</a>
|
||||||
|
·
|
||||||
|
<a href="https://solved.ac/profile/tolelom" target="_blank" rel="noopener">Solved.ac</a>
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
13
js/main.js
13
js/main.js
@@ -7,9 +7,14 @@ function renderProjects() {
|
|||||||
return '<span class="project-card-tag">' + t + "</span>";
|
return '<span class="project-card-tag">' + t + "</span>";
|
||||||
}).join("");
|
}).join("");
|
||||||
|
|
||||||
var link = p.link
|
var links = "";
|
||||||
? '<a href="' + p.link + '" class="project-card-link" target="_blank" rel="noopener">사이트 방문 →</a>'
|
if (p.links && p.links.length > 0) {
|
||||||
: "";
|
links = '<div class="project-card-links">' +
|
||||||
|
p.links.map(function (l) {
|
||||||
|
return '<a href="' + l.url + '" class="btn btn-sm" target="_blank" rel="noopener">' + l.label + '</a>';
|
||||||
|
}).join("") +
|
||||||
|
"</div>";
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
'<div class="project-card">' +
|
'<div class="project-card">' +
|
||||||
@@ -19,7 +24,7 @@ function renderProjects() {
|
|||||||
"</div>" +
|
"</div>" +
|
||||||
'<p class="project-card-desc">' + p.description + "</p>" +
|
'<p class="project-card-desc">' + p.description + "</p>" +
|
||||||
'<div class="project-card-tags">' + tags + "</div>" +
|
'<div class="project-card-tags">' + tags + "</div>" +
|
||||||
link +
|
links +
|
||||||
"</div>"
|
"</div>"
|
||||||
);
|
);
|
||||||
}).join("");
|
}).join("");
|
||||||
|
|||||||
10
nginx.conf
Normal file
10
nginx.conf
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name localhost;
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,12 +10,13 @@
|
|||||||
<meta property="og:url" content="https://tolelom.xyz/sitemap/">
|
<meta property="og:url" content="https://tolelom.xyz/sitemap/">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>👨💻</text></svg>">
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>👨💻</text></svg>">
|
||||||
|
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css">
|
||||||
<link rel="stylesheet" href="../css/style.css">
|
<link rel="stylesheet" href="../css/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="nav-inner">
|
<div class="nav-inner">
|
||||||
<a href="/" class="nav-logo">김성민</a>
|
<a href="/" class="nav-logo">tolelom</a>
|
||||||
<a href="/" class="nav-link">← 포트폴리오</a>
|
<a href="/" class="nav-link">← 포트폴리오</a>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|||||||
Reference in New Issue
Block a user