chore: 备案

This commit is contained in:
streakingman 2022-09-22 02:34:18 +08:00
parent 504fb9221a
commit 7e2990a2b6
2 changed files with 18 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import { Icon, Theme } from './themes/interface';
import { fishermanTheme } from './themes/fisherman';
import { jinlunTheme } from './themes/jinlun';
import { ikunTheme } from './themes/ikun';
import { BeiAn } from './themes/BeiAn';
// 主题
const themes = [defaultTheme, fishermanTheme, jinlunTheme, ikunTheme];
@ -444,6 +445,8 @@ const App: FC = () => {
</span>
</p>
<BeiAn />
{finished && (
<div className="modal">
<h1>{tipText}</h1>

15
src/themes/BeiAn.tsx Normal file
View File

@ -0,0 +1,15 @@
import React, { FC } from 'react';
export const BeiAn: FC = () => {
return (
<p style={{ textAlign: 'center' }}>
<a
href="https://beian.miit.gov.cn/"
target="_blank"
rel="noopener noreferrer nofollow"
>
ICP备17007857号-2
</a>
</p>
);
};