nyx-dashboard/pages/controlpanel/index.js

20 lines
451 B
JavaScript
Raw Normal View History

2021-06-20 15:49:56 +02:00
import React from 'react'
import CardContainer from '../../components/CardContainer'
2021-06-21 05:18:30 +02:00
import Head from 'next/head'
2021-06-20 15:49:56 +02:00
function index() {
return (
2021-06-21 05:18:30 +02:00
<>
<Head>
<title>Cath Control Panel</title>
</Head>
<div>
<h1>Control Panel</h1>
<CardContainer link='/controlpanel/commands'>Commands</CardContainer>
</div>
</>
2021-06-20 15:49:56 +02:00
)
}
export default index