Skip to content

Commit

Permalink
Merge pull request #55 from PortalCube/dev-portalcube
Browse files Browse the repository at this point in the history
feat: 일부 이미지 사이즈 압축
  • Loading branch information
PortalCube authored Mar 23, 2024
2 parents aefae69 + 11d659d commit b149196
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useEffect } from 'react';
import Cookies from 'js-cookie';
import { login } from './redux/userSlice.js';

import BackgroundImage from './assets/background.png';
import BackgroundImage from './assets/background.webp';

const Container = styled.div`
height: 100%;
Expand Down
Binary file modified src/assets/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/background.webp
Binary file not shown.
Binary file added src/assets/images/textLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions src/pages/Intro.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ProcessTitle from '../components/ProcessTitle';
import ImageSliding from '../components/ImgSliding';

import ClockLogoImg from '../assets/images/clock_logo.svg';
import TextLogoImg from '../assets/images/textLogo.svg';
import TextLogoImg from '../assets/images/textLogo.png';
import img1 from '../assets/images/Intro/1_1.svg';
import img2 from '../assets/images/Intro/1_2.svg';
import img3 from '../assets/images/Intro/2_waiting_component.svg';
Expand Down Expand Up @@ -193,7 +193,11 @@ function Intro() {
<Text1>모두의 밥약을 하나로 모으다</Text1>

<TextLogoContainer>
<img src={TextLogoImg} alt="TextLogoImg" />
<img
src={TextLogoImg}
alt="TextLogoImg"
style={{ width: '135px' }}
/>
</TextLogoContainer>

{/* <Text2>
Expand Down

0 comments on commit b149196

Please sign in to comment.