nyx-dashboard/pages/index.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

import Card from '../components/Card'
import { useSession } from 'next-auth/client'
import { Text } from "@chakra-ui/react"
2021-06-28 06:19:32 +02:00
import Hero from '../components/Hero/Hero'
2021-06-28 15:58:43 +02:00
import {CTA} from '../components/CTA'
import { Features } from '../components/Features/Features'
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 && <>
2021-06-28 06:19:32 +02:00
<Hero title='Cath.exe' subtitle='Your favorite CODM bot. Cath.exe is packed to the brim with commands for moderation, stats and of course, CODM.' ctaText='Sign In' image='/logo.png'/>
2021-06-28 15:58:43 +02:00
<Features/>
<CTA/>
</>
}
{session && <>
<Text fontSize='4xl'>Welcome {session.user.name}!</Text>
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
)
}