From 3b1a55067d054fa5a8a6087e5c694d4def432b48 Mon Sep 17 00:00:00 2001 From: Jeremy Kahn Date: Tue, 9 Aug 2022 21:57:29 -0500 Subject: [PATCH] feat: add basic home content --- src/pages/Home/Home.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/pages/Home/Home.tsx b/src/pages/Home/Home.tsx index fd4acb3..47ae295 100644 --- a/src/pages/Home/Home.tsx +++ b/src/pages/Home/Home.tsx @@ -1,5 +1,17 @@ import React from 'react' +import Typography from '@mui/material/Typography' export function Home() { - return
+ return ( +
+
+ chitchatter + + 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. + +
+
+ ) }