From 40843c5c909b1610b0aa07cc12edd99c34d2938f Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 7 Mar 2024 03:21:54 +0530 Subject: [PATCH] feat: init sidebar --- ui/src/components/Sidebar/index.tsx | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 ui/src/components/Sidebar/index.tsx diff --git a/ui/src/components/Sidebar/index.tsx b/ui/src/components/Sidebar/index.tsx new file mode 100644 index 00000000..042959a6 --- /dev/null +++ b/ui/src/components/Sidebar/index.tsx @@ -0,0 +1,36 @@ +import React from "react"; +import { Layout, Menu, Col, Row } from "antd"; +import { Link } from "react-router-dom"; + +const { Sider } = Layout; + +const Sidebar = () => { + return ( + +
+ {/* Add logo image here */} + Your company logo + App Name +
+ + + Dashboard + + + Settings + + + Users + + + Profile + + +
+ ); +}; + +export default Sidebar;