-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bea7b79
commit 71f3129
Showing
8 changed files
with
34 additions
and
154 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const withMDX = require("@next/mdx")({ | ||
extension: /\.mdx?$/, | ||
}); | ||
}) | ||
|
||
module.exports = withMDX({ | ||
pageExtensions: ["js", "jsx", "mdx"], | ||
}); | ||
}) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { ChakraProvider } from "@chakra-ui/react" | ||
|
||
import theme from "../components/theme" | ||
import Layout from "../components/layouts" | ||
|
||
import "@fontsource/poppins/100.css" | ||
import "@fontsource/poppins/200.css" | ||
import "@fontsource/poppins/300.css" | ||
import "@fontsource/poppins/400.css" | ||
import "@fontsource/poppins/500.css" | ||
import "@fontsource/poppins/600.css" | ||
import "@fontsource/poppins/700.css" | ||
import "@fontsource/poppins/800.css" | ||
import "@fontsource/poppins/900.css" | ||
|
||
const MyApp = ({ Component, pageProps }) => ( | ||
<> | ||
<ChakraProvider theme={theme}> | ||
<Layout> | ||
<Component {...pageProps} /> | ||
</Layout> | ||
</ChakraProvider> | ||
</> | ||
) | ||
|
||
export default MyApp |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const Home = () => { | ||
return <></> | ||
} | ||
|
||
export default Home |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.