23 lines
446 B
TypeScript
23 lines
446 B
TypeScript
import type { Metadata } from 'next'
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'Sanity Studio | СО ИМИТ ВолГУ',
|
||
description: 'Панель управления контентом',
|
||
robots: {
|
||
index: false,
|
||
follow: false,
|
||
},
|
||
}
|
||
|
||
export default function StudioLayout({
|
||
children,
|
||
}: {
|
||
children: React.ReactNode
|
||
}) {
|
||
return (
|
||
<html lang="ru">
|
||
<body style={{ margin: 0 }}>{children}</body>
|
||
</html>
|
||
)
|
||
}
|