diff --git a/src/frontend/src/features/home/components/JoinMeetingDialog.tsx b/src/frontend/src/features/home/components/JoinMeetingDialogContent.tsx
similarity index 84%
rename from src/frontend/src/features/home/components/JoinMeetingDialog.tsx
rename to src/frontend/src/features/home/components/JoinMeetingDialogContent.tsx
index 783fd9b7..6073259b 100644
--- a/src/frontend/src/features/home/components/JoinMeetingDialog.tsx
+++ b/src/frontend/src/features/home/components/JoinMeetingDialogContent.tsx
@@ -1,11 +1,11 @@
import { useTranslation } from 'react-i18next'
-import { Div, Field, Ul, H, P, Form } from '@/primitives'
+import { Field, Ul, H, P, Form, DialogContent } from '@/primitives'
import { isRoomValid, navigateToRoom } from '@/features/rooms'
-export const JoinMeetingDialog = () => {
+export const JoinMeetingDialogContent = () => {
const { t } = useTranslation('home')
return (
-
+
{t('joinMeetingTipHeading')}
{t('joinMeetingTipContent')}
-
+
)
}
diff --git a/src/frontend/src/features/home/routes/Home.tsx b/src/frontend/src/features/home/routes/Home.tsx
index f54f13d2..2c9bb459 100644
--- a/src/frontend/src/features/home/routes/Home.tsx
+++ b/src/frontend/src/features/home/routes/Home.tsx
@@ -4,7 +4,7 @@ import { HStack } from '@/styled-system/jsx'
import { authUrl, useUser } from '@/features/auth'
import { navigateToNewRoom } from '@/features/rooms'
import { Screen } from '@/layout/Screen'
-import { JoinMeetingDialog } from '../components/JoinMeetingDialog'
+import { JoinMeetingDialogContent } from '../components/JoinMeetingDialogContent'
export const Home = () => {
const { t } = useTranslation('home')
@@ -33,11 +33,11 @@ export const Home = () => {
{isLoggedIn ? t('createMeeting') : t('login', { ns: 'global' })}
-