Skip to content

Commit 74da575

Browse files
committed
불필요한 인덱스 주석 처리 및 디자인 일부 수정
1 parent c13c68f commit 74da575

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

src/pages/About.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ const About = () => {
7777
<li>팀 프로젝트를 통한 요구사항 분석, API 명세서 작성, 배포 경험</li>
7878
</ul>
7979
</div>
80-
81-
<h2>Why Backend Developer?</h2>
82-
<div className="why-backend-item">
80+
{/* <div className="why-backend-item">
8381
<h3>비즈니스와 기술을 연결하는 개발자</h3>
8482
<p>
8583
다양한 현장 경험을 통해 실제 비즈니스 문제를 이해하고, 이를 기술로 해결하는 백엔드 개발자가 되고자 합니다.<br />
@@ -101,7 +99,7 @@ const About = () => {
10199
다양한 실무 경험을 통해 길러진 상황 대처 능력과 문제 해결 능력<br />
102100
사용자 관점에서 생각하고 최적의 솔루션을 찾는 개발자
103101
</p>
104-
</div>
102+
</div> */}
105103
</div>
106104
</motion.div>
107105
);

src/pages/Skills.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010

1111
.skill-category h3 {
1212
color: #ccd6f6;
13-
border-bottom: 2px solid #64ffda;
1413
padding-bottom: 10px;
15-
margin-bottom: 20px;
14+
margin-bottom: 10px;
1615
}
1716

1817
.skills-grid {

src/pages/Skills.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ const skillCategories = [
4848
title: 'Databases/ORM',
4949
skills: [
5050
{ logoUrl: 'https://static.cdnlogo.com/logos/m/10/mysql.svg', proficiency: 70 },
51-
{ logoUrl: redisLogo, proficiency: 50 },
52-
{ logoUrl: jpaLogo, proficiency: 50 }
53-
51+
{ logoUrl: jpaLogo, proficiency: 50 },
52+
{ logoUrl: redisLogo, proficiency: 50 }
5453
],
5554
},
5655
{
@@ -73,6 +72,7 @@ const Skills = () => {
7372
transition={pageTransition}
7473
className="section"
7574
>
75+
<h2>Stacks</h2>
7676
<div className="category-grid">
7777
{skillCategories.map((category, index) => (
7878
<div key={index} className="skill-category">

0 commit comments

Comments
 (0)