Skip to content

Commit

Permalink
Fix : Line break
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanghyeonYoon committed Aug 17, 2024
1 parent 5dfad42 commit 37a0616
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions components/2024/ui/infiniteMovingCards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export const InfiniteMovingCards = ({
<Icon />
</div>
<div className='relative z-20 flex flex-col gap-1'>
<span className='text-xl text-[#223B3A] font-normal'>{item.ko_quote}</span>
<span className='text-xl text-[#223B3A40] font-normal'>{item.en_quote}</span>
<span className='text-xl text-[#223B3A] font-normal whitespace-pre-wrap'>{item.ko_quote}</span>
<span className='text-xl text-[#223B3A40] font-normal whitespace-pre-wrap'>{item.en_quote}</span>
</div>
</li>
))}
Expand Down
12 changes: 6 additions & 6 deletions constants/speaker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const SPEAKERS: Speaker[] = [
{
name: "김정",
affiliation: "코드스쿼드 / CodeSquad",
ko_quote: "visionOS 시대를 준비하기 위한 Human-Space Interface",
ko_quote: `visionOS 시대를 준비하기 위한\nHuman-Space Interface`,
en_quote: "Human-Space Interface for the visionOS Era",
img: `${prefix}/assets/2024/images/speaker/JungKim.webp`,
},
Expand All @@ -26,14 +26,14 @@ export const SPEAKERS: Speaker[] = [
{
name: "Kohki Miki",
affiliation: "LY Corporation",
ko_quote: "Swift로 직관적인 개발자 도구 만들기",
ko_quote: `Swift로 직관적인 개발자 도구 \n만들기`,
en_quote: "Building Intuitive Developer Tools in Swift",
img: `${prefix}/assets/2024/images/speaker/Miki.webp`,
},
{
name: "Rudrank Riyam",
affiliation: "ㅤ",
ko_quote: "모든 곳에 위젯을 배치하고 픽셀도 남기지 않기",
ko_quote: `모든 곳에 위젯을 배치하고 \n한 픽셀도 남기지 않기`,
en_quote: "Widgets, Widgets Everywhere and Not a Pixel to Spare",
img: `${prefix}/assets/2024/images/speaker/Riyam.webp`,
},
Expand All @@ -53,14 +53,14 @@ export const SPEAKERS: Speaker[] = [
{
name: "조상호",
affiliation: "플리토 / Flitto",
ko_quote: "당신의 View가 버벅이는 이유 (feat. Instruments)",
ko_quote: `당신의 View가 버벅이는 이유 \n(feat. Instruments)`,
en_quote: "Why Your View Is Stuttering (feat. instruments)",
img: `${prefix}/assets/2024/images/speaker/SanghoCho.webp`,
},
{
name: "Cristian Díaz",
affiliation: "ㅤ",
ko_quote: "접근성을 위한 공간 인터랙션 탐색하기",
ko_quote: `접근성을 위한 공간 인터랙션 \n탐색하기`,
en_quote: "Exploring Accessible Spatial Interactions",
img: `${prefix}/assets/2024/images/speaker/Diaz.webp`,
},
Expand All @@ -74,7 +74,7 @@ export const SPEAKERS: Speaker[] = [
{
name: "Riana Soumi",
affiliation: "DeNA",
ko_quote: "Swift Testing 만나보기: iOS 개발자의 테스트 방식 변화",
ko_quote: `Swift Testing 만나보기: \niOS 개발자의 테스트 방식 변화`,
en_quote: "Meet Swift Testing: Transforming the Way iOS Developers Test",
img: `${prefix}/assets/2024/images/speaker/Soumi.webp`,
},
Expand Down

0 comments on commit 37a0616

Please sign in to comment.