"use client"; import Image from "next/image"; import Link from "next/link"; import { SelectLanguage } from "./SelectLanguage"; import AccountCircle from "@mui/icons-material/AccountCircle"; import { useLocale } from "next-intl"; import { useSession } from "next-auth/react"; export const PageHeader = () => { const locale = useLocale(); const { data: session } = useSession(); return (
logo Režije   {session && ( )}
); }