Skip to content

Commit 761a6b2

Browse files
committed
feat: add Notion career page button to About Me section
1 parent 2d3326b commit 761a6b2

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

pages/about.tsx

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import Header from '../components/Header';
22
import Footer from '../components/Footer';
3-
import {Briefcase, GraduationCap, Award, Info, List} from 'lucide-react';
3+
import { Briefcase, GraduationCap, Award, Info, Home, BookOpen } from 'lucide-react';
44
import Link from "next/link";
5-
import { Home } from 'lucide-react';
65

76
export default function About() {
87
return (
@@ -36,6 +35,16 @@ export default function About() {
3635
<p>현재는 <strong>NCSOFT</strong>에서 커뮤니티 플랫폼을 담당하며, <strong>150+ API를 gRPC + Service Mesh</strong> 구조로 운영하고 있어요.</p>
3736
<p>새로운 기술을 배우는 데 거리낌이 없고, <strong>Deep Dive 분석</strong>을 즐깁니다.</p>
3837
<p>코드 리뷰, 정적/통합 테스트 자동화 환경에서 일하며, 더 나은 프로세스를 제안합니다.</p>
38+
<div className="pt-2">
39+
<a
40+
href="https://www.notion.so/eottabom/18bf74cd685d804a8fa2e4cd21e77b60"
41+
target="_blank"
42+
rel="noopener noreferrer"
43+
className="inline-block bg-blue-600 hover:bg-blue-700 text-white font-semibold px-6 py-2 rounded transition"
44+
>
45+
Notion 경력기술서 보기
46+
</a>
47+
</div>
3948
</div>
4049
</section>
4150

@@ -105,6 +114,17 @@ export default function About() {
105114
<Home className="w-6 h-6 text-gray-800"/>
106115
</Link>
107116

117+
{/* 노션으로 이동 */}
118+
<a
119+
href="https://eottabom.notion.site/18bf74cd685d804a8fa2e4cd21e77b60"
120+
target="_blank"
121+
rel="noopener noreferrer"
122+
className="fixed bottom-20 right-6 z-50 bg-white border border-gray-300 rounded-lg shadow-md p-3 hover:shadow-lg transition"
123+
aria-label="Notion으로 이동"
124+
>
125+
<BookOpen className="w-6 h-6 text-gray-800" />
126+
</a>
127+
108128
<Footer />
109129
</div>
110130
);

0 commit comments

Comments
 (0)