diff --git a/components/Footer.tsx b/components/Footer.tsx index b4e585c..ce57d91 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -95,6 +95,21 @@ export default function Footer() {
{obsStatus.host}:{obsStatus.port}
{obsStatus.hasPassword &&
🔒 Authenticated
} + + {/* Streaming/Recording Status */} + {obsStatus.connected && ( +
+
+
+ {obsStatus.streaming ? 'LIVE' : 'OFFLINE'} +
+ +
+
+ {obsStatus.recording ? 'REC' : 'IDLE'} +
+
+ )}
)} @@ -149,17 +164,6 @@ export default function Footer() { )} -
-
-
- {obsStatus.streaming ? 'LIVE' : 'OFFLINE'} -
- -
-
- {obsStatus.recording ? 'REC' : 'IDLE'} -
-
)}