diff --git a/src/interactions/GiftDetail.jsx b/src/interactions/GiftDetail.jsx
new file mode 100644
index 00000000..497b751e
--- /dev/null
+++ b/src/interactions/GiftDetail.jsx
@@ -0,0 +1,3 @@
+export default function GiftDetail() {
+ return
;
+}
diff --git a/src/interactions/IntroductionDetail.jsx b/src/interactions/IntroductionDetail.jsx
new file mode 100644
index 00000000..f772c242
--- /dev/null
+++ b/src/interactions/IntroductionDetail.jsx
@@ -0,0 +1,46 @@
+export default function IntroductionDetail() {
+ return (
+
+
상세 안내
+
+
+
+ 이벤트 기간
+
+ 2024년
+
+
+ 09월09일(월)~13일(금)
+
+
+
+
+
+ 당첨자 발표
+
+
+
+ 2024년 9월 말
+ {` (예정)`}
+
+
+
+ * 추후 응모 시 입력한 연락처로 개별 안내
+
+
+
+
+
+
참여방법
+
+
+
+ 1
+
+
+
+
+
+
+ );
+}
diff --git a/src/interactions/content.json b/src/interactions/content.json
new file mode 100644
index 00000000..52650d14
--- /dev/null
+++ b/src/interactions/content.json
@@ -0,0 +1,7 @@
+{
+ "howto": [
+ ["매일매일 공개되는", " 더 뉴 아이오닉5과 관련한 ", "인터랙션을 수행한다."],
+ ["", "이벤트 경품을 받기 위한 ", "필수 정보를 입력하면 응모 완료!"],
+ ["", "날마다 응모하고 기대평을 작성하면 당첨 확률 UP!"]
+ ]
+}
diff --git a/src/interactions/index.jsx b/src/interactions/index.jsx
index f8dbd2b4..a796bfaf 100644
--- a/src/interactions/index.jsx
+++ b/src/interactions/index.jsx
@@ -1,5 +1,7 @@
import { useRef, useState } from "react";
import useSectionInitialize from "../scroll/useSectionInitialize";
+import IntroductionDetail from "./IntroductionDetail";
+import GiftDetail from "./GiftDetail";
export default function InteractionPage() {
const SECTION_IDX = 1;
@@ -54,6 +56,14 @@ export default function InteractionPage() {
))}
+
+ 스크롤
+
+
+
+
+
+
);
}