diff --git a/src/components/DocsFooter.tsx b/src/components/DocsFooter.tsx index a5c7324e2..088ffe204 100644 --- a/src/components/DocsFooter.tsx +++ b/src/components/DocsFooter.tsx @@ -65,6 +65,10 @@ function FooterLink({ title: string; type: 'Previous' | 'Next'; }) { + const toKorean = { + Previous: '이전', + Next: '다음', + }; return ( - {type} + {toKorean[type]} {title}