Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions src/pages/Login/LoginPage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import KaKao from "@/assets/images/kakao.png";
import Apple from "@/assets/images/apple.png";

export const LoginPage = () => {
const handleKakaoLogin = () => {
window.location.href =
Expand All @@ -21,19 +24,11 @@ export const LoginPage = () => {
className="w-80 bg-kakao h-13 text-black rounded-xl body-r-16 flex gap-2 items-center justify-center cursor-pointer"
onClick={handleKakaoLogin}
>
<img
src="/src/assets/images/kakao.png"
alt="kakao login"
className="size-7"
/>
<img src={KaKao} alt="kakao login" className="size-7" />
카카였 둜그인
</button>
<button className="w-80 bg-black h-13 text-white rounded-xl body-r-16 flex gap-2 items-center justify-center cursor-pointer">
<img
src="/src/assets/images/apple.png"
alt="apple login"
className="size-7 "
/>
<img src={Apple} alt="apple login" className="size-7 " />
Apple 둜그인
</button>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/shared/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useNavigate } from "react-router-dom";
import { cn } from "../utils/cn";
import Logo from "@/assets/images/logo.png";

interface HeaderProps {
className?: string;
Expand All @@ -12,7 +13,7 @@ export const Header = ({ className }: HeaderProps) => {
className={cn("flex gap-2 items-center pb-23 w-full ", className)}
>
<img
src="/src/assets/images/logo.png"
src={Logo}
alt="둜고"
className="w-35 h-12 cursor-pointer"
onClick={() => navigate("/")}
Expand Down
Loading