blob: 7247af4f01c4fcc2175d12ee86d48b9dcf8329ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|