diff --git a/ui/src/components/Sidebar/index.tsx b/ui/src/components/Sidebar/index.tsx index 4ee3b6f9..d31b3445 100644 --- a/ui/src/components/Sidebar/index.tsx +++ b/ui/src/components/Sidebar/index.tsx @@ -1,35 +1,38 @@ -import { Layout, Menu } from "antd"; -import { Link } from "react-router-dom"; +import React from "react"; +import { Layout, Menu, Col, Row } from "antd"; +import { Link } from "react-router-dom"; // Assuming you're using react-router-dom for navigation const { Sider } = Layout; const Sidebar = () => { return ( -
- {/* Add logo image here */} - Your company logo - App Name +
{/* Full height container */} + + + Dashboard + + + Settings + + + Users + + + Profile + + +
+ {/* Add logo image here */} + Your company logo + App Name +
- - - Dashboard - - - Settings - - - Users - - - Profile - - ); }; -export default Sidebar; +export default Sidebar; \ No newline at end of file