Add homepage UI

This commit is contained in:
Kamran Ahmed
2021-08-01 18:37:32 +02:00
parent 9c81d818ed
commit f15e7a18b8
8 changed files with 86 additions and 214 deletions

View File

@ -1,11 +1,10 @@
import type { AppProps } from 'next/app';
import { ChakraProvider } from '@chakra-ui/react';
import '../styles/globals.css';
import { roadmapTheme } from './theme';
function MyApp({ Component, pageProps }: AppProps) {
return (
<ChakraProvider>
<ChakraProvider theme={roadmapTheme}>
<Component {...pageProps} />
</ChakraProvider>
);