fix: исправлен плеер для фильмов

This commit is contained in:
Foxix
2025-02-09 21:22:57 +02:00
parent 660d4ad6dc
commit 37764dce4d
14 changed files with 553 additions and 12 deletions

View File

@@ -2,6 +2,7 @@ import { Inter } from 'next/font/google';
import './globals.css';
import { ClientLayout } from '@/components/ClientLayout';
import type { Metadata } from 'next';
import { Analytics } from "@vercel/analytics/react";
const inter = Inter({ subsets: ['latin', 'cyrillic'] });
@@ -22,6 +23,7 @@ export default function RootLayout({
</head>
<body className={inter.className} suppressHydrationWarning>
<ClientLayout>{children}</ClientLayout>
<Analytics />
</body>
</html>
);