diff --git a/src/layout/base.tsx b/src/layout/base.tsx
index 0cb898d..c25efe3 100644
--- a/src/layout/base.tsx
+++ b/src/layout/base.tsx
@@ -28,8 +28,8 @@ const ContentWrapper = styled.div`
function BaseLayout(props: PageProps) {
const [isOpen, setIsOpen] = useState(false)
const [isOpenAbout, setIsOpenAbout] = useState(false)
- const [isOpenRegister, setIsOpenRegister] = useState(false)
- const [isOpenLogin, setIsOpenLogin] = useState(false)
+ const [isOpenAuth, setIsOpenAuth] = useState(false)
+ const [isRegister, setIsRegister] = useState(false)
const router = useHistory()
@@ -81,12 +81,11 @@ function BaseLayout(props: PageProps) {
-
{props.children}
@@ -97,27 +96,50 @@ function BaseLayout(props: PageProps) {
setIsOpenAbout(false)} />} />
-
-