sno-blog/src/app/studio/[[...tool]]/layout.tsx
2026-02-02 22:53:36 +03:00

23 lines
446 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
)
}