Files
2026-05-11 13:04:20 +07:00

18 lines
415 B
TypeScript

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;
}