@@ -37,16 +48,16 @@ export default function InteractionModal({ index, answer }) {
@@ -57,6 +68,7 @@ export default function InteractionModal({ index, answer }) {
setIsAnswerUp={setIsAnswerUp}
answer={answer}
close={close}
+ isLogin={isLogin}
/>
diff --git a/src/interactions/InteractionSlide.jsx b/src/interactions/InteractionSlide.jsx
index 24dafef1..72903cbb 100644
--- a/src/interactions/InteractionSlide.jsx
+++ b/src/interactions/InteractionSlide.jsx
@@ -6,7 +6,7 @@ export default function InteractionSlide({
index,
isCurrent,
joined,
- swiperRef,
+ slideTo,
answer,
}) {
const activeImgPath = `active${index + 1}.png`;
@@ -35,10 +35,10 @@ export default function InteractionSlide({
return (
swiperRef.current.swiper.slideTo(index)}
- className="w-full h-full flex flex-col items-center select-none"
+ onClick={() => slideTo(index)}
+ className="w-full h-full flex flex-col justify-center items-center select-none"
>
-
+
{eventDate()}
@@ -46,7 +46,7 @@ export default function InteractionSlide({
{interactionDesc}
@@ -55,9 +55,9 @@ export default function InteractionSlide({
@@ -76,7 +76,7 @@ export default function InteractionSlide({
);
diff --git a/src/interactions/IntroductionDetail.jsx b/src/interactions/IntroductionDetail.jsx
index 8972b129..09e6f2bb 100644
--- a/src/interactions/IntroductionDetail.jsx
+++ b/src/interactions/IntroductionDetail.jsx
@@ -1,17 +1,17 @@
export default function IntroductionDetail({ contentList }) {
return (
-
+
상세 안내
-
+
이벤트 기간
- 2024년
+ 2024년
-
+
09월09일(월)~13일(금)
@@ -21,12 +21,12 @@ export default function IntroductionDetail({ contentList }) {
당첨자 발표
-
+
2024년 9월 말
{` (예정)`}
-
+
* 추후 응모 시 입력한 연락처로 개별 안내
@@ -37,14 +37,14 @@ export default function IntroductionDetail({ contentList }) {
{contentList.map((contentSubList, index) => (
-
+
{index + 1}
{contentSubList.map((content, index) => (
{content}
diff --git a/src/interactions/TapBar.jsx b/src/interactions/TapBar.jsx
index 3ada2767..75925c56 100644
--- a/src/interactions/TapBar.jsx
+++ b/src/interactions/TapBar.jsx
@@ -5,11 +5,11 @@ export default function TapBar({ currentInteraction, joinedList, swiperRef }) {
EVENT 1
-
+
The 새로워진 IONIQ 5, 인터랙션으로 만나다
-
+
{`The new IONIQ 5의 새로운 기능을 날마다 체험하고 이벤트에 응모하세요!\n추첨을 통해 IONIQ과 함께하는 제주 여행 패키지를 드립니다`}
diff --git a/src/interactions/index.jsx b/src/interactions/index.jsx
index 1382228d..f6aa04da 100644
--- a/src/interactions/index.jsx
+++ b/src/interactions/index.jsx
@@ -18,7 +18,7 @@ export default function InteractionPage() {
return (
{JSONData.interaction.map((interactionDesc, index) => (
-
+
swiperRef.current.swiper.slideTo(_index)}
answer={JSONData.answer[index]}
/>
))}
-