import type { Metadata } from 'next' import { Manrope } from 'next/font/google' import Script from 'next/script' import './globals.css' const manrope = Manrope({ subsets: ['latin', 'cyrillic'], variable: '--font-manrope', display: 'swap', }) export const metadata: Metadata = { metadataBase: new URL('https://sag24.ru'), other: { 'indexnow-key': '40c65b722891b81d944f2c3fea6cab95', }, } export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{/* Google Analytics GA4 */} {/* Yandex.Metrika */} {children} ) }