24 lines
583 B
TypeScript
24 lines
583 B
TypeScript
import type { Metadata } from 'next';
|
|
import { Providers } from './providers';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'MVK ID',
|
|
description: 'Единый аккаунт для сервисов',
|
|
icons: {
|
|
icon: '/icon.svg',
|
|
shortcut: '/icon.svg',
|
|
apple: '/icon.svg'
|
|
}
|
|
};
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="ru" suppressHydrationWarning>
|
|
<body suppressHydrationWarning>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|