diff --git a/src/components/About.astro b/src/components/About.astro index 9951c2c..af80d23 100644 --- a/src/components/About.astro +++ b/src/components/About.astro @@ -1,28 +1,6 @@ --- -import { events } from "@/lib/events"; import AboutRow from "@/components/AboutRow.astro"; import DDay from "./DDay.astro"; - -const sortedEvents = [...events].sort((a, b) => b.date.localeCompare(a.date)); -const years = [...new Set(sortedEvents.map((event) => event.date.slice(0, 4)))]; -// biome-ignore lint/correctness/noUnusedVariables: Used in the Astro template below. -const eventsByYear = years.map((year) => ({ - year, - events: sortedEvents.filter((event) => event.date.startsWith(year)), -})); - -// biome-ignore lint/correctness/noUnusedVariables: Used in the Astro template below. -const getShortDate = (date: string) => { - const [, month, day] = date.split("-"); - return `${month}.${day}`; -}; - -const currentYear = new Date().getFullYear(); -// biome-ignore lint/correctness/noUnusedVariables: Used in the Astro template below. -const daysUntilYearEnd = Math.ceil( - (new Date(currentYear + 1, 0, 1).getTime() - Date.now()) / - (1000 * 60 * 60 * 24), -); ---
-

- 안녕하세요, 정보보안과 소프트웨어 엔지니어링을 주로하고 있는 - 암냥입니다. +

+ 👋 +

+

+ 안녕하세요. 정보보안과 소프트웨어 엔지니어링을 공부하는 암냥입니다.

-
- 생일 : -
- - 연락하기 - - -
-

저는...

-
-
+
+
+

지금까지

+
+
-
+
등등... -

을 이루어냈어요.

+

많은 여러가지의 활동을 해왔어요.

diff --git a/src/components/Header.astro b/src/components/Header.astro index 8fdf729..87cc6bd 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,9 +1,10 @@ --- const navigationItems = [ - { label: "Home", href: "#home", nodeId: "43:29" }, - { label: "About", href: "#about", nodeId: "43:30" }, - { label: "Projects", href: "#projects", nodeId: "43:32" }, - { label: "Timeline", href: "#timeline", nodeId: "43:36" }, + { label: "Home", href: "#home" }, + { label: "About", href: "#about" }, + { label: "Projects", href: "#projects" }, + { label: "Timeline", href: "#timeline" }, + { label: "Contact", href: "#contact" }, ] as const; const desktopLinkClass = @@ -33,7 +34,6 @@ const mobileLinkClass = {item.label}