-
Notifications
You must be signed in to change notification settings - Fork 0
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 #29 from openhacku-team-a/feature/login-page
ログインページ
- Loading branch information
Showing
6 changed files
with
23 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from "react"; | ||
import { login } from "@/lib/firebase/auth"; | ||
import LoginButton from "@/components/atoms/LoginButton"; | ||
|
||
const Login = () => { | ||
return ( | ||
<div className="flex items-center justify-center h-screen flex-col"> | ||
<h1 className="font-bold sm:text-6xl font-serif mb-5 text-4xl">Career Canvas</h1> | ||
<p className="font-bold sm:text-2xl font-sans mb-7 text-lg"> | ||
キャリアプランを設計するためのサービス | ||
</p> | ||
<LoginButton onClick={login} /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Login; |