diff --git a/Frontend/src/components/StatusBar.jsx b/Frontend/src/components/StatusBar.jsx
index ac28d0b..6960bd2 100644
--- a/Frontend/src/components/StatusBar.jsx
+++ b/Frontend/src/components/StatusBar.jsx
@@ -1,10 +1,11 @@
import React from "react";
-"use client"
const StatusBar = ({ togglePanel, panelVisible }) => {
return (
+ {/* Left Section of the Status Bar */}
+ {/* Branch Indicator */}
+ {/* Error Indicator */}
0 errors
-
+ {/* Right Section of the Status Bar */}
+ {/* Line and Column Indicator */}
Ln 1, Col 1
+ {/* Spaces Indicator */}
Spaces: 2
+ {/* Encoding Indicator */}
UTF-8
+ {/* Connection Status */}
+ {/* Bell Icon */}
- )
-}
-
-export default StatusBar
+ );
+};
+export default StatusBar;
\ No newline at end of file