Files
parcer/ui/src/components/Topbar/index.jsx
2024-04-11 14:12:40 +05:30

63 lines
1.9 KiB
JavaScript

import { useState } from "react";
import { Layout, Menu, Col, Drawer } from "antd";
import { Link } from "react-router-dom";
import { FaBars } from "react-icons/fa";
const { Header } = Layout;
const Topbar = () => {
const [visible, setVisible] = useState(false);
const showDrawer = () => setVisible(true);
const hideDrawer = () => setVisible(false);
return (
<Header className="flex justify-between items-center h-16 bg-white shadow-md">
<Col span={4} className="flex items-center">
<Link to="/">
<img src="maxun_logo.png" alt="Maxun" className="h-8 w-auto" />
</Link>
</Col>
<Col span={16} className="hidden lg:flex justify-end">
<Menu mode="horizontal">
<Menu.Item key="1">
<Link to="/dashboard">Dashboard</Link>
</Menu.Item>
<Menu.Item key="2">
<Link to="/credits">Credits</Link>
</Menu.Item>
<Menu.Item key="3">
<Link to="/profile">Profile</Link>
</Menu.Item>
</Menu>
</Col>
<Col span={4} className="lg:hidden flex justify-end">
<FaBars className="text-2xl text-gray-600" onClick={showDrawer} />
</Col>
<Drawer
title="Navigation"
placement="right"
closable={false}
onClose={hideDrawer}
open={visible}
getContainer={() => document.body} // Ensure the drawer covers viewport on mobile
>
<Menu mode="vertical">
<Menu.Item key="1">
<Link to="/dashboard" onClick={hideDrawer}>
Dashboard
</Link>
</Menu.Item>
<Menu.Item key="2">
<Link to="/credits" onClick={hideDrawer}>Credits</Link>
</Menu.Item>
<Menu.Item key="3">
<Link to="/profile" onClick={hideDrawer}>Profile</Link>
</Menu.Item>
</Menu>
</Drawer>
</Header>
);
};
export default Topbar;