Skip to content

Commit

Permalink
fix 404
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfauquette committed Aug 13, 2024
1 parent 397032a commit 2f6b815
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/not-found/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { useTranslation } from "react-i18next";
import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography";
import Link from "@mui/material/Link";
import logo from "../../assets/404.png";

export default function Insights() {
const { t } = useTranslation();
Expand All @@ -17,7 +18,7 @@ export default function Insights() {
height: "auto",
}}
alt={t("notfound.image_alt")}
src={require("../../assets/404.png")}
src={logo}
/>
<Typography variant="h4">{t("notfound.nopage")}</Typography>
<Typography variant="body1" sx={{ mt: 2 }}>
Expand Down

0 comments on commit 2f6b815

Please sign in to comment.