diff --git a/apps/dispatch/app/(dispatch)/_components/Connection.tsx b/apps/dispatch/app/(dispatch)/_components/Connection.tsx
index b6b97e44..9754cff2 100644
--- a/apps/dispatch/app/(dispatch)/_components/Connection.tsx
+++ b/apps/dispatch/app/(dispatch)/_components/Connection.tsx
@@ -1,6 +1,85 @@
import { useSession } from "next-auth/react";
import { connectionStore } from "../../_store/connectionStore";
import { useEffect } from "react";
+import { CheckCircledIcon } from "@radix-ui/react-icons";
+
+export const ConnectBtn = () => {
+ return (
+ <>
+
+
+ >
+ );
+};
+
+export const ConnectedBtn = () => {
+ return (
+ <>
+
+
+ >
+ );
+};
export const Connection = () => {
const session = useSession();
@@ -13,5 +92,5 @@ export const Connection = () => {
}
}, [uid]);
- return
{cStore.isConnected ? "Connected" : "Not Connected"}
;
+ return {cStore.isConnected ? : }
;
};
diff --git a/apps/dispatch/app/(dispatch)/_components/Navbar.tsx b/apps/dispatch/app/(dispatch)/_components/Navbar.tsx
index 08907984..7092820b 100644
--- a/apps/dispatch/app/(dispatch)/_components/Navbar.tsx
+++ b/apps/dispatch/app/(dispatch)/_components/Navbar.tsx
@@ -51,7 +51,7 @@ export default function Navbar() {
-