Added other routes. No way to navigate to them yet

This commit is contained in:
Keannu Christian Bernasol 2023-02-15 00:32:29 +08:00
parent 32e7ab8830
commit 1a1b334f7d
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import React from "react";
import AppLogo from "../../Components/Icons/AppLogo/AppLogo";
import styles from "../../styles";
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>
</div>
);
}

View file

@ -0,0 +1,13 @@
import React from "react";
import styles from "../../styles";
import AppLogo from "../../Components/Icons/AppLogo/AppLogo";
export default function Products() {
return (
<div style={styles.container}>
<AppLogo size={64} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Products Page</p>
</div>
);
}