topfans/frontend/utils/brand-slogans.js

18 lines
1007 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// frontend/utils/brand-slogans.js
// 分享图品牌文案随机池(spec § 5.3.2)
export const BRAND_SLOGANS = [
{ brandLine: 'TOPFANS让热爱被看见', brandDesc: 'AI做周边应援全免费' },
// { brandLine: 'TOPFANS星河璀璨', brandDesc: '为你喜爱的明星加油' },
// { brandLine: 'TOPFANS你的应援主场', brandDesc: '百万粉丝在线互动' },
// { brandLine: 'TOPFANS与你同频', brandDesc: '把热爱变成专属周边' },
// { brandLine: 'TOPFANS热爱可抵岁月长', brandDesc: '一键定制你的专属应援' },
// { brandLine: 'TOPFANS粉丝的小宇宙', brandDesc: '和同好一起为爱发电' },
// { brandLine: 'TOPFANS让世界看见你', brandDesc: 'AI 让应援更有趣' },
// { brandLine: 'TOPFANS为热爱加冕', brandDesc: '你的应援值得被收藏' }
];
export function pickRandomSlogan() {
return BRAND_SLOGANS[Math.floor(Math.random() * BRAND_SLOGANS.length)];
}