27 lines
664 B
TypeScript
27 lines
664 B
TypeScript
/** @jsxImportSource theme-ui */
|
|
import { Box, Text } from '@theme-ui/components'
|
|
import PageLink from '../components/atoms/PageLink'
|
|
import RootNavigator from '../components/organisms/RootNavigator'
|
|
|
|
const IndexPage = () => {
|
|
return (
|
|
<Box>
|
|
<RootNavigator />
|
|
<Box sx={{ p: 3 }}>
|
|
<Box>
|
|
<PageLink href='/honkai3rd'>
|
|
<Text sx={{ fontSize: 3 }}>Honkai 3rd</Text>
|
|
</PageLink>
|
|
</Box>
|
|
<Box>
|
|
<PageLink href='/genshin'>
|
|
<Text sx={{ fontSize: 3 }}>Genshin (Under Construction)</Text>
|
|
</PageLink>
|
|
</Box>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default IndexPage
|