+
+
+ {title}
+ {subtitle}
+
+
+
+
+ );
+};
+
+export default EnterInformationContainer;
diff --git a/src/components/EnterInformationContainer/style.ts b/src/components/EnterInformationContainer/style.ts
new file mode 100644
index 0000000..90c5288
--- /dev/null
+++ b/src/components/EnterInformationContainer/style.ts
@@ -0,0 +1,29 @@
+import styled from '@emotion/styled';
+
+export const Container = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ position: relative;
+ width: 600px;
+ height: 520px;
+ padding: 28px 24px;
+ box-sizing: border-box;
+ box-shadow: 0px 0px 20px 0px #00000014;
+ border-radius: 8px;
+
+ svg {
+ position: unset;
+ }
+`;
+export const Title = styled.h1`
+ margin-top: 28px;
+ font-size: 24px;
+ font-weight: 600;
+`;
+export const SubTitle = styled.h2`
+ margin-top: 8px;
+ font-size: 18px;
+ color: #a5a6a9;
+ font-weight: 400;
+`;
diff --git a/src/index.tsx b/src/index.tsx
index 3239c22..a100ac9 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -4,6 +4,7 @@ import App from './App';
import { BrowserRouter } from 'react-router-dom';
import { ThemeProvider } from '@emotion/react';
import theme from 'style/theme';
+import { RecoilRoot } from 'recoil';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement,
@@ -11,7 +12,9 @@ const root = ReactDOM.createRoot(
root.render(