볼드 빼고 색 죽이고

This commit is contained in:
암냥 2025-02-13 21:13:21 +09:00
commit 3d4a7281c0
3 changed files with 7 additions and 5 deletions

View file

@ -196,7 +196,7 @@ export default function Timeline() {
<AccordionContent className="pb-2 ps-7 text-foreground max-h-60 overflow-y-auto">
{events.filter(event => new Date(event.date).getFullYear() === year).map((event, index) => (
<div key={index} className="my-2">
<p className="text-md font-semibold fixed-width-number">{new Date(event.date).toLocaleDateString('en-US', { month: 'short', day: '2-digit' })} {event.category}</p>
<p className="flex flex-row"><p className="text-md font-semibold fixed-width-number">{new Date(event.date).toLocaleDateString('en-US', { month: 'short', day: '2-digit' })}</p><p className="text-md font-semibold fixed-width-number text-muted-foreground">{event.category}</p></p>
{event.link ? (
<Link to={event.link}>{event.description}</Link>
) : (

View file

@ -11,7 +11,7 @@ export default function Top() {
<div className="flex flex-col md:flex-row w-full md:w-[50%] h-full py-16 md:py-32">
<div className="w-full md:w-[40%] h-full flex flex-col justify-center items-center md:items-end md:pr-16">
<div className="text-center md:text-right">
<h1 className="text-5xl font-semibold ntypefont">Nam<br/>HyunSuk</h1>
<h1 className="text-5xl ntypefont">Nam<br/>HyunSuk</h1>
<p className="mt-4 text-xl">
<br/> .
</p>

View file

@ -3,9 +3,10 @@
@custom-variant dark (&:is(.dark *));
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@font-face {
font-family: 'NType82Headline';
src: url('https://f.imnya.ng/font/NType82-Headline.woff2') format('woff2');
font-family: 'NType82Headline';
src: url('https://f.imnya.ng/font/NType82-Headline.woff2') format('woff2');
}
.ntypefont {
@ -157,4 +158,5 @@
.fixed-width-number {
font-feature-settings: "tnum";
}
}