Whatsapp service updates

This commit is contained in:
Darren Clarke 2024-05-16 18:22:10 +02:00
parent e22a8e8d98
commit 3da103c010
16 changed files with 151 additions and 36 deletions

View file

@ -1,5 +1,10 @@
import { FC } from "react";
import { Box } from "@mui/material";
export const Home: FC = () => {
return <h1>Home</h1>;
return (
<Box sx={{ p: 3, fontSize: 30, fontWeight: "bold", textAlign: "center" }}>
Overview
</Box>
);
};