-
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.
- Loading branch information
1 parent
ea5476c
commit 661eb0a
Showing
11 changed files
with
111 additions
and
54 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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
{ | ||
"locales": ["en", "ja"], | ||
"locales": [ | ||
"en", | ||
"ja" | ||
], | ||
"defaultLocale": "ja", | ||
"pages": { | ||
"*": ["common"] | ||
"*": [ | ||
"common", | ||
"admin" | ||
] | ||
} | ||
} |
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 +1,12 @@ | ||
{} | ||
{ | ||
"quest": { | ||
"SELECT_SHEET": "Select Sheet", | ||
"SELECT_SHEET_LABEL": "Select Sheet" | ||
}, | ||
"tab": { | ||
"SET_QUESTIONS": "Set Quests", | ||
"MANAGE_STUDENTS": "Manage Students", | ||
"STATISTICS": "Statistics", | ||
"SETTINGS": "Settings" | ||
} | ||
} |
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 +1,12 @@ | ||
{} | ||
{ | ||
"quests": { | ||
"SELECT_SHEET": "Select Sheet", | ||
"SELECT_SHEET_LABEL": "Select Sheet" | ||
}, | ||
"tab": { | ||
"SET_QUESTIONS": "Set Quests", | ||
"MANAGE_STUDENTS": "Manage Students", | ||
"STATISTICS": "Statistics", | ||
"SETTINGS": "Settings" | ||
} | ||
} |
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,10 +1,20 @@ | ||
import { Heading } from '@chakra-ui/react'; | ||
import { Container, FormControl, FormHelperText, FormLabel, Heading, Input } from '@chakra-ui/react'; | ||
import useTranslation from 'next-translate/useTranslation'; | ||
|
||
const FaucetPage = () =>{ | ||
return( | ||
const FaucetPage = () => { | ||
const { t } = useTranslation('common'); | ||
return ( | ||
<> | ||
<Heading>Faucet</Heading> | ||
<Container size={'xl'} py={10}> | ||
<FormControl> | ||
<FormLabel>{t('faucet.ADDRESS_LABEL')}</FormLabel> | ||
<Input placeholder={'0x00000000000000000000'} size={'lg'} borderRadius={'full'}/> | ||
<FormHelperText>{t('faucet.ADDRESS_HELP_TEXT')}</FormHelperText> | ||
<FormHelperText>{t('faucet.ADDRESS_HELP_TEXT')}</FormHelperText> | ||
</FormControl> | ||
</Container> | ||
</> | ||
) | ||
} | ||
); | ||
}; | ||
export default FaucetPage; |
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
661eb0a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
cit-coin-ui – ./
cit-coin-ui-git-dev-pitpa.vercel.app
cit-coin-ui.vercel.app
cit-coin-ui-pitpa.vercel.app