feat: add basic home content

This commit is contained in:
Jeremy Kahn 2022-08-09 21:57:29 -05:00
parent 98dc1d9ff1
commit 3b1a55067d

View File

@ -1,5 +1,17 @@
import React from 'react' import React from 'react'
import Typography from '@mui/material/Typography'
export function Home() { export function Home() {
return <div className="Home"></div> 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>
</header>
</div>
)
} }