import * as React from 'react'; import Container from '@mui/material/Container'; import Typography from '@mui/material/Typography'; import Box from '@mui/material/Box'; import Link from '@mui/material/Link'; import Grid from '@mui/material/Unstable_Grid2'; import Tabs from '@mui/material/Tabs'; import Tab from '@mui/material/Tab'; import Button from '@mui/material/Button'; import Stack from '@mui/material/Stack'; import Avatar from '@mui/material/Avatar'; import GitHubIcon from '@mui/icons-material/GitHub'; import TelegramIcon from '@mui/icons-material/Telegram'; import TwitterIcon from '@mui/icons-material/Twitter'; function Copyright() { return ( <> {'Copyright © '}{new Date().getFullYear()}{' '} Amane . 萌 ICP 备 20230721 号 ); } interface TabPanelProps { children?: React.ReactNode; index: number; value: number; } function TabPanel(props: TabPanelProps) { const { children, value, index, ...other } = props; return ( ); } function a11yProps(index: number) { return { id: `simple-tab-${index}`, 'aria-controls': `simple-tabpanel-${index}`, }; } export default function App() { const [value, setValue] = React.useState(0); const handleChange = (event: React.SyntheticEvent, newValue: number) => { setValue(newValue); }; return ( {/* */} Amane Yoo! I'm Amane, aka Nofated. Misc 📒️ I have a blog based on Hexo.
⌨️ Coding and open-source are great! Let's contribute together!
🧪 I used to be an iGEMer. My team won a 🥈silver medal in iGEM Competition 2023!
Find me at
About My full name is Tanikaze Amane, but you may here some one call me Nofated or nof. I am in senior high and I'm preparing for the Chinese College Entrance Examination, aka GaoKao. I do open-source works, you can check them on GitHub. Most of them are useless and have lots of bugs. Redirecting...
); }