import { Flex, Spinner } from '@chakra-ui/react'; import { useColorValue } from '~/context'; import type { LoadableBaseOptions } from 'next/dynamic'; export const Loading: LoadableBaseOptions['loading'] = () => { const bg = useColorValue('white', 'black'); const color = useColorValue('black', 'white'); return ( ); };