diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-11-20 01:08:57 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-11-20 01:08:57 +0700 |
| commit | 6df02d6a2bf6d5ea77f7703917f2709562308a1a (patch) | |
| tree | 4695dcefecead7d66ebec74b938e0987328ce1cd /src/pages/activate.js | |
| parent | ce16ffadc9c0db5a31665d30aff2b6eeaa8e7834 (diff) | |
Improve page transition and product card badge
Diffstat (limited to 'src/pages/activate.js')
| -rw-r--r-- | src/pages/activate.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pages/activate.js b/src/pages/activate.js index 8c4fc9aa..cb1385ba 100644 --- a/src/pages/activate.js +++ b/src/pages/activate.js @@ -5,6 +5,7 @@ import Link from "next/link"; import { useRouter } from "next/router"; import { useEffect, useState } from "react"; import Alert from "../components/Alert"; +import Layout from "../components/Layout"; import Spinner from "../components/Spinner"; import { setAuth } from "../helpers/auth"; import Logo from "../images/logo.png"; @@ -78,7 +79,7 @@ export default function Activate() { <Head> <title>Aktivasi Akun Indoteknik</title> </Head> - <main className="max-w-lg mx-auto flex flex-col items-center px-4 pb-8"> + <Layout className="max-w-lg mx-auto flex flex-col items-center px-4 pb-8"> <Link href="/" className="mt-16"> <Image src={Logo} alt="Logo Indoteknik" width={165} height={42} /> </Link> @@ -104,7 +105,7 @@ export default function Activate() { ) : 'Kirim Email'} </button> </form> - </main> + </Layout> </> ) }
\ No newline at end of file |
