diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..bffb357 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 227fa5a..12f5d28 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -1,37 +1,28 @@ +/* eslint-disable @next/next/no-img-element */ import React, { useEffect } from "react"; import Link from "next/link"; -import Head from "next/head"; -import styles from "../styles/fonts.module.css"; import { useSession } from "next-auth/react"; -import { useUserContext } from "../context/user"; const Navbar = () => { const { data: session, status } = useSession(); return (