-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
error(login): 인증 토큰 발급 문제 해결
- Loading branch information
Showing
15 changed files
with
193 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,34 @@ | ||
import type { ReactNode } from "react"; | ||
import Image from "next/image"; | ||
import { SpacerSkleton } from "@/components/common/spacer"; | ||
import Typography from "@/components/common/text/Typography"; | ||
|
||
interface Props { | ||
children: ReactNode; | ||
} | ||
|
||
export function OAuthLoginLayout({ children }: Props) { | ||
return <div>{children}</div>; | ||
return ( | ||
<SpacerSkleton | ||
id="main-content" | ||
type="vertical" | ||
justify="center" | ||
align="center" | ||
gap={40} | ||
> | ||
<Image | ||
src="/icon/plavnewniverse_black_logo.svg" | ||
width={150} | ||
height={150} | ||
alt="playvnewniverse_black_logo" | ||
/> | ||
<SpacerSkleton type="vertical" align="center"> | ||
<Typography typo="subhead01"> | ||
NEWNIVERSE 서비스를 이용하기 위해 | ||
</Typography> | ||
<Typography typo="subhead01">로그인을 진행해 주세요</Typography> | ||
</SpacerSkleton> | ||
{children} | ||
</SpacerSkleton> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.