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

export const metadata: Metadata = { title: "Backups" };

export default function BackupsPage() {
  return (
    <AdminPlaceholder
      title="Backups"
      description="Database backup management — create, restore, and download SQLite backups. Configure automated backup schedules."
      icon="💾"
    />
  );
}
