Skip to content

Commit

Permalink
♻️ refactor : Changing the logo image and modifying related files
Browse files Browse the repository at this point in the history
We've changed the logo image and added and deleted related files accordingly to update the project's logo.

Related issue: YJU-OKURA#63
  • Loading branch information
dorimu0 committed Feb 28, 2024
1 parent b4f7283 commit b8bc02a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions public/images/login/index.ts

This file was deleted.

Binary file removed public/images/login/logo.png
Binary file not shown.
1 change: 1 addition & 0 deletions public/svgs/login/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const svgs = {
google: '/svgs/login/google.svg',
yahoo: '/svgs/login/yahoo.svg',
line: '/svgs/login/line.svg',
logo: '/svgs/login/logo.svg',
};

export default svgs;
3 changes: 1 addition & 2 deletions src/app/intro/components/login/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Image from 'next/image';
import {ModalProps} from '@/src/interfaces/intro';
import login from '@/public/images/login';
import svgs from '@/public/svgs/login';

const Login = ({onClose}: ModalProps) => {
Expand All @@ -26,7 +25,7 @@ const Login = ({onClose}: ModalProps) => {
<div className="w-2/5">
<div className="w-4/5 text-sm">
<Image
src={login.logo}
src={svgs.logo}
alt="logo"
width={250}
height={250}
Expand Down

0 comments on commit b8bc02a

Please sign in to comment.