diff --git a/src/app/globals.css b/src/app/globals.css index 21de4fd..f5af60b 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -27,6 +27,9 @@ .btn { @apply h-[3rem] px-[1.5rem] py-[0.75rem] rounded-lg transition-colors duration-200 w-full text-center font-medium; } + .btn-container { + @apply fixed bottom-0 left-0 right-0 flex justify-center bg-white p-4; + } .btn-primary { @apply btn bg-gray-800 text-white hover:bg-gray-700; } diff --git a/src/app/photographer/page.tsx b/src/app/photographer/page.tsx index 6a9df51..e669a09 100644 --- a/src/app/photographer/page.tsx +++ b/src/app/photographer/page.tsx @@ -114,15 +114,13 @@ const RecommendedPhotographers = () => { ))} -
-
- - 맞춤형 작가 요청하기 - -
+
+ + 마음에 드는 작가가 없으시다면? +
); diff --git a/src/app/request-custom/page.tsx b/src/app/request-custom/page.tsx index 7b357f0..eeb67e4 100644 --- a/src/app/request-custom/page.tsx +++ b/src/app/request-custom/page.tsx @@ -110,20 +110,19 @@ const RequestCustom = () => { -
-
- -
+ +
+
); diff --git a/src/app/request-notification/page.tsx b/src/app/request-notification/page.tsx index 21d9f3b..b9670c6 100644 --- a/src/app/request-notification/page.tsx +++ b/src/app/request-notification/page.tsx @@ -57,27 +57,27 @@ const RequestNotification = () => { /> -
- - - - - +
+ + Instagram +

칙스냅에 문의하기

+ +
); diff --git a/src/app/select-mood/page.tsx b/src/app/select-mood/page.tsx index af69c80..a71264e 100644 --- a/src/app/select-mood/page.tsx +++ b/src/app/select-mood/page.tsx @@ -67,24 +67,25 @@ const SelectMood = () => { /> -
-
- - 다음 -
+ +
+ + 다음으로 + +
); }; diff --git a/src/app/select-type/page.tsx b/src/app/select-type/page.tsx index 8758654..0fb3e39 100644 --- a/src/app/select-type/page.tsx +++ b/src/app/select-type/page.tsx @@ -89,23 +89,22 @@ const SelectType = () => { ))} -
-
- 0 - ? `/select-mood?type=${selectedTypes.join(',')}` - : '#' - } - className={ - selectedTypes.length > 0 - ? 'btn-primary body-3 w-full lg:mx-4 md:mx-4 sm:mx-4' - : 'btn-default body-3 pointer-events-none w-full lg:mx-4 md:mx-4 sm:mx-4' - } - > - 다음 - -
+ +
+ 0 + ? `/select-mood?type=${selectedTypes.join(',')}` + : '#' + } + className={ + selectedTypes.length > 0 + ? 'btn-primary body-3' + : 'btn-default body-3 pointer-events-none' + } + > + 다음으로 +
);