nyx-dashboard/pages/controlpanel/index.js
2021-06-21 11:18:30 +08:00

19 lines
451 B
JavaScript

import React from 'react'
import CardContainer from '../../components/CardContainer'
import Head from 'next/head'
function index() {
return (
<>
<Head>
<title>Cath Control Panel</title>
</Head>
<div>
<h1>Control Panel</h1>
<CardContainer link='/controlpanel/commands'>Commands</CardContainer>
</div>
</>
)
}
export default index