feat(website): mobile toggle menu

This commit is contained in:
Elian Doran
2025-09-27 17:22:34 +03:00
parent 35853ff988
commit ac45617d8f
4 changed files with 68 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ interface LinkProps {
openExternally?: boolean;
children: ComponentChildren;
title?: string;
onClick?: (e: MouseEvent) => void;
}
interface ButtonProps extends Omit<LinkProps, "children"> {