import Link from 'next/link' import dynamic from 'next/dynamic' import { Theme } from '@types' const Container = dynamic(() => import('@components/Container')) const Toggle = dynamic(() => import('@components/Toggle')) const Footer: React.FC = ({ theme, setTheme }) => { return (

국내 디스코드의 모든 것을 한 곳에서.

2020-2023 한국 디스코드 리스트, All rights reserved.

한국 디스코드 리스트

  • 소개
  • 개발자
  • 버그 바운티

정책

  • 서비스 이용약관
  • 개인정보취급방침
  • 가이드라인
  • 라이선스

커뮤니티

기타

다크모드 { const t = theme === 'dark' ? 'light' : 'dark' setTheme(t) localStorage.setItem('theme', t) }} />
) } interface FooterProps { theme: Theme setTheme(value: Theme): void } export default Footer