-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Circles V2 info
- Loading branch information
Showing
16 changed files
with
44 additions
and
341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { Box, Typography } from '@mui/material'; | ||
import makeStyles from '@mui/styles/makeStyles'; | ||
import React from 'react'; | ||
|
||
import ExternalLink from '~/components/ExternalLink'; | ||
import translate from '~/services/locale'; | ||
import { DISCORD_URL } from '~/utils/constants'; | ||
|
||
const useStyles = makeStyles(() => ({ | ||
messageContainer: { | ||
marginTop: '10px', | ||
'& p': { | ||
marginBottom: '10px', | ||
}, | ||
textAlign: 'center', | ||
}, | ||
})); | ||
|
||
const ShortMessage = () => { | ||
const classes = useStyles(); | ||
|
||
return ( | ||
<Box className={classes.messageContainer}> | ||
<Typography align="center" variant="body1"> | ||
{translate('Login.ShortMsgText')} | ||
</Typography> | ||
<ExternalLink href={DISCORD_URL} variant="body2"> | ||
{DISCORD_URL} | ||
</ExternalLink> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default ShortMessage; |
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 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
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.