import styles from 'styles/LoadingScreen.module.sass' import { useTheme } from 'next-themes' import Image from 'next/image' const LoadingScreen = ({ isLoading, className, }: { isLoading: boolean className?: string }) => { // @ts-ignore const { resolvedTheme: theme } = useTheme() if (isLoading) return (