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.

15 lines
492 B

import Card from '@/app/components/Card';
export default function Home() {
return (
<div className="d-flex justify-content-center align-items-center" style={{ minHeight: '80vh' }}>
<div className="container">
<div className="row">
<Card title="Leases" text="View current DHCP leases." url="/leases" />
<Card title="Configure Options" text="Configure new DHCP options." url="/configure" />
</div>
</div>
</div>
);
}

Powered by TurnKey Linux.