main: added public pages section to Home page.
This commit is contained in:
parent
dcabdb446c
commit
f3491836ce
@ -11,7 +11,7 @@ RemnantChat is a free (as in both price and freedom) communication tool. It is f
|
||||
- Ephemeral
|
||||
- Message content is never persisted to disk on either the client or server
|
||||
- Decentralized
|
||||
- There is no API server. All that's required for RemnantChat to function is availability of GitHub for static assets, and public WebTorrent and STUN/TURN relay servers for establishing peer-to-peer communication.
|
||||
- There is no API server. All that's required for RemnantChat to function is availability of static assets on the server, and public WebTorrent and STUN/TURN relay servers for establishing peer-to-peer communication.
|
||||
- Embeddable
|
||||
- [Self-hostable](#self-hosting)
|
||||
|
||||
@ -89,6 +89,9 @@ The core of RemnantChat's security model is the fact that it is fully open sourc
|
||||
|
||||
- Add room moderation
|
||||
- Chat history persistence settings
|
||||
- Direct Messaging
|
||||
- Emoticons on desktop (also ability to react to messages)
|
||||
- Respond to messages
|
||||
|
||||
## Environments
|
||||
|
||||
|
@ -134,7 +134,7 @@ export function Home({ userId }: HomeProps) {
|
||||
}}
|
||||
disabled={!isRoomNameValid}
|
||||
>
|
||||
Join public room
|
||||
Create public room
|
||||
</Button>
|
||||
<Button
|
||||
variant="contained"
|
||||
@ -145,7 +145,7 @@ export function Home({ userId }: HomeProps) {
|
||||
}}
|
||||
disabled={!isRoomNameValid}
|
||||
>
|
||||
Join private room
|
||||
Create private room
|
||||
</Button>
|
||||
<Button
|
||||
variant="contained"
|
||||
@ -176,46 +176,39 @@ export function Home({ userId }: HomeProps) {
|
||||
}}
|
||||
>
|
||||
<Typography variant="body1">
|
||||
This is a free communication tool that is designed for simplicity,
|
||||
privacy, and security. All interaction between you and your online
|
||||
peers is encrypted. There is no record of your conversation once you
|
||||
all leave.
|
||||
The secure communication tool that is designed for simplicity,
|
||||
privacy. All interaction between you and your online peers is
|
||||
encrypted. Conversation records are dumped once everyone leaves.
|
||||
</Typography>
|
||||
<Box className="max-w-3xl text-center mx-auto my-4 px-4">
|
||||
{' '}
|
||||
<Typography variant="body1">Romans 11:5</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
<Box
|
||||
sx={{
|
||||
mx: 'auto',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
}}
|
||||
>
|
||||
<Divider sx={{ my: 2 }} />
|
||||
<Box className="max-w-3xl text-center mx-auto my-4 px-4">
|
||||
<Typography variant="body1">Official Public Rooms to Join:</Typography>
|
||||
<MuiLink
|
||||
href="https://githaven.org/shiloh/remnantchat"
|
||||
href="/public/general"
|
||||
target="_blank"
|
||||
sx={theme => ({
|
||||
color: theme.palette.text.primary,
|
||||
})}
|
||||
>
|
||||
<IconButton
|
||||
size="large"
|
||||
edge="start"
|
||||
color="inherit"
|
||||
aria-label="Open menu"
|
||||
></IconButton>
|
||||
<Typography variant="body1">• General Chat</Typography>
|
||||
</MuiLink>
|
||||
</Box>
|
||||
<Typography variant="body1" sx={{ textAlign: 'center', mb: 1 }}>
|
||||
Licensed under{' '}
|
||||
<MuiLink
|
||||
href="https://githaven.org/shiloh/remnantchat/LICENSE"
|
||||
href="https://githaven.org/Shiloh/remnantchat/src/branch/main/LICENSE"
|
||||
target="_blank"
|
||||
>
|
||||
GPL v2
|
||||
</MuiLink>
|
||||
. Please{' '}
|
||||
<MuiLink
|
||||
href="https://githaven.org/shiloh/remnantchat/README.md"
|
||||
href="https://githaven.org/Shiloh/remnantchat/src/branch/main/README.md"
|
||||
target="_blank"
|
||||
>
|
||||
read the docs
|
||||
|
Loading…
Reference in New Issue
Block a user