Protected control panel
This commit is contained in:
parent
8d750fd31c
commit
53cca9581d
1 changed files with 18 additions and 7 deletions
|
@ -1,10 +1,19 @@
|
|||
import React from 'react'
|
||||
import CardContainer from '../../components/CardContainer'
|
||||
import Head from 'next/head'
|
||||
import { useSession } from 'next-auth/client'
|
||||
|
||||
function index() {
|
||||
|
||||
const [session, loading] = useSession()
|
||||
|
||||
return (
|
||||
<>
|
||||
{!session && <>
|
||||
<h1>Seems like you're not logged in. Log in to get started!</h1>
|
||||
</>
|
||||
}
|
||||
{session && <>
|
||||
<Head>
|
||||
<title>Cath Control Panel</title>
|
||||
</Head>
|
||||
|
@ -13,6 +22,8 @@ function index() {
|
|||
<CardContainer link='/controlpanel/commands'>Commands</CardContainer>
|
||||
</div>
|
||||
</>
|
||||
}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue