-
-
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.
Merge pull request #46 from pulsate-dev/issue-45
feat: add LINE Seed JP
- Loading branch information
Showing
8 changed files
with
145 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import { | ||
Box, | ||
Button, | ||
Card, | ||
Flex, | ||
Link, | ||
TabNav, | ||
Text, | ||
TextField | ||
} from "@radix-ui/themes"; | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<Box> | ||
<Flex | ||
align="center" | ||
justify="center" | ||
m="-2" | ||
width="100vw" | ||
height="100vh" | ||
direction="column" | ||
style={{ | ||
background: "#0f0e3b" | ||
}} | ||
> | ||
<Flex | ||
style={{ | ||
background: "var(--gray-9)", | ||
borderRadius: "var(--radius-3)", | ||
minWidth: "30%" | ||
}} | ||
direction="column" | ||
gap="4" | ||
p="4" | ||
> | ||
<Text size="6" weight="bold" style={{}}> | ||
ログイン | ||
</Text> | ||
<Box> | ||
<Text size="4" style={{}}> | ||
ID/メールアドレス | ||
</Text> | ||
<TextField.Root /> | ||
</Box> | ||
<Box> | ||
<Text size="4" style={{}}> | ||
パスワード | ||
</Text> | ||
<TextField.Root /> | ||
</Box> | ||
<Button style={{ margin: "auto", maxWidth: "100px" }}> | ||
ログイン | ||
</Button> | ||
<Link href="/register" style={{ margin: "auto" }}> | ||
新規登録 | ||
</Link> | ||
</Flex> | ||
</Flex> | ||
<footer | ||
style={{ position: "absolute", bottom: 0, color: "var(--gray-1)" }} | ||
> | ||
<Flex gap="4"> | ||
<Text style={{ color: "var(--gray-1)" }}>Pulsate v0.1.0</Text> | ||
<Link | ||
href="https://pulsate.dev/about" | ||
underline="always" | ||
style={{ | ||
color: "var(--gray-1)" | ||
}} | ||
> | ||
Pulsateについて | ||
</Link> | ||
<Link | ||
href="https://github.com/pulsate-dev" | ||
underline="always" | ||
style={{ | ||
color: "var(--gray-1)" | ||
}} | ||
> | ||
ソースコード | ||
</Link> | ||
</Flex> | ||
</footer> | ||
</Box> | ||
); | ||
} |
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,32 @@ | ||
/*! | ||
* "LINE Seed JP" licensed under the SIL Open Font License | ||
* https://seed.line.me/ | ||
*/ | ||
|
||
@font-face { | ||
font-family: 'LINE Seed JP'; | ||
font-weight: 300; | ||
src: url("/assets/fonts/LINESeedJP_OTF_Th.woff2") format("woff2") | ||
} | ||
|
||
@font-face { | ||
font-family: 'LINE Seed JP'; | ||
font-weight: 400; | ||
src: url("/assets/fonts/LINESeedJP_OTF_Rg.woff2") format("woff2") | ||
} | ||
|
||
@font-face { | ||
font-family: 'LINE Seed JP'; | ||
font-weight: 500; | ||
src: url("/assets/fonts/LINESeedJP_OTF_Bd.woff2") format("woff2") | ||
} | ||
|
||
@font-face { | ||
font-family: 'LINE Seed JP'; | ||
font-weight: 700; | ||
src: url("/assets/fonts/LINESeedJP_OTF_Eb.woff2") format("woff2") | ||
} | ||
|
||
.radix-themes { | ||
--default-font-family: 'LINE Seed JP', -apple-system, BlinkMacSystemFont, 'Segoe UI (Custom)', Roboto, 'Helvetica Neue', 'Open Sans (Custom)', system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.