From d637a1b798489bb5ffd001a9e11a45bc3f102f2b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 7 Mar 2024 03:24:18 +0530 Subject: [PATCH] feat: white sidebar --- ui/src/components/Sidebar/index.tsx | 49 +++++++++++++++-------------- 1 file changed, 26 insertions(+), 23 deletions(-) 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