nyx-dashboard/pages/index.js

32 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-06-20 13:39:00 +02:00
import { Typography } from '@material-ui/core'
import CardContainer from '../components/CardContainer'
import Card from '../components/Card'
import { useSession } from 'next-auth/client'
2021-06-20 13:39:00 +02:00
export default function Home() {
const [session, loading] = useSession()
2021-06-20 13:39:00 +02:00
return (
<>
{!session && <>
<h1>Seems like you&apos;re not logged in. Log in to get started!</h1>
</>
}
{session && <>
<h1>Welcome {session.user.name}!</h1>
2021-06-20 13:39:00 +02:00
<div className='grid'>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
<Card title='commands' desc='lorem ipsum dolor sit amet' link='/controlpanel/commands'/>
2021-06-20 13:39:00 +02:00
</div>
</>
}
</>
2021-06-20 13:39:00 +02:00
)
}