Add report Window & reposition Chat WIndow

This commit is contained in:
nocnico
2025-04-28 21:05:01 +02:00
parent 0fa4e1107b
commit e7c8f8ad1c
5 changed files with 161 additions and 11 deletions

View File

@@ -4,6 +4,8 @@ import { Pannel } from "dispatch/_components/pannel/Pannel";
import { usePannelStore } from "_store/pannelStore";
import { cn } from "helpers/cn";
import dynamic from "next/dynamic";
import { Chat } from "./_components/left/Chat";
import { Report } from "./_components/left/Report";
const Map = dynamic(() => import("./_components/map/Map"), { ssr: false });
const DispatchPage = () => {
@@ -12,6 +14,12 @@ const DispatchPage = () => {
<div className="relative flex-1 flex transition-all duration-500 ease w-full">
{/* <MapToastCard2 /> */}
<div className="flex flex-1 relative">
<div className="absolute left-0 top-1/2 transform -translate-y-1/2 pl-4 z-999999">
<Chat />
<div className="mt-2">
<Report />
</div>
</div>
<Map />
</div>
<div