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

@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<rect width="64" height="64" rx="18" fill="#111827"/>
<path d="M18 45V19h7l7 12 7-12h7v26h-7V31.5L34.8 38h-5.6L25 31.5V45h-7z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 213 B

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>