diff --git a/src/app/gathering/[id]/page.tsx b/src/app/gathering/[id]/page.tsx index 0a875341..02730bb5 100644 --- a/src/app/gathering/[id]/page.tsx +++ b/src/app/gathering/[id]/page.tsx @@ -37,7 +37,7 @@ export default function GatheringDetail({ return (
-
+
diff --git a/src/app/recommend/page.tsx b/src/app/recommend/page.tsx index d0a7e249..c4476507 100644 --- a/src/app/recommend/page.tsx +++ b/src/app/recommend/page.tsx @@ -47,11 +47,11 @@ export default function Recommend() { return (
-
+
{!surveyResult ? ( ) : ( @@ -69,11 +69,11 @@ export default function Recommend() { width={154} height={168} quality={100} - className="static mt-auto h-[97px] w-[89px] md:absolute md:bottom-0 md:left-1/5 md:h-[148px] md:w-[136px] xl:h-[168px] xl:w-[154px]" + className="static mt-auto h-[97px] w-[89px] md:h-[148px] md:w-[136px] xl:h-[168px] xl:w-[154px]" /> )} -

+

방탈출 취향 테스트

diff --git a/src/components/@shared/Header.tsx b/src/components/@shared/Header.tsx index 47a3f052..32e5d17d 100644 --- a/src/components/@shared/Header.tsx +++ b/src/components/@shared/Header.tsx @@ -143,7 +143,7 @@ export default function Header() { /> {isMenuOpen && ( -
    +
    • diff --git a/src/components/@shared/Modal.tsx b/src/components/@shared/Modal.tsx index 4cbd150f..f0488ad6 100644 --- a/src/components/@shared/Modal.tsx +++ b/src/components/@shared/Modal.tsx @@ -1,5 +1,5 @@ -import DeleteIcon from '@/public/icons/delete.svg'; import { ReactNode, useEffect, useRef } from 'react'; +import DeleteIcon from '@/public/icons/delete.svg'; interface ModalProps { children: ReactNode; @@ -53,7 +53,7 @@ export default function Modal({ )} {children} + ); } diff --git a/src/components/allReview/ReviewCard.tsx b/src/components/allReview/ReviewCard.tsx index 4f5bf66d..430c8d6d 100644 --- a/src/components/allReview/ReviewCard.tsx +++ b/src/components/allReview/ReviewCard.tsx @@ -1,8 +1,10 @@ +import { useState } from 'react'; +import Image from 'next/image'; + import { ReviewDto } from '@/types/review.types'; import { yearMonthDay } from '@/utils/dateUtils'; -import Image from 'next/image'; import Rating from '@/components/@shared/rating/Rating'; -import { useState } from 'react'; +import CardMotion from '@/components/@shared/animation/CardMotion'; export default function ReviewCard({ score, @@ -23,7 +25,7 @@ export default function ReviewCard({ }; return ( -
      @@ -72,6 +74,6 @@ export default function ReviewCard({

-
+ ); } diff --git a/src/components/gatheringEdit/GatheringForm.tsx b/src/components/gatheringEdit/GatheringForm.tsx index 2a4254ef..4a724d10 100644 --- a/src/components/gatheringEdit/GatheringForm.tsx +++ b/src/components/gatheringEdit/GatheringForm.tsx @@ -304,7 +304,7 @@ export default function GatheringForm({ onSubmit={handleSubmit(onSubmit)} className="flex w-full flex-col gap-12" > -
+
diff --git a/src/components/recommend/Survey.tsx b/src/components/recommend/Survey.tsx index 09c874d3..472f6276 100644 --- a/src/components/recommend/Survey.tsx +++ b/src/components/recommend/Survey.tsx @@ -50,14 +50,14 @@ export default function Survey({ onComplete }: SurveyProps) { const progressPercentage = ((currentStep - 1) / questions.length) * 100; return ( -
-
+
+
-

+

Q.

{questions[currentStep - 1]?.text}

@@ -66,7 +66,7 @@ export default function Survey({ onComplete }: SurveyProps) {