refund roadmap pr-1 and pr-2

This commit is contained in:
2026-05-11 13:04:20 +07:00
parent d2b0a780d5
commit 54f4569107
36 changed files with 5750 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
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;
}