diff --git a/components/Ado2Ad.tsx b/components/Ado2Ad.tsx
index ce4a8d9..c6920bf 100644
--- a/components/Ado2Ad.tsx
+++ b/components/Ado2Ad.tsx
@@ -12,12 +12,18 @@ export default function Ado2Ad({ lang = "ko" }: { lang?: Lang }) {
href="https://ado2.o2osolution.ai/"
target="_blank"
rel="noopener noreferrer"
- className="flex flex-col items-center justify-center gap-1 rounded-full bg-[#A65EFF] px-6 py-3 text-center transition active:scale-[0.99]"
+ className="flex items-center justify-between gap-3 rounded-full bg-[#A65EFF] px-6 py-3 transition active:scale-[0.99]"
style={{ boxShadow: "0 10px 28px rgba(166,94,255,0.40)" }}
>
-
-
- {t.ado2Tagline}
+
+
+
+ {t.ado2Tagline}
+
+
+
+ {t.ado2Cta}
+ →
diff --git a/lib/i18n.ts b/lib/i18n.ts
index 176aa9e..56171f7 100644
--- a/lib/i18n.ts
+++ b/lib/i18n.ts
@@ -90,6 +90,7 @@ type Dict = {
adLabel: string;
ado2Tagline: string;
ado2Sub: string;
+ ado2Cta: string;
};
export const DICT: Record = {
@@ -146,8 +147,9 @@ export const DICT: Record = {
footerDisc3: "100만 원 이벤트는 무료 참여형 챌린지입니다. 지급·동점 처리 조건은 별도 약관에 따릅니다. 이메일은 결과·이벤트 알림 목적으로만 사용됩니다.",
hook: (a, b) => `${a} vs ${b}, AI의 선택은 갈렸다`,
adLabel: "광고",
- ado2Tagline: "콘텐츠 마케팅 자동화 플랫폼",
- ado2Sub: "Content Marketing Automation Platform →",
+ ado2Tagline: "AI 마케팅 자동화 플랫폼",
+ ado2Sub: "AI Marketing Automation Platform →",
+ ado2Cta: "사용해보기",
},
en: {
heroPill: "AI-powered World Cup 2026 match predictions",
@@ -202,8 +204,9 @@ export const DICT: Record = {
footerDisc3: "The ₩1,000,000 event is a free-to-enter challenge. Payout & tie-break terms follow separate rules. Email is used only for result & event alerts.",
hook: (a, b) => `AI is split on ${a} vs ${b}`,
adLabel: "AD",
- ado2Tagline: "Content Marketing Automation Platform",
+ ado2Tagline: "AI Marketing Automation Platform",
ado2Sub: "Visit ado2.o2osolution.ai →",
+ ado2Cta: "Try it",
},
};