Skip to content

Commit 326d971

Browse files
committed
fix: 에셋 변경
1 parent 2f006eb commit 326d971

14 files changed

+10
-10
lines changed
48.2 KB
Loading
-219 KB
Binary file not shown.
162 KB
Loading
-85.1 KB
Binary file not shown.
62.1 KB
Loading
-253 KB
Binary file not shown.
173 KB
Loading

src/layouts/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ const Header = () => {
1919
</button>
2020
<div className="flex items-center gap-3">
2121
{theme === 'light' ? (
22-
<FlareRoundedIcon className="h-6 w-6 text-white" onClick={toggleTheme} />
23-
) : (
2422
<DarkModeOutlinedIcon className="h-6 w-6 text-white" onClick={toggleTheme} />
23+
) : (
24+
<FlareRoundedIcon className="h-6 w-6 text-white" onClick={toggleTheme} />
2525
)}
2626
<NotificationButton />
2727
<Link to="/mypage">

src/pages/Home/components/GoToRandomLetter.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Link } from 'react-router';
22

3-
import goToRandomLetter from '@/assets/images/go-to-random-letter.png';
3+
import goToRandomLetter from '@/assets/images/go-to-random-letter.webp';
44

55
const GoToRandomLetter = () => {
66
return (
@@ -10,7 +10,7 @@ const GoToRandomLetter = () => {
1010
고민편지 보러가기
1111
</p>
1212
<Link to={'/letter/random'}>
13-
<img src={goToRandomLetter} alt="go to random letter" />
13+
<img src={goToRandomLetter} alt="go to random letter" className="h-45 translate-x-5" />
1414
</Link>
1515
</div>
1616
</>

src/pages/Home/components/HomeBackgroundLeft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import homeLeftMountain from '@/assets/images/home-left-mountain.png';
1+
import homeLeftMountain from '@/assets/images/home-left-mountain.webp';
22
import homeLeftMountainDark from '@/assets/images/home-left-mountain-dark.webp';
33

44
import BackgroundImageWrapper from '@/components/BackgroundImageWrapper';

0 commit comments

Comments
 (0)