'use client' import { useState } from 'react' import { MenuOutlined } from '@ant-design/icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faBars, faBell } from '@fortawesome/free-solid-svg-icons' import { Button, Space, Image, Flex, Typography } from 'antd' import Sidebar from '@/components/layout/Sidebar' import BellNotification from '@/components/ui/BellNotification' const { Text, Title } = Typography const Header = () => { const [showSideBar, setShowSideBar] = useState(false) return ( {/* Sidebar Trigger */}