import { ReportCard } from "@/components/cards/ReportCard"; import { CardLink } from "@/components/common/CardLink"; import { Input } from "@/components/ui/input"; import { fetchReports } from "@/lib/db"; export default async function Reports() { const reports = (await fetchReports()) .reverse() .sort((b, _) => (b.content.report_reason.includes("Illegal") ? -1 : 0)); return (