18 lines
415 B
TypeScript
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;
|
|
}
|