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;