diff options
Diffstat (limited to 'src/modules/login/index.tsx')
| -rw-r--r-- | src/modules/login/index.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/modules/login/index.tsx b/src/modules/login/index.tsx new file mode 100644 index 0000000..7247af4 --- /dev/null +++ b/src/modules/login/index.tsx @@ -0,0 +1,20 @@ +import { Spacer } from "@nextui-org/react" +import Form from "./components/Form" +import styles from "./login.module.css" + +const Login = () => { + return ( + <div className={styles.wrapper}> + <div className={styles.header}> + <h1 className={styles.title}>Stock Opname</h1> + <Spacer y={1} /> + <h2 className={styles.subtitle}>Masuk terlebih dahulu untuk melanjutkan</h2> + </div> + + <Spacer y={10} /> + <Form /> + </div> + ) +} + +export default Login
\ No newline at end of file |
