Files
abyss-lab/src/pages/index.tsx
T
2021-12-23 03:27:06 +09:00

23 lines
422 B
TypeScript

/** @jsxImportSource theme-ui */
import { Box } from '@theme-ui/components'
import Link from 'next/link'
import RootNavigator from '../components/organisms/RootNavigator'
const IndexPage = () => {
return (
<Box>
<RootNavigator />
<div>
<Link href='/honkai3rd'>
<a>
<h2>Honkai 3rd</h2>
</a>
</Link>
</div>
</Box>
)
}
export default IndexPage