diff --git a/pages/_app.tsx b/pages/_app.tsx index fbdf9a4..e9cc482 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,5 +1,6 @@ import styled from "@emotion/styled" import type { AppProps } from "next/app" +import Head from "next/head" import { useRouter } from "next/router" import { useCallback, useEffect, useState } from "react" import { CookiesProvider } from "react-cookie" @@ -58,15 +59,24 @@ export default function App({ Component, pageProps }: AppProps) { }, [setUserProfile]) return ( - - - - {needHeader &&
} - - {needBottomTab && } - - - + <> + + + COGNISLE + + + + + {needHeader &&
} + + {needBottomTab && } + + + + ) } diff --git a/pages/_document.tsx b/pages/_document.tsx index 519bd99..fe708d5 100644 --- a/pages/_document.tsx +++ b/pages/_document.tsx @@ -4,6 +4,7 @@ export default function Document() { return ( +
diff --git a/public/favicon.ico b/public/favicon.ico index 718d6fe..175798b 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ