mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2025-04-19 00:11:29 +08:00
20 lines
697 B
TypeScript
20 lines
697 B
TypeScript
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" />
|
|
<ProductListEntry>
|
|
<p style={styles.text}>Beep Boop</p>
|
|
</ProductListEntry>
|
|
</div>
|
|
);
|
|
}
|