-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/Kernel360/f1-Yigil into …
…74-내-정보-조회
- Loading branch information
Showing
33 changed files
with
212 additions
and
152 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Yigil issue template | ||
about: Describe this issue template's purpose here. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### 📝Description | ||
|
||
### ✅Task | ||
- [ ] task1 | ||
- [ ] task2 | ||
|
||
### ✍️Additional |
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,11 @@ | ||
## Motivation 🧐 | ||
|
||
- | ||
|
||
<br> | ||
|
||
## Key Changes 🔑 | ||
|
||
<br> | ||
|
||
## To Reviewers 🙏 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
import React from 'react'; | ||
import HeaderIcons from './ui/HeaderIcons'; | ||
import HeaderLogo from './ui/HeaderLogo'; | ||
|
||
export default function Header() { | ||
return ( | ||
<div className="w-full h-[80px] flex justify-center items-center"> | ||
<HeaderLogo /> | ||
<HeaderIcons /> | ||
</div> | ||
); | ||
} |
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 Image from 'next/image'; | ||
import React from 'react'; | ||
import SearchIcon from '/public/icons/search.svg'; | ||
import BellIcon from '/public/icons/bell.svg'; | ||
import Link from 'next/link'; | ||
|
||
export default function HeaderIcons() { | ||
return ( | ||
<div className="absolute right-4 flex items-center gap-x-2 "> | ||
<Link href="/search"> | ||
<Image src={SearchIcon} alt="search-icon" /> | ||
</Link> | ||
<Link href="/notification"> | ||
<Image src={BellIcon} alt="bell-icon" /> | ||
</Link> | ||
</div> | ||
); | ||
} |
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,7 @@ | ||
import Image from 'next/image'; | ||
import React from 'react'; | ||
import headerLogo from '/public/logo/header-logo.svg'; | ||
|
||
export default function HeaderLogo() { | ||
return <Image src={headerLogo} alt="yigil-header-logo" />; | ||
} |
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
frontend/src/app/_components/ui/button/GoogleLoginButton.tsx
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 @@ | ||
'use client'; | ||
|
||
import Image from 'next/image'; | ||
import { signIn } from 'next-auth/react'; | ||
|
||
import googleLogo from '@/../public/loginBtns/google_login.svg'; | ||
|
||
export default function GoogleLoginButton() { | ||
return ( | ||
<button | ||
className="w-[300px] border-none hover:cursor-pointer flex rounded-full px-[24px] py-[8px] items-center" | ||
onClick={() => signIn('google', { callbackUrl: '/' })} | ||
> | ||
<Image src={googleLogo} alt="Google Logo" width={24} height={24} /> | ||
<span className="ml-[32px] text-lg">Google 계정으로 로그인</span> | ||
</button> | ||
); | ||
} |
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 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
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,5 @@ | ||
import React from 'react'; | ||
|
||
export default function FollowPage() { | ||
return <div>FollowPage</div>; | ||
} |
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,7 @@ | ||
import React from 'react' | ||
|
||
export default function LoginLogo() { | ||
return ( | ||
<div>LoginLogo</div> | ||
) | ||
} |
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 React from 'react'; | ||
|
||
import KakaoBtn from '@/app/_components/ui/button/Kakao'; | ||
import GoogleLoginButton from '@/app/_components/ui/button/GoogleLoginButton'; | ||
|
||
import LoginLogo from './_components/ui/LoginLogo'; | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="w-full h-screen bg-main flex flex-col justify-center items-center"> | ||
<LoginLogo /> | ||
<div className="text-xl text-[white]"> | ||
서비스를 사용하시려면 로그인 해주세요 | ||
</div> | ||
<div className="mt-8 flex flex-col items-center justify-center gap-4"> | ||
<KakaoBtn /> | ||
<GoogleLoginButton /> | ||
</div> | ||
</div> | ||
); | ||
} |
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,5 @@ | ||
import React from 'react'; | ||
|
||
export default function MyGilPage() { | ||
return <div>MyGilPage</div>; | ||
} |
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,5 @@ | ||
import React from 'react'; | ||
|
||
export default function MyPage() { | ||
return <div>MyPage</div>; | ||
} |
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,7 @@ | ||
import React from 'react'; | ||
|
||
function NotificationPage() { | ||
return <div>NotificationPage</div>; | ||
} | ||
|
||
export default NotificationPage; |
Oops, something went wrong.