meeting page frontend fixes

This commit is contained in:
Igor Loskutov
2025-09-17 12:18:25 -04:00
parent 3bd2190aa8
commit 1764c591c4
16 changed files with 259 additions and 67 deletions

View File

@@ -5,9 +5,10 @@ import NextLink from "next/link";
import Image from "next/image";
import { useRouter } from "next/navigation";
import { roomUrl } from "../lib/routes";
import { NonEmptyString } from "../lib/utils";
interface MeetingMinimalHeaderProps {
roomName: string;
roomName: NonEmptyString;
displayName?: string;
showLeaveButton?: boolean;
onLeave?: () => void;