"use client";
import { ActionIcon, LoadingOverlay } from "@mantine/core";
import {
IconDoorExit,
IconInfoSquareRoundedFilled,
IconLayoutSidebarRightCollapse,
IconLayoutSidebarRightExpand,
} from "@tabler/icons-react";
import { useState } from "react";
import Avatar from "../components/Avatar";
import Card from "../components/Card";
import Controls from "../components/Controls";
import { HUDItem } from "../components/HUDItem";
import { TrayButton } from "../components/TrayButton";
/**
global settings: resolution
camera settings: simulcast - fps bitrate seed guidance
seed, guidance, strength, cn scale, cn start, cn end, canny low
threshold, canny_high_threshold, debug canny
*/
export default function Test() {
const [panelHidden, setPanelHidden] = useState(false);
return (