You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.0 KiB

import Card from './components/Card';
export default function Home() {
return (
<div className="container mt-5">
<div className="container">
<div className="row">
<Card
title="Leases"
text="View current DHCP leases."
url="/dhcp/leases"
/>
<Card
title="Configure Options"
text="Edit DHCP server options and restart the server."
url="/dhcp/configure"
/>
<Card
title="TFTP Files"
text="Manage files in the TFTP server directory."
url="/tftp/files"
/>
<Card
title="TFTP Logs"
text="See the TFTP Logs."
url="/tftp/logs"
/>
</div>
</div>
</div>
);
}

Powered by TurnKey Linux.