- Added Google Sans Code font to globals.css for improved typography. - Introduced new CSS variables for theming in globals.css, enhancing dark mode support. - Updated layout.tsx to include custom scrollbar styles from scrollbar.css. - Modified page.tsx to improve the "About" section with more engaging content. - Refactored NeoFetch component for better styling and layout consistency. - Commented out scroll behavior in Top component for smoother navigation. - Added new art.html file for visual representation in the NeoFetch component.
27 lines
1.4 KiB
TypeScript
27 lines
1.4 KiB
TypeScript
import NeoFetch from "@/components/NeoFetch";
|
|
import TimelineComponent from "@/components/timeline";
|
|
import Top from "@/components/Top";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Top />
|
|
<section id="terminal" className="h-screen">
|
|
<NeoFetch />
|
|
<div className="px-12 mt-8">
|
|
<h1 className="text-2xl font-bold mb-4 w-full">💕 About</h1>
|
|
<p>오직 <strong>호기심과 실행력</strong>으로만 성장해 온 <strong>개발자, 정보보안전문가</strong> 남현석입니다.</p>
|
|
<p><strong>초등학교 시절 운영체제</strong>에 흥미를 느껴 컴퓨터를 시작했고, 이후 프로그래밍에 관심을 갖게 되었습니다.</p>
|
|
<p><strong>초등학교 4학년 때 Python</strong>으로 프로그래밍을 시작했으며, 현재는 <strong>TypeScript</strong>를 주로 사용합니다.</p>
|
|
<p>최근에는 정보보안 분야 중 <strong>웹 해킹</strong>에 관심이 많습니다.</p>
|
|
<br />
|
|
<p>대표적인 프로젝트들은 아래와 같습니다.</p>
|
|
<a href="https://www.youtube.com/playlist?list=PLZeYZotn5_IOJDek6e35NKzUtJm09yxZD">Effect Playing Contest 2025 Broadcast Develop</a><br />
|
|
<a href="https://github.com/imnyang/today.isangjeong">today.isangjeong</a>
|
|
</div>
|
|
|
|
<TimelineComponent />
|
|
</section>
|
|
</main>
|
|
);
|
|
}
|