import type { Metadata } from "next"; export const metadata: Metadata = { title: "Admin ยท Refund Manual", description: "Halaman admin untuk meninjau laporan refund dari peserta dan organizer.", alternates: { canonical: "/admin/refunds" }, robots: { index: false, follow: false }, }; export default function AdminRefundsLayout({ children, }: { children: React.ReactNode; }) { return children; }