// 1. import `NextUIProvider` component import { NextUIProvider } from "@nextui-org/react"; import { NextSeo } from "next-seo"; 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 ); } export default MyApp;