Jorgexe
Deploy Next.js frontend with LFS assets
735a618
Raw
History Blame Contribute Delete
413 Bytes
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Sample Cases — DenialDefender",
description:
"Download synthetic insurance denial letters and patient charts for testing DenialDefender. Five real-world denial scenarios across five major US payers.",
};
export default function SampleDataLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}