summaryrefslogtreecommitdiff
path: root/src/modules/login/index.tsx
blob: e2b3675cb45832c81945f37d908012ea94857507 (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={2} />
        <h2 className={styles.subtitle}>Masuk terlebih dahulu untuk melanjutkan</h2>
      </div>

      <Spacer y={12} />
      <Form />
    </div>
  )
}

export default Login