Skip to content

Commit ee44729

Browse files
authored
Merge pull request #80 from YAPP-Github/chore/PRODUCT-151
chore: 누락된 login 페이지 변경사항 추가 (#79)
2 parents dc289db + a1cca63 commit ee44729

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/(auth)/login/_styles/Login.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const backgroundWrapper = style({
1212
position: "relative",
1313
width: "100%",
1414
height: "100%",
15-
backgroundImage: "url(\"/images/login-background.png\")",
15+
backgroundImage: "url(\"/images/login-background.webp\")",
1616
backgroundSize: "cover",
1717
backgroundRepeat: "no-repeat",
1818
backgroundPosition: "center",

src/app/(auth)/login/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { redirectToKakaoOAuthLoginPage } from "@/app/(auth)/_api/auth/auth.api";
77
import KakaoLogoIcon from "@/assets/kakao-logo.svg";
88
import KoreanOrangeLogo from "@/assets/korean-orange-logo.svg";
99
import { Button } from "@/components/ui/Button";
10-
import { SubGNB } from "@/components/ui/GNB/SubGNB";
10+
import { GNB } from "@/components/ui/GNB";
1111
import { TextButton } from "@/components/ui/TextButton";
1212

1313
import * as styles from "./_styles/Login.css";
@@ -22,7 +22,7 @@ export default function LoginPage() {
2222
return (
2323
<main className={styles.wrapper}>
2424
<div className={styles.backgroundWrapper}>
25-
<SubGNB
25+
<GNB
2626
align='left'
2727
background='transparent'
2828
rightAddon={

0 commit comments

Comments
 (0)