import type { Metadata } from "next"; import { IBM_Plex_Mono } from "next/font/google"; import { RouteGuard } from "@/components/auth/RouteGuard"; import "./globals.css"; import { Providers } from "./providers"; // ПТИЦА cockpit numerals (mono). next/font is bundled — no package.json change. // Cyrillic + latin subsets so mono digits/labels render in the dark cockpit. const plexMono = IBM_Plex_Mono({ subsets: ["latin", "cyrillic"], weight: ["400", "500", "600"], variable: "--font-plex-mono", display: "swap", }); export const metadata: Metadata = { title: "GenDesign", description: "Generative Design + Site Finder", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (