import { ChakraProvider, extendTheme } from "@chakra-ui/react"; import { Global, css } from "@emotion/react"; import theme from "/utils/theme"; const GlobalStyles = css` /* Hide the blue border around Chakra components. */ .js-focus-visible :focus:not([data-focus-visible-added]) { outline: none; box-shadow: none; `; function MyApp({ Component, pageProps }) { return ( ); } export default MyApp;