diff --git a/web/.eslintrc.js b/web/.eslintrc.js new file mode 100644 index 00000000..372eaa90 --- /dev/null +++ b/web/.eslintrc.js @@ -0,0 +1,10 @@ +module.exports = { + parser: '@typescript-eslint/parser', + extends: [ + 'plugin:react-hooks/recommended', + 'plugin:@next/next/recommended', + ], + rules: { + // Add or disable rules here. + } +} diff --git a/web/components/header.tsx b/web/components/header.tsx index f2231d9d..307835a6 100644 --- a/web/components/header.tsx +++ b/web/components/header.tsx @@ -1,5 +1,6 @@ import { Popover } from '@headlessui/react' import Link from 'next/link' +import Image from 'next/image' const navigation = [ { @@ -21,7 +22,7 @@ export function Header() {