@@ -33,8 +33,8 @@ export default function OwnerSignupPage() {
3333 < div className = "flex min-h-screen items-center justify-center bg-gradient-to-r from-lime-200 to-lime-300 px-4 py-12 sm:px-6 lg:px-8" >
3434 < div className = "w-full max-w-md space-y-8 rounded-lg bg-white p-8 shadow-lg" >
3535 < div >
36- < h2 className = "text-center text-3xl font-bold tracking-tight text-gray-900 " > 사장님 회원가입</ h2 >
37- < p className = "mt-2 text-center text-sm text-gray-600 " >
36+ < h2 className = "text-grayscale-900 text- center text-3xl font-bold tracking-tight" > 사장님 회원가입</ h2 >
37+ < p className = "text-grayscale-600 mt-2 text-center text-sm" >
3838 이미 계정이 있으신가요?{ " " }
3939 < Link href = "/login" className = "font-medium text-lime-600 hover:text-lime-500" >
4040 로그인하기
@@ -48,7 +48,7 @@ export default function OwnerSignupPage() {
4848 < input
4949 { ...register ( "email" ) }
5050 type = "email"
51- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
51+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
5252 placeholder = "이메일"
5353 />
5454 { errors . email && < p className = "mt-1 text-sm text-red-600" > { errors . email . message } </ p > }
@@ -57,7 +57,7 @@ export default function OwnerSignupPage() {
5757 < input
5858 { ...register ( "name" ) }
5959 type = "text"
60- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
60+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
6161 placeholder = "이름"
6262 />
6363 { errors . name && < p className = "mt-1 text-sm text-red-600" > { errors . name . message } </ p > }
@@ -66,7 +66,7 @@ export default function OwnerSignupPage() {
6666 < input
6767 { ...register ( "nickname" ) }
6868 type = "text"
69- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
69+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
7070 placeholder = "닉네임"
7171 />
7272 { errors . nickname && < p className = "mt-1 text-sm text-red-600" > { errors . nickname . message } </ p > }
@@ -75,7 +75,7 @@ export default function OwnerSignupPage() {
7575 < input
7676 { ...register ( "password" ) }
7777 type = "password"
78- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
78+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
7979 placeholder = "비밀번호"
8080 />
8181 { errors . password && < p className = "mt-1 text-sm text-red-600" > { errors . password . message } </ p > }
@@ -84,7 +84,7 @@ export default function OwnerSignupPage() {
8484 < input
8585 { ...register ( "confirmPassword" ) }
8686 type = "password"
87- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
87+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
8888 placeholder = "비밀번호 확인"
8989 />
9090 { errors . confirmPassword && < p className = "mt-1 text-sm text-red-600" > { errors . confirmPassword . message } </ p > }
@@ -93,7 +93,7 @@ export default function OwnerSignupPage() {
9393 < input
9494 { ...register ( "storeName" ) }
9595 type = "text"
96- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
96+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
9797 placeholder = "가게 이름"
9898 />
9999 { errors . storeName && < p className = "mt-1 text-sm text-red-600" > { errors . storeName . message } </ p > }
@@ -102,7 +102,7 @@ export default function OwnerSignupPage() {
102102 < input
103103 { ...register ( "storePhoneNumber" ) }
104104 type = "tel"
105- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
105+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
106106 placeholder = "가게 전화번호 (예: 02-1234-5678)"
107107 />
108108 { errors . storePhoneNumber && (
@@ -113,7 +113,7 @@ export default function OwnerSignupPage() {
113113 < input
114114 { ...register ( "location" ) }
115115 type = "text"
116- className = "relative block w-full rounded-lg border border-gray -300 px-3 py-2 text-gray-900 placeholder-gray -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
116+ className = "text-grayscale-900 relative block w-full rounded-lg border border-grayscale -300 px-3 py-2 placeholder-grayscale -500 focus:border-lime-500 focus:outline-none focus:ring-lime-500 sm:text-sm"
117117 placeholder = "가게 위치"
118118 />
119119 { errors . location && < p className = "mt-1 text-sm text-red-600" > { errors . location . message } </ p > }
0 commit comments