diff --git a/apps/site/src/components/Typography.astro b/apps/site/src/components/Typography.astro index f73d68a..3a0063d 100644 --- a/apps/site/src/components/Typography.astro +++ b/apps/site/src/components/Typography.astro @@ -13,18 +13,34 @@ const { c } = Astro.props;

{c.eyebrow}

{c.h2}

{c.lead}

-

{c.body}

- {/* 주장을 글로 하지 않고 실물로 보여준다. 두 문단의 차이는 word-break 한 줄뿐이다 */} -
-
-

{c.demoLabels[0]}

-

{c.demoText}

-
-
-

{c.demoLabels[1]}

-

{c.demoText}

-
+ {/* + 주장을 글로 하지 않고 실물로 보여준다. + + 한때 word-break 하나만 두 칼럼으로 비교했는데, 어절이 짧아 두 쪽이 + 같은 자리에서 끊겼다 — 줄 수도 높이도 똑같았다. 차이가 0 인 비교는 + 증명이 아니라 주장의 반증이다. 셋으로 늘리고, 잘리는 긴 어절을 넣고, + 폭을 좁혀 실제로 갈리게 만들었다. + */} +
+ { + c.demos.map((d) => ( +
+

{d.title}

+
+
+

{d.badLabel}

+

{c.sample}

+
+
+

{d.goodLabel}

+

{c.sample}

+
+
+

{d.note}

+
+ )) + }