fix and update

This commit is contained in:
lendry
2026-06-30 19:47:26 +03:00
parent d41c9d1121
commit 6ee3ffe0a5
6 changed files with 57 additions and 11 deletions

View File

@@ -4,13 +4,18 @@ import './globals.css';
export const metadata: Metadata = {
title: 'MVK ID',
description: 'Единый аккаунт для сервисов Lendry'
description: 'Единый аккаунт для сервисов Lendry',
icons: {
icon: '/icon.svg',
shortcut: '/icon.svg',
apple: '/icon.svg'
}
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="ru">
<body>
<html lang="ru" suppressHydrationWarning>
<body suppressHydrationWarning>
<Providers>{children}</Providers>
</body>
</html>