import React, { FC, useState } from 'react';
import style from './PersonalInfo.module.scss';
import classNames from 'classnames';
import { FixedAnimateScalePanel } from './FixedAnimateScalePanel';
const GithubIcon: FC = () => {
return (
);
};
const BiliBiliIcon: FC = () => {
return (
);
};
export const GithubLink: FC = () => {
return (
@StreakingMan
);
};
export const BiliBiliLink: FC = () => {
return (
@streaking_man
);
};
export const PersonalInfo: FC = () => {
return (
);
};