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
711 B

import Link from 'next/link';
import { FC } from 'react';
interface SidebarProps {
};
const Sidebar:FC<SidebarProps > = () => {
return (
<>
<ul className="h-full p-4 text-white rounded-lg menu-compact w-80 sm:w-60 bg-gradient-to-b from-blue-700 to-sky-500">
<li>
<Link href={"/compania"}>{"Compañia"}</Link>
</li>
<li>
<Link href={"/cliente"}>{"Cliente"}</Link>
</li>
<li>
<Link href={"/producto"}>{"Producto"}</Link>
</li>
<li>
<Link href={"/pedido"}>{"Pedido"}</Link>
</li>
</ul>
</>
);
}
export default Sidebar