"use client" import { useMemo } from "react" import { NotificationIcon, UserFillIcon } from "../icons" import { getCookiesDecrypt } from "@/utils/globals" export default function Navbar(props: { title: string }) { const { title } = props const username: string | null = useMemo(() => { return getCookiesDecrypt("username") }, []) return (

{username}

{title}

) }