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