svrjs-nextjs-website/app/(auth)/admin/changelogs/layout.tsx

10 lines
217 B
TypeScript
Raw Permalink Normal View History

2024-07-30 21:17:07 +02:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Admin // Changelogs",
};
export default function logPages({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}