chore(frontend): update Next to 13.0.4

This commit is contained in:
Sam 2022-11-19 16:52:52 +01:00
parent 08554eef38
commit 493c0963d5
5 changed files with 500 additions and 293 deletions

View file

@ -9,10 +9,11 @@ export interface Props {
export default function NavItem(props: Props) {
const ret = (
<Link href={props.href}>
<a className="hover:text-sky-500 dark:hover:text-sky-400">
{props.children}
</a>
<Link
href={props.href}
className="hover:text-sky-500 dark:hover:text-sky-400"
>
{props.children}
</Link>
);