Added 404 icon

This commit is contained in:
Keannu Christian Bernasol 2023-02-16 14:40:19 +08:00
parent a19d644e7a
commit 9ae0a8b569
2 changed files with 34 additions and 3 deletions

View file

@ -1,13 +1,13 @@
import React from "react";
import AppLogo from "../../Components/Icons/AppLogo/AppLogo";
import styles from "../../styles";
import NotFoundIcon from "../../Components/Icons/NotFoundIcon/NotFoundIcon";
export default function Error() {
return (
<div style={styles.container}>
<AppLogo size={64} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Error 404: Page Not Found</p>
<NotFoundIcon size={64} color="#a44141" />
<p style={styles.text}>Could not find the requested page</p>
</div>
);
}