23 lines
493 B
TypeScript
23 lines
493 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import AdminLayoutClient from './AdminLayoutClient';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: {
|
||
|
|
default: 'Admin Portal | Puffin Offset',
|
||
|
|
template: '%s | Admin Portal',
|
||
|
|
},
|
||
|
|
description: 'Admin management portal for Puffin Offset',
|
||
|
|
robots: {
|
||
|
|
index: false,
|
||
|
|
follow: false,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function AdminLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <AdminLayoutClient>{children}</AdminLayoutClient>;
|
||
|
|
}
|