diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx
index 128da3f5..6d7f4956 100644
--- a/src/frontend/src/App.tsx
+++ b/src/frontend/src/App.tsx
@@ -1,13 +1,15 @@
import '@livekit/components-styles'
import '@/styles/index.css'
+import { Suspense } from 'react'
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { useTranslation } from 'react-i18next'
import { useLang } from 'hoofd'
import { Route, Switch } from 'wouter'
+import { Screen } from './layout/Screen'
import { HomeRoute } from '@/features/home'
-import { NotFound } from './routes/NotFound'
import { RoomRoute, roomIdRegex } from '@/features/rooms'
+import { NotFound } from './routes/NotFound'
import './i18n/init'
const queryClient = new QueryClient()
@@ -17,12 +19,14 @@ function App() {
useLang(i18n.language)
return (