diff --git a/src/components/LectureListPage/LectureListContent.jsx b/src/components/LectureListPage/LectureListContent.jsx index 2ff08ea..23feda0 100644 --- a/src/components/LectureListPage/LectureListContent.jsx +++ b/src/components/LectureListPage/LectureListContent.jsx @@ -39,7 +39,7 @@ function LectureListContent() { {userData.nickname ? ( <> - {userData.nickname}님의 검색 결과에요! + {userData.nickname} 님의 검색 결과에요! ) : ( 강좌 검색 결과에요! diff --git a/src/pages/LoginRedirection.jsx b/src/pages/LoginRedirection.jsx index c0b4f95..0df9452 100644 --- a/src/pages/LoginRedirection.jsx +++ b/src/pages/LoginRedirection.jsx @@ -1,6 +1,8 @@ import axios from "axios"; import React, { useEffect, useState } from "react"; import { useNavigate } from "react-router-dom"; +import styled from "styled-components"; +import pickleImg from "../assets/img/UserLevel0.svg"; const LoginRedirection = () => { const [form, setForm] = useState(null); @@ -42,7 +44,28 @@ const LoginRedirection = () => { console.log("code :", code); console.log("saved form :", form); - return
로그인 중입니다.
; + return ( + + + 로그인 중입니다. + + ); }; export default LoginRedirection; + +const Wrapper = styled.div` + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +`; + +const Pickle = styled.img` + height: 200px; +`; + +const Text = styled.div` + margin-top: 30px; + font-size: 20px; +`;