2021-06-20 13:39:00 +02:00
|
|
|
import { Typography } from '@material-ui/core'
|
|
|
|
import CardContainer from '../components/CardContainer'
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<h1>Welcome User!</h1>
|
|
|
|
<div className='grid'>
|
2021-06-20 15:49:56 +02:00
|
|
|
<CardContainer title='Commands' link='/controlpanel/commands'>Command controls</CardContainer>
|
|
|
|
<CardContainer title='Commands' link='/controlpanel/commands'>Command controls</CardContainer>
|
|
|
|
<CardContainer title='Commands' link='/controlpanel/commands'>Command controls</CardContainer>
|
|
|
|
<CardContainer title='Commands' link='/controlpanel/commands'>Command controls</CardContainer>
|
|
|
|
<CardContainer title='Commands' link='/controlpanel/commands'>Command controls</CardContainer>
|
2021-06-20 13:39:00 +02:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|