Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
imadatyatalah committed Feb 19, 2021
1 parent bea7b79 commit 71f3129
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 154 deletions.
4 changes: 2 additions & 2 deletions next.config.js
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"],
});
})
9 changes: 0 additions & 9 deletions pages/_app.js

This file was deleted.

5 changes: 0 additions & 5 deletions pages/index.jsx

This file was deleted.

1 change: 1 addition & 0 deletions public/bighead.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions src/pages/_app.js
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
5 changes: 5 additions & 0 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const Home = () => {
return <></>
}

export default Home
122 changes: 0 additions & 122 deletions styles/Home.module.css

This file was deleted.

16 changes: 0 additions & 16 deletions styles/globals.css

This file was deleted.

0 comments on commit 71f3129

Please sign in to comment.