Added routing structure and polished Dashboard

This commit is contained in:
Keannu Christian Bernasol 2023-02-14 20:29:42 +08:00
parent 4e2fb294c2
commit 576a5bab9b
3 changed files with 38 additions and 26 deletions

View file

@ -0,0 +1,16 @@
import React from "react";
import AppLogo from "../../components/Icons/AppLogo/AppLogo";
import "../../index.css";
import styles from "../../styles";
export default function Dashboard() {
return (
<div style={styles.background}>
<div style={styles.container}>
<AppLogo size={64} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Welcome to the Dashboard</p>
</div>
</div>
);
}