diff --git a/Components/Login/LoginForm.tsx b/Components/Login/LoginForm.tsx index d7baead..8ceabc4 100644 --- a/Components/Login/LoginForm.tsx +++ b/Components/Login/LoginForm.tsx @@ -4,7 +4,7 @@ import React from 'react'; import { useForm, SubmitHandler } from 'react-hook-form'; import { fetchLogin } from '../../app/login/login.utils'; import { setCookie } from '@/Components/Login/Cookie'; -import { Button } from '@material-tailwind/react'; +import { Button, Typography } from '@material-tailwind/react'; import Link from 'next/link'; import { useRouter } from 'next/navigation'; import Swal from 'sweetalert2'; @@ -12,6 +12,7 @@ import { Input } from '@material-tailwind/react'; import Image from 'next/image'; import useAsyncLoading from '@/hooks/Open/useAsyncLoading'; import { IFormInput } from './Login.types'; +import icon_cat from '@/public/icon_cat.svg'; const LoginForm = () => { const loadingControl = useAsyncLoading(); @@ -49,12 +50,18 @@ const LoginForm = () => { }; return ( -
+
- Picture of me + Picture of me {/* 영어와 숫자만 */} { {...register('password')} crossOrigin={'anonymous'} /> - -
회원가입
+
새로운 집사 되기!
+ + CatTalk +
); }; diff --git a/app/login/page.tsx b/app/login/page.tsx index 4b4f0db..01cb29b 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -3,7 +3,7 @@ import LoginForm from '../../Components/Login/LoginForm'; const Login = () => { return ( -
+
); diff --git a/tailwind.config.ts b/tailwind.config.ts index 470c33d..71bcd06 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -28,6 +28,7 @@ const config: Config = withMT({ secondary: '#FFD4E9', text: '#FF59A9', fill: '#EFEFEF', + bgfill: '#7E7E7E', }, backgroundImage: { 'trash-can': "url('../public/icon_trash.svg')",