Dependencies updated & small enhancements (#27)
* Dependencies updated and imports shortened * Head tags refactored * Final tweaks
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
import { AppProps } from "next/app";
|
||||
import { FC } from "react";
|
||||
import { ChakraProvider } from "@chakra-ui/react";
|
||||
import theme from "../theme";
|
||||
import theme from "@theme";
|
||||
import { Layout } from "@components";
|
||||
|
||||
const App: FC<AppProps> = ({ Component, pageProps }) => (
|
||||
<ChakraProvider theme={theme}>
|
||||
<Component {...pageProps} />
|
||||
<Layout>
|
||||
<Component {...pageProps} />
|
||||
</Layout>
|
||||
</ChakraProvider>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user