File size: 821 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import "tailwindcss/tailwind.css";
import type { AppProps } from "next/app";
import Head from "next/head";
import Header from "../components/header";
import { Auth0Provider } from "@auth0/auth0-react";
export default function MyApp({ Component, pageProps }: AppProps) {
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" />
<meta
name="description"
content="Clone and deploy your own Next.js portfolio in minutes."
/>
<title>My awesome blog</title>
</Head>
<Header />
<main className="py-14">
<Component {...pageProps} />
</main>
</Auth0Provider>
);
}
|