18 lines
585 B
TypeScript
18 lines
585 B
TypeScript
import Image from "next/image";
|
|
import { icons } from "#/assets/icons"
|
|
|
|
export default function AdminHeader() {
|
|
|
|
return (
|
|
<>
|
|
<nav className="header r-flex-between px-[44px] py-[20px] ">
|
|
<p className="name text-[26px]">Bienvenue, <span>Ken B.</span> </p>
|
|
<div className="r-flex-between justify-center items-center r-gap-12">
|
|
<Image src={icons.notificationsIcon} alt="Notifications" />
|
|
<Image src={icons.profilePicture} alt="ProfilePicture" />
|
|
<Image src={icons.arrowUp} alt="arrowUp" />
|
|
</div>
|
|
</nav>
|
|
</>
|
|
)
|
|
} |