Added initial dashboard and error pages

This commit is contained in:
Keannu Christian Bernasol 2023-11-17 17:16:43 +08:00
parent 46fac86ee6
commit 9c4a5fd4fb
3 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,13 @@
import styles from "../../styles";
export default function Dashboard() {
return (
<div style={styles.background}>
<p style={{ ...styles.text_dark, ...styles.text_M }}>
CITC EQUIPMENT
<br />
TRACKER
</p>
</div>
);
}