[docs][m]: Set up base nextjs project

This commit is contained in:
Rising Odegua
2021-05-19 09:40:18 +01:00
parent 883767cd55
commit 1e2a76571e
14 changed files with 3375 additions and 0 deletions

8
docs/pages/_app.js Normal file
View File

@@ -0,0 +1,8 @@
import '../styles/globals.css'
import '../styles/tailwind.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp