import type { Metadata } from "next"; import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; import { Shell } from "@/components/Shell"; const sans = Inter({ subsets: ["latin"], variable: "--font-sans", display: "swap" }); const mono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono", display: "swap" }); export const metadata: Metadata = { title: { default: "SocialCrawl — Social Runtime Mining console", template: "%s · SocialCrawl" }, description: "Research console of the Social Runtime Crawler: live observation of social-media runtimes, information-gain navigation, learned connectors.", robots: { index: false, follow: false }, icons: { icon: "/brand/icon.svg" }, }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }