(feat): add avatars to call modals
Some checks failed
/ deploy (push) Has been cancelled

(feat): add fullscreen & popout buttons
(feat): remove clock icon from awaiting messages
(qol): update todos
This commit is contained in:
Alois 2026-05-09 14:36:19 +02:00
commit 30cf5ae3b9
14 changed files with 248 additions and 29 deletions

View file

@ -1,9 +1,17 @@
import { useEffect, useRef } from "react";
import Actions from "../../components/actions";
import TopBar from "../../components/top";
import { setScreenRef } from "../../store";
export default function Layout({ children }: { children: React.ReactNode }) {
const screenRef = useRef<HTMLDivElement>(null);
useEffect(() => {
setScreenRef(screenRef);
}, []);
return (
<div className="w-full h-full flex flex-col">
<div ref={screenRef} className="w-full h-full flex flex-col">
<div className="shrink-0">
<TopBar />
</div>