"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { signOut, useSession } from "next-auth/react"; export function AppHeader() { const { data: session } = useSession(); const pathname = usePathname(); if (pathname === "/login") return null; return (
RFID DB tag dumps
); }