import { Container, ImageBackground } from 'components/layout'; import { useResponsiveLayout, useTheme } from 'hooks'; export const SplashScreen = () => { const { activeThemeMode } = useTheme(); const { height, width } = useResponsiveLayout(); return ( ); };