diff --git a/frontend/src/components/ComponentCarousel/index.tsx b/frontend/src/components/ComponentCarousel/index.tsx index 01129aa6..b631aeca 100644 --- a/frontend/src/components/ComponentCarousel/index.tsx +++ b/frontend/src/components/ComponentCarousel/index.tsx @@ -14,7 +14,7 @@ interface CarouselProps { interval?: number; } -export default function ComponentCarousel({ slides, interval = 2000 }: CarouselProps) { +export default function ComponentCarousel({ slides, interval = 3000 }: CarouselProps) { const extendedSlides = [...slides.slice(-2), ...slides, ...slides.slice(0, 2)]; const [currentIndex, setCurrentIndex] = useState(2); diff --git a/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts b/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts index 664282be..15192854 100644 --- a/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts +++ b/frontend/src/components/_common/Buttons/BottomFixedButton/BottomFixedButton.styles.ts @@ -24,7 +24,7 @@ export const s_bottomFixedButtonContainer = (height = 0) => css` justify-content: center; width: 100%; - height: 6rem; + height: 5.2rem; background-color: transparent; `; diff --git a/frontend/src/constants/inputFields.ts b/frontend/src/constants/inputFields.ts index 8e1c37bb..19bfea0c 100644 --- a/frontend/src/constants/inputFields.ts +++ b/frontend/src/constants/inputFields.ts @@ -32,7 +32,7 @@ export const FIELD_LABELS = { export const FIELD_PLACEHOLDERS = { meetingName: '10자 이내의 약속 이름 입력', - nickname: '5자 이내의 약속 닉네임 입력', + nickname: '5자 이내의 약속 이름 입력', password: '4자리 숫자 입력', };