import { Typography } from '@material-ui/core'
import CardContainer from '../components/CardContainer'
import { useSession } from 'next-auth/client'
export default function Home() {
const [session, loading] = useSession()
return (
<>
{!session && <>
Seems like you're not logged in. Log in to get started!
>
}
{session && <>
Welcome {session.user.name}!
Command controls
Command controls
Command controls
Command controls
Command controls
>
}
>
)
if (!session) {
return (
<>
Welcome User!
Command controls
Command controls
Command controls
Command controls
Command controls
>
)
} else {
return (
<>
Seems like you're not logged in. Log in to get started!
>
)
}
}