diff --git a/components/Layout.tsx b/components/Layout.tsx index 6f2d61a..6ddde68 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -1,5 +1,4 @@ import React, { ReactNode } from "react"; -import Link from "next/link"; import Head from "next/head"; import Image from "next/image"; import { signIn, signOut, useSession } from "next-auth/client"; @@ -12,7 +11,7 @@ type Props = { const Layout = ({ children, title = "This is the default title" }: Props) => { const [session, loading] = useSession(); return ( -
+
{title} @@ -109,10 +108,10 @@ const Layout = ({ children, title = "This is the default title" }: Props) => {
-
+
{children}