Last active
May 22, 2021 10:16
-
-
Save dipeshhkc/faa70b6aa7e960e1d959f3fb1a6a2f6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ThemeProvider } from "react-jss" | |
const theme = { | |
black: "#000000", | |
primary: "#0c0c0c", | |
secondary: "#898880", | |
secondaryLight: "#C5C3BC", | |
accent: "#80722A", | |
accentMid: "#E9E7DE" | |
} | |
const App = ({ Component, pageProps }) => { | |
return ( | |
<ThemeProvider theme={theme}> | |
<Layout> | |
<Header /> | |
<Content> | |
<Component {...pageProps} /> | |
</Content> | |
<Footer /> | |
</Layout> | |
</ThemeProvider> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment