const beianList = [ { hostname: 'https://kevisual.xiongxiao.me', beian: '蜀ICP备16031039号-2' }, { hostname: 'https://kevisual.cn', beian: '浙ICP备2025158778号' } ] export const Beian = () => { const hostname = window.location.hostname; const beianInfo = beianList.find(item => hostname.includes(item.hostname.replace('https://', '').replace('http://', ''))); if (!beianInfo) return null; return (
{beianInfo.beian}
); }