import { Button } from "@mantine/core"; interface NavigationLinkProps { onClick: () => void; text: string; isDisabled?: boolean; } export default function NavigationLink({ onClick, text, isDisabled = false, }: NavigationLinkProps) { return (