Switch 너→당신 (formal address) + handle @triplepick_ai→@triplepickai

- 너 reads as condescending (하대) in Korean, esp. for older viewers we
  optimized readability for; unify on 당신 to match product UI voice.
- Remove underscore from social handle across footer/before page.
- User accent on /before: amber 🟠 → brand point purple 🟣.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
main
Haewon Kam 2026-06-10 16:59:10 +09:00
parent 596ed9c094
commit 7a375ee32f
5 changed files with 7 additions and 7 deletions

View File

@ -157,7 +157,7 @@ export default function Before() {
{/* Your pick */}
<section id="pick" style={{ marginTop: 20, scrollMarginTop: 80 }}>
<h2 style={{ fontSize: 14, fontWeight: 800, marginBottom: 8 }}> <span style={{ color: C.amber }}>🟠</span></h2>
<h2 style={{ fontSize: 14, fontWeight: 800, marginBottom: 8 }}> <span style={{ color: "#a65eff" }}>🟣</span></h2>
<div style={{ ...card, padding: 16 }}>
<div style={{ display: "grid", gridTemplateColumns: "1fr 1fr 1fr", gap: 6, background: C.bg2, borderRadius: 8, padding: 4 }}>
{([["A", "한국 승"], ["D", "무승부"], ["B", "체코 승"]] as [string, string][]).map(([v, l]) => (
@ -220,7 +220,7 @@ export default function Before() {
<footer style={{ marginTop: 32, borderTop: `1px solid ${C.line}`, paddingTop: 20 }}>
<p style={{ fontSize: 11, color: C.muted, lineHeight: 1.6 }}> AIO2O AI . GPT·Claude·Gemini .</p>
<p style={{ fontSize: 10, color: `${C.muted}cc`, marginTop: 8, lineHeight: 1.6 }}> · · . AI .</p>
<div style={{ marginTop: 12, display: "flex", justifyContent: "space-between", fontSize: 10, color: C.muted }}><span>© 2026 TriplePick · AIO2O</span><span>@triplepick_ai</span></div>
<div style={{ marginTop: 12, display: "flex", justifyContent: "space-between", fontSize: 10, color: C.muted }}><span>© 2026 TriplePick · AIO2O</span><span>@triplepickai</span></div>
</footer>
</main>
</div>

View File

@ -17,7 +17,7 @@ export const metadata: Metadata = {
twitter: {
card: "summary_large_image",
title: "AI 셋이 갈렸다 — TriplePick 2026",
description: "GPT vs Claude vs Gemini vs . 지금 픽하고 AI와 겨뤄요.",
description: "GPT vs Claude vs Gemini vs 당신. 지금 픽하고 AI와 겨뤄요.",
},
};

View File

@ -63,7 +63,7 @@ export default async function MatchPage({
text:
lang === "en"
? `${hook} — see all 3 AI picks and make yours!`
: `${hook} — AI 셋의 예측을 보고 너의 픽을 찍어봐!`,
: `${hook} — AI 셋의 예측을 보고 당신의 픽을 찍어보세요!`,
}}
/>

View File

@ -106,8 +106,8 @@ export default function Arena({
: `I picked ${me} — different from all 3 AIs! You? — TriplePick`;
}
return sameAI
? `나는 ${me}. ${sameAI}와 같은 선택! 너는? — TriplePick`
: `나는 ${me}. AI 셋과 다 다른 선택! 너는? — TriplePick`;
? `나는 ${me}. ${sameAI}와 같은 선택! 당신은? — TriplePick`
: `나는 ${me}. AI 셋과 다 다른 선택! 당신은? — TriplePick`;
}, [outcome, scoreA, scoreB, matched, aShort, bShort, lang]);
const copyLink = async () => {

View File

@ -17,7 +17,7 @@ export default function Footer({ lang = "ko" }: { lang?: Lang }) {
</div>
<div className="mt-3 text-[10px] text-white/70">
© 2026 TriplePick · AIO2O · @triplepick_ai
© 2026 TriplePick · AIO2O · @triplepickai
</div>
</footer>
);