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 ( My awesome blog
) }