import type { Metadata } from "next";
import { AdminPlaceholder } from "@/components/admin/AdminPlaceholder";

export const metadata: Metadata = { title: "System Logs" };

export default function SystemLogsPage() {
  return (
    <AdminPlaceholder
      title="System Logs"
      description="Application logs — debug, info, warning, error, and fatal messages from all system components."
      icon="🪵"
    />
  );
}
