Skip to content

Commit

Permalink
fix: font weight 수정 (regular to normal)
Browse files Browse the repository at this point in the history
  • Loading branch information
son-daehyeon committed Sep 19, 2024
1 parent 9a05b90 commit 317bb17
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/app/about-us/member/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const AboutUsMemberPage = () => {
<div>
<div className="flex flex-col items-center justify-center gap-6">
<h1 className="font-bold text-3xl text-center">&lt;회장단&gt;</h1>
<p className="font-regular text-lg text-center text-zinc-700]">
<p className="font-normal text-lg text-center text-zinc-700]">
전체 동아리 운영 기획 및 각 부서 업무 참여
</p>

Expand Down Expand Up @@ -93,7 +93,7 @@ const AboutUsMemberPage = () => {
{MEMBERS.map(({ title, description, filter, sort }) => (
<div className="flex flex-col items-center justify-center gap-6">
<h1 className="font-bold text-3xl text-center">&lt;{title}&gt;</h1>
<p className="font-regular text-lg text-center text-zinc-700]">{description}</p>
<p className="font-normal text-lg text-center text-zinc-700]">{description}</p>

<div className="flex flex-col gap-6">
{members
Expand Down
2 changes: 1 addition & 1 deletion src/app/about-us/we/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const AboutUsWePage = () => {
<div className="absolute bottom-[12vh] left-1/2 w-[300vw] h-[300vw] bg-white rounded-[47%] opacity-50 animate-rotate"></div>

<h1 className="z-10 text-center font-semibold text-3xl md:text-5xl md:leading-[64px]">
<span className="font-regular text-2xl md:text-5xl mb-8">나만의 서비스. 기획. 개발</span>
<span className="font-normal text-2xl md:text-5xl mb-8">나만의 서비스. 기획. 개발</span>
<br />
우리 안의 새로운 물결 WINK
</h1>
Expand Down
4 changes: 2 additions & 2 deletions src/app/activity/history/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const ActivityHistoryPage = () => {
<div className="flex flex-col items-center mt-32">
<div className="flex flex-col items-center justify-center">
<h1 className="font-bold text-4xl text-center mb-6">WINK, 우리들의 파도</h1>
<p className="font-regular text-xl text-center text-zinc-700">
<p className="font-normal text-xl text-center text-zinc-700">
행사 / 세미나 / 대회 활동 기록을 년도 별로 볼 수 있습니다.
</p>
</div>
Expand All @@ -78,7 +78,7 @@ const ActivityHistoryPage = () => {
<span className="flex items-center">
<FaCircle size={6} className="w-4" />
<span className="w-20 text-left font-medium">{item.date}</span>
<span className="flex-grow text-left font-regular">{item.title}</span>
<span className="flex-grow text-left font-normal">{item.title}</span>
</span>
{openItems.includes(`${yearData.year}-${index}`) ? <ArrowUp /> : <ArrowDown />}
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/app/activity/project/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const ActivityProjectPage = () => {
<div className="flex flex-col items-center">
<div className="flex flex-col items-center justify-center pt-32">
<h1 className="font-bold text-4xl text-center mb-6">WINK, 우리들의 파도</h1>
<p className="font-regular text-xl text-center text-zinc-700">나날히 성장해 가는 우리</p>
<p className="font-normal text-xl text-center text-zinc-700">나날히 성장해 가는 우리</p>
</div>

{/* Carousel 영역 */}
Expand Down
2 changes: 1 addition & 1 deletion src/app/activity/study/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const ActivityStudyPage = () => {
<div className="flex flex-col items-center">
<div className="flex flex-col items-center justify-center pt-32">
<h1 className="font-bold text-4xl text-center mb-6">WINK, 우리들의 파도</h1>
<p className="font-regular text-xl text-center text-zinc-700]">나날히 성장해 가는 우리</p>
<p className="font-normal text-xl text-center text-zinc-700]">나날히 성장해 가는 우리</p>
</div>

{/* 주목할 글 */}
Expand Down
6 changes: 3 additions & 3 deletions src/component/activity/StudyCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export const StudyCard: React.FC<StudyCardProps> = ({ image, link, title, conten
{/* 스터디 제목 및 설명 */}
<div className="flex flex-col gap-2.5 my-4">
<h2 className="font-bold text-xl max-w-screen-sm truncate">{title}</h2>
<p className="font-regular text-base text-slate-500 max-w-screen-sm truncate">{content}</p>
<p className="font-normal text-base text-slate-500 max-w-screen-sm truncate">{content}</p>
<div className="flex flex-row justify-between">
<p className="font-regular text-base max-w-screen-sm truncate">{link}</p>
<p className="font-regular text-base text-slate-500 max-w-screen-sm truncate">{author}</p>
<p className="font-normal text-base max-w-screen-sm truncate">{link}</p>
<p className="font-normal text-base text-slate-500 max-w-screen-sm truncate">{author}</p>
</div>
</div>

Expand Down

0 comments on commit 317bb17

Please sign in to comment.