From e3bb798334dd4e349a5041cf461553a7d39ce96b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 7 Mar 2024 02:29:43 +0530 Subject: [PATCH] feat: topbar init --- ui/src/components/Topbar/index.tsx | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 ui/src/components/Topbar/index.tsx diff --git a/ui/src/components/Topbar/index.tsx b/ui/src/components/Topbar/index.tsx new file mode 100644 index 00000000..09c81b88 --- /dev/null +++ b/ui/src/components/Topbar/index.tsx @@ -0,0 +1,47 @@ +import { Layout, Menu, Col, Row } from "antd"; +import { Link } from "react-router-dom"; + +const { Header } = Layout; + +const Topbar = () => { + return ( +
+ + + Your company logo + + + + + + Link 1 + + + Link 2 + + + Link 3 + + + + + {/* Add a hamburger icon for mobile menu (replace with your preferred icon) */} + + +
+ ); +}; + +export default Topbar; \ No newline at end of file