diff --git a/src/components/common/ModalCommon/ModalCommon.module.scss b/src/components/common/ModalCommon/ModalCommon.module.scss
index d4967b04e..d1434ed21 100644
--- a/src/components/common/ModalCommon/ModalCommon.module.scss
+++ b/src/components/common/ModalCommon/ModalCommon.module.scss
@@ -8,7 +8,7 @@
@apply flex justify-center items-center min-h-screen;
.modal{
@apply inline-block align-bottom bg-white relative;
- max-width: 60rem;
+ max-width: 66.4rem;
padding: 3.2rem;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.24);
border-radius: 1.2rem;
diff --git a/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.module.scss b/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.module.scss
new file mode 100644
index 000000000..199028061
--- /dev/null
+++ b/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.module.scss
@@ -0,0 +1,19 @@
+@import "../../../styles/utilities";
+
+.formUserInfo {
+ @apply u-form;
+ .inner {
+ @screen md {
+ width: 60rem;
+ margin: auto;
+ }
+ .bottom {
+ @apply grid grid-cols-2;
+ margin-top: 4rem;
+ grid-gap: 1.6rem;
+ > button {
+ @apply w-full;
+ }
+ }
+ }
+}
diff --git a/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.tsx b/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.tsx
new file mode 100644
index 000000000..f6c3d7a6f
--- /dev/null
+++ b/src/components/common/ModalCreateUserInfo/ModalCreateUserInfo.tsx
@@ -0,0 +1,40 @@
+import classNames from 'classnames';
+import Link from 'next/link';
+import React, { useRef } from 'react';
+import { useModalCommon } from 'src/components/hooks/useModalCommon';
+import { CustomInputCommon } from 'src/utils/type.utils';
+import { Inputcommon } from '..';
+import ButtonCommon from '../ButtonCommon/ButtonCommon';
+import ModalCommon from '../ModalCommon/ModalCommon';
+import s from './ModalCreateUserInfo.module.scss';
+
+
+const ModalCreateUserInfo = () => {
+ const { visible, closeModal } = useModalCommon({ initialValue: true })
+ const firstInputRef = useRef
(null)
+
+ return (
+
+
+
+
+
+ Skip
+ Submit
+
+
+
+
+
+ );
+}
+
+export default ModalCreateUserInfo;
\ No newline at end of file
diff --git a/src/components/common/index.ts b/src/components/common/index.ts
index dc0288966..86b242fb9 100644
--- a/src/components/common/index.ts
+++ b/src/components/common/index.ts
@@ -28,3 +28,4 @@ export { default as NotiMessage} from './NotiMessage/NotiMessage'
export { default as VideoPlayer} from './VideoPlayer/VideoPlayer'
export { default as SelectCommon} from './SelectCommon/SelectCommon'
export { default as ModalCommon} from './ModalCommon/ModalCommon'
+export { default as ModalCreateUserInfo} from './ModalCreateUserInfo/ModalCreateUserInfo'
diff --git a/src/styles/_utilities.scss b/src/styles/_utilities.scss
index 93291dc3a..26cea17c0 100644
--- a/src/styles/_utilities.scss
+++ b/src/styles/_utilities.scss
@@ -80,7 +80,7 @@
font-size: 10px;
line-height: 16px;
}
-
+
.spacing-horizontal {
padding-left: 2rem;
padding-right: 2rem;
@@ -119,4 +119,22 @@
.font-logo {
font-family: var(--font-logo);
}
+
+ .u-form {
+ .body {
+ > div {
+ &:not(:last-child) {
+ margin-bottom: 1.6rem;
+ }
+ }
+ .line {
+ @apply flex justify-between items-center;
+ > div {
+ &:not(:last-child) {
+ margin-right: 1.6rem;
+ }
+ }
+ }
+ }
+ }
}