export const RANK_PERIODS = [ { value: 1, label: '일간' }, { value: 2, label: '주간' }, { value: 3, label: '월간' }, { value: 4, label: '연간' }, { value: 5, label: '사용자 지정' }, { value: 6, label: '전체' } ]; export const RANK_THEMES = [ { value: 0, label: 'Basic' }, { value: 1, label: 'Dark' }, { value: 2, label: 'Minimal' } ]; export const NAME_DISPLAY_TYPES = [ { value: 0, label: '계정 별명 / SID' }, { value: 1, label: '후원 시 설정한 이름' } ]; export const FONT_FAMILIES = [ { value: '', label: '기본 (시스템)' }, { value: 'Pretendard', label: 'Pretendard' }, { value: 'Noto Sans KR', label: 'Noto Sans KR' }, { value: 'Nanum Gothic', label: '나눔고딕' }, { value: 'Nanum Myeongjo', label: '나눔명조' }, { value: 'Black Han Sans', label: '블랙한산스' }, { value: 'Jua', label: '주아' }, { value: 'Do Hyeon', label: '도현' }, { value: 'Gaegu', label: '개구' }, { value: 'Gothic A1', label: 'Gothic A1' } ]; export const MOCK_RANKING = [ { rank: 1, sponsorName: '테스트유저1', totalAmount: 50000, donationCount: 10 }, { rank: 2, sponsorName: '테스트유저2', totalAmount: 30000, donationCount: 7 }, { rank: 3, sponsorName: '테스트유저3', totalAmount: 20000, donationCount: 5 }, { rank: 4, sponsorName: '테스트유저4', totalAmount: 10000, donationCount: 3 }, { rank: 5, sponsorName: '테스트유저5', totalAmount: 5000, donationCount: 2 } ];