Skip to content

Commit

Permalink
Feat: add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
i-soj-ng committed May 30, 2024
1 parent ffa03d6 commit 6de3b0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file added beginner-gain-client/public/favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions beginner-gain-client/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ import ComponentWrapper from "@/components/layout/ComponentWrapper";
import {useState} from "react";
import {Hydrate, QueryClient, QueryClientProvider} from "react-query";
import {RecoilRoot, RecoilEnv} from "recoil";
import Head from 'next/head';

RecoilEnv.RECOIL_DUPLICATE_ATOM_KEY_CHECKING_ENABLED = false

const App = ({ Component, pageProps }: AppProps) => {
const [queryClient] = useState(()=> new QueryClient());
return <>
<link rel="icon" href="/favicon.ico" sizes="any" />
<QueryClientProvider client={queryClient}>
<Hydrate state={pageProps.dehydrateState}>
<RecoilRoot>
Expand Down

0 comments on commit 6de3b0d

Please sign in to comment.