21 lines
687 B
TypeScript
Raw Normal View History

2022-08-09 21:28:46 -05:00
import React from 'react'
2022-08-09 21:57:29 -05:00
import Typography from '@mui/material/Typography'
2022-08-09 21:28:46 -05:00
export function Home() {
2022-08-09 21:57:29 -05:00
return (
<div className="Home">
<header className="max-w-3xl text-center mx-auto">
<Typography variant="h1">chitchatter</Typography>
<Typography variant="body1">
This is a communication tool that is free, open source, and designed
for maximum security. All communication between you and your online
peers is encrypted and ephemeral.
</Typography>
2022-08-09 22:14:59 -05:00
<Typography variant="body1">
chitchatter is still a work in progress and not yet ready to be used!
</Typography>
2022-08-09 21:57:29 -05:00
</header>
</div>
)
2022-08-09 21:28:46 -05:00
}