diff options
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 |
