-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1028 from suzinxix/part3-길수진-week15
[길수진] week15
- Loading branch information
Showing
58 changed files
with
870 additions
and
813 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.container { | ||
display: flex; | ||
gap: 0.8rem; | ||
font-size: 1.6rem; | ||
} | ||
|
||
.link { | ||
color: var(--primary-color); | ||
text-decoration: underline; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Link from "next/link"; | ||
import styles from "./Navigation.module.css"; | ||
|
||
type Props = { | ||
question: string; | ||
navigation: string; | ||
link: string; | ||
}; | ||
|
||
const Navigation = ({ question, navigation, link }: Props) => { | ||
return ( | ||
<div className={styles.container}> | ||
<span className={styles.text}>{question}</span> | ||
<Link href={link} className={styles.link}> | ||
{navigation} | ||
</Link> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Navigation; |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.container { | ||
width: 40rem; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 1.2rem 2.4rem; | ||
border-radius: 0.8rem; | ||
border: 1px solid var(--gray20-color); | ||
background: var(--gray10-color); | ||
} | ||
|
||
.text { | ||
color: var(--gray100-color); | ||
font-size: 1.4rem; | ||
} | ||
|
||
.icons { | ||
display: flex; | ||
gap: 1.6rem; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { PropsWithChildren } from "react"; | ||
import styles from "./SocialAuth.module.css"; | ||
import GoogleIcon from "@/images/ic_google_cicle.svg"; | ||
import KakaoIcon from "@/images/ic_kakao_cicle.svg"; | ||
|
||
const SocialAuth = ({ children }: PropsWithChildren) => { | ||
return ( | ||
<div className={styles.container}> | ||
<div className={styles.text}>{children}</div> | ||
<div className={styles.icons}> | ||
<GoogleIcon /> | ||
<KakaoIcon /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SocialAuth; |
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
Oops, something went wrong.