Skip to content

chore(site): remove Typography component #10769

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Nov 20, 2023
Prev Previous commit
Next Next commit
Remove from not found
  • Loading branch information
BrunoQuaresma committed Nov 17, 2023
commit f16478da3a51c89e3319be5a0359dba18a249882
5 changes: 2 additions & 3 deletions site/src/pages/404Page/404Page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Typography from "@mui/material/Typography";
import { type FC } from "react";

export const NotFoundPage: FC = () => {
Expand All @@ -20,9 +19,9 @@ export const NotFoundPage: FC = () => {
borderRight: theme.palette.divider,
})}
>
<Typography variant="h4">404</Typography>
<h4>404</h4>
</div>
<Typography variant="body2">This page could not be found.</Typography>
<p>This page could not be found.</p>
</div>
);
};
Expand Down