18 lines
433 B
TypeScript
18 lines
433 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Admin · Payout Organizer",
|
|
description:
|
|
"Halaman admin untuk meneruskan uang escrow ke rekening organizer setelah trip selesai.",
|
|
alternates: { canonical: "/admin/payouts" },
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function AdminPayoutsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|