svrjs-nextjs-website/app/(auth)/admin/changelogs/layout.tsx
2024-07-28 20:17:09 +05:30

9 lines
217 B
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Admin // Changelogs",
};
export default function logPages({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}