// 1. import `NextUIProvider` component import { NextUIProvider } from '@nextui-org/react'; import Head from 'next/head' import Config from '../config.json'; import '../styles/globals.css' function MyApp({ Component, pageProps }) { return ( // 2. Use at the root of your app {Config.name} ); } export default MyApp;