Add base web UI

This commit is contained in:
2025-03-18 19:14:46 +01:00
parent abc75786f7
commit dbe1ec22e0
36 changed files with 2575 additions and 248 deletions

View File

@ -0,0 +1,13 @@
import { Button } from "@mui/material";
import { Link } from "react-router-dom";
export function AuthSingleMessage(p: { message: string }): React.ReactElement {
return (
<>
<p style={{ textAlign: "center" }}>{p.message}</p>
<Link to={"/"}>
<Button>Go back home</Button>
</Link>
</>
);
}