Added initial Products page

This commit is contained in:
Keannu Christian Bernasol 2023-02-17 22:11:55 +08:00
parent d72cc5d812
commit 38cd7fe1fa
3 changed files with 56 additions and 7 deletions

View file

@ -105,11 +105,6 @@ export default function Dashboard() {
<h1 style={styles.text_small}>Added: 0</h1>
<h1 style={styles.text_small}>Removed: 60</h1>
<h1 style={styles.text_tiny}>02/17/2023</h1>
<div style={{ marginBottom: "2vh" }} />
<h1 style={styles.text}>Dan's Beefed Corn</h1>
<h1 style={styles.text_small}>Added: 32</h1>
<h1 style={styles.text_small}>Removed: 64</h1>
<h1 style={styles.text_tiny}>02/17/2023</h1>
</DashboardContainer>
</div>
</div>

View file

@ -1,13 +1,20 @@
import React from "react";
import styles from "../../styles";
import AppLogo from "../../Components/Icons/AppLogo/AppLogo";
import ProductsIcon from "../../Components/Icons/ProductsIcon/ProductsIcon";
import ProductListEntry from "../../Components/ProductListEntry/ProductListEntry";
export default function Products() {
return (
<div style={styles.container}>
<div style={styles.wrapper_row}>
<ProductsIcon size={8} color="white" />
<h1 style={styles.text_large}>Products</h1>
</div>
<AppLogo size={8} color="#6f9b78" />
<p style={styles.text}>Ivy - Inventory Manager</p>
<p style={styles.text}>Products Page</p>
<ProductListEntry>
<p style={styles.text}>Beep Boop</p>
</ProductListEntry>
</div>
);
}