Initial theme designed

This commit is contained in:
David
2021-03-16 01:33:19 +01:00
parent 6153f739d2
commit 13877b5e11
16 changed files with 1739 additions and 120 deletions

12
pages/_app.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { AppProps } from "next/app";
import { FC } from "react";
import { ChakraProvider } from "@chakra-ui/react";
import theme from "../theme";
const App: FC<AppProps> = ({ Component, pageProps }) => (
<ChakraProvider theme={theme}>
<Component {...pageProps} />
</ChakraProvider>
);
export default App;