rsnext/examples/blog-with-comment/pages/_app.js
Adem ilter 5142c0e542
Example blog with comments (#24829)
* initial commit

* delete comment

* env name fix

* Update README.md

* remove hapi-boom

* use next-image

* fix alt attr

* date fix for blog posts

* reset gitignore

* fix react best-practices

* prettier

* mdx to md

* fix prettier config. lint 👍

* Update examples/blog-with-comment/components/comment/list.js

Co-authored-by: Lee Robinson <me@leerob.io>

* refactor api methods

* fix: blog title

* fix: html lang

* next-mdx to gray-matter

Co-authored-by: Noah Fischer <78238464+noahfschr@users.noreply.github.com>
Co-authored-by: Lee Robinson <me@leerob.io>
Co-authored-by: Enes Akar <enesakar@gmail.com>
2021-06-10 21:04:33 -05:00

25 lines
634 B
JavaScript

import 'tailwindcss/tailwind.css'
import Head from 'next/head'
import Header from '../components/header'
import { Auth0Provider } from '@auth0/auth0-react'
export default function MyApp({ Component, pageProps }) {
return (
<Auth0Provider
clientId={process.env.NEXT_PUBLIC_AUTH0_CLIENT_ID}
domain={process.env.NEXT_PUBLIC_AUTH0_DOMAIN}
>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My awesome blog</title>
</Head>
<Header />
<main className="py-14">
<Component {...pageProps} />
</main>
</Auth0Provider>
)
}