"use client";
import { PageHeader } from "@/components/common/PageHeader";
import { Card } from "@/components/ui/basic";
import { useAuthStore } from "@/store/auth-store";
export default function Profile() {
  const user = useAuthStore((s) => s.user);
  return (
    <>
      <PageHeader title="Profile" description="Signed-in operator." />
      <Card>
        <p>Username: {user?.username ?? "Unknown"}</p>
        <p>Status: {user?.is_active ? "Active" : "Inactive"}</p>
      </Card>
    </>
  );
}
