Next.js+React web interface for controlling HAProxy clusters (groups of servers), in conjunction with with https://gitgud.io/fatchan/haproxy-protection.
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.
 
 

14 lines
239 B

import Head from 'next/head';
import MenuLinks from '../components/MenuLinks';
export default function Menu() {
return (<>
<Head>
<title>Menu</title>
</Head>
<div className='p-4 mobile-menu'>
<MenuLinks />
</div>
</>);
}