nyx-dashboard/pages/controlpanel/index.js

34 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-06-20 15:49:56 +02:00
import React from 'react'
import Card from '../../components/Card'
2021-06-21 05:18:30 +02:00
import Head from 'next/head'
2021-06-22 02:22:10 +02:00
import { useSession } from 'next-auth/client'
import { Text } from "@chakra-ui/react"
2021-06-20 15:49:56 +02:00
2021-06-22 02:24:07 +02:00
function Index() {
2021-06-22 02:22:10 +02:00
const [session, loading] = useSession()
2021-06-20 15:49:56 +02:00
return (
2021-06-21 05:18:30 +02:00
<>
2021-06-22 02:22:10 +02:00
{!session && <>
<h1>Seems like you&apos;re not logged in. Log in to get started!</h1>
</>
}
{session && <>
<Head>
<title>Cath Control Panel</title>
</Head>
<div>
<Text fontSize='4xl'>Control Panel</Text>
<Card title='Commands' desc='Control your commands and their settings.' link='/controlpanel/commands'/>
<Card title='Commands' desc='Control your commands and their settings.' link='/controlpanel/commands'/>
<Card title='Commands' desc='Control your commands and their settings.' link='/controlpanel/commands'/>
2021-06-22 02:22:10 +02:00
</div>
</>
}
2021-06-21 05:18:30 +02:00
</>
2021-06-20 15:49:56 +02:00
)
}
2021-06-22 02:24:07 +02:00
export default Index