cleanded up ConenctedDispatcher, added modeSwitch to Tracker

This commit is contained in:
PxlLoewe
2025-06-08 18:27:45 -07:00
parent 1d63368172
commit b3bf256324
5 changed files with 15 additions and 103 deletions

View File

@@ -1,4 +1,5 @@
"use client";
import ModeSwitchDropdown from "_components/navbar/ModeSwitchDropdown";
import dynamic from "next/dynamic";
import { ConnectedDispatcher } from "tracker/_components/ConnectedDispatcher";
@@ -10,7 +11,10 @@ const Page = () => {
return (
<>
<Map />
<ConnectedDispatcher />
<div className="flex gap-3 absolute top-5 right-10 z-99999">
<ConnectedDispatcher />
<ModeSwitchDropdown className="dropdown-end" />
</div>
</>
);
};