Remove bootstrap

This commit is contained in:
Sakura Knoll
2021-12-23 03:27:06 +09:00 Unverified
parent 32bc9c4167
commit 492dbafbe5
4 changed files with 13 additions and 190 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
/** @jsxImportSource theme-ui */
import { Box } from '@theme-ui/components'
import Link from 'next/link'
import React from 'react'
import { Container } from 'react-bootstrap'
import RootNavigator from '../components/organisms/RootNavigator'
const IndexPage = () => {
return (
<Container>
<Box>
<RootNavigator />
<div>
@@ -15,7 +15,7 @@ const IndexPage = () => {
</a>
</Link>
</div>
</Container>
</Box>
)
}