favicons and slightly prettier sidebar

This commit is contained in:
Kyle Corbitt
2023-06-26 22:06:05 -07:00
parent 79ace43608
commit 10c7b3fa2e
20 changed files with 221 additions and 13 deletions

View File

@@ -4,6 +4,7 @@ import { type AppType } from "next/app";
import { api } from "~/utils/api";
import { ChakraProvider } from "@chakra-ui/react";
import theme from "~/utils/theme";
import Favicon from "~/components/Favicon";
const MyApp: AppType<{ session: Session | null }> = ({
Component,
@@ -11,6 +12,7 @@ const MyApp: AppType<{ session: Session | null }> = ({
}) => {
return (
<SessionProvider session={session}>
<Favicon />
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>