This commit is contained in:
2025-10-27 01:40:38 +08:00
parent 896390e8eb
commit 0f04bbe1f9
57 changed files with 7576 additions and 870 deletions

View File

@@ -0,0 +1,15 @@
import clsx from 'clsx';
import './beian.css';
type Props = {
className?: string;
text?: string;
};
export const Beian = (props: Props) => {
return (
<div className={clsx('beian text-sm w-full flex justify-center text-[#e69c36]', props.className)}>
<a href='//beian.miit.gov.cn' target='_blank'>
{props.text}
</a>
</div>
);
};