Files
wehub-resource-sync 2114b14ee0
Sync main into demo / sync (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:26 +08:00

60 lines
1.7 KiB
TypeScript

import type { RedditCommunity } from './types';
// 精选社区(应用内置,展示在 SearchPage 的"社区"分类)
export const REDDIT_COMMUNITY_DEFAULTS: RedditCommunity[] = [
{
id: 'com_superman',
name: 'r/superman',
members: '274k',
isSpotlight: true,
spotlightTitle: 'From Lex Luthor to Krypto the Superdog, share your Superman teaser takeaway',
spotlightImage: 'icons/001.png',
icon: 'icons/image_001.png',
},
{
id: 'com_stalker',
name: 'r/stalker',
members: '572k',
isSpotlight: true,
spotlightTitle: 'Everything you need to know about thelatest S.T.A.L.K.E.R. 2 patch',
spotlightImage: 'icons/002.png',
icon: 'icons/image_002.png',
},
{
id: 'com_confession',
name: 'r/confession',
members: '11.8m',
isSpotlight: true,
spotlightTitle: 'A dedicated group for those with a guiltyconscience',
spotlightImage: 'icons/003.png',
icon: 'icons/image_003.png',
},
{
id: 'com_formula1',
name: 'r/formula1',
members: '6.5m',
isSpotlight: true,
spotlightTitle: 'What are your thoughts on Checo"s departure from Red Bull?',
spotlightImage: 'icons/004.png',
icon: 'icons/image_004.png',
},
{
id: 'com_BuyItForLife',
name: 'r/BuyItForLife',
members: '3.5m',
isSpotlight: true,
spotlightTitle: 'Ideas for presents designed to lastforever',
spotlightImage: 'icons/005.png',
icon: 'icons/image_005.png',
},
{
id: 'com_ChristmasCats',
name: 'r/ChristmasCats',
members: '19.2k',
isSpotlight: true,
spotlightTitle: 'Just some festive felines to brightenyour day',
spotlightImage: 'icons/006.png',
icon: 'icons/image_006.png',
},
];