Files
soroushasadi/app/(admin)/layout.tsx
T
soroush.asadi add78d8460
ci / build (push) Failing after 23s
deploy / deploy (push) Failing after 10m12s
first commit
2026-05-31 12:47:02 +03:30

17 lines
466 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Admin · Content CMS',
robots: { index: false, follow: false },
};
// Admin chrome is independent of the public LocaleProvider/Navbar; the
// route-group split means these pages never inherit the marketing layout.
export default function AdminRootLayout({
children,
}: {
children: React.ReactNode;
}) {
return <div className="min-h-screen bg-base-900">{children}</div>;
}