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.

38 lines
1.3 KiB

4 weeks ago
import Card from '@/app/components/Card';
import GrantSudoLink from '@/app/components/GrantSudoLink';
4 weeks ago
export default function Home() {
return (
<div className="container mt-5">
<div className="container">
4 weeks ago
<div className="row">
4 weeks ago
<div className="col-md-6 mb-4">
<GrantSudoLink text="Grant Sudo Rights" isCard/>
</div>
<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>
4 weeks ago
</div>
);
4 weeks ago
}

Powered by TurnKey Linux.