import type { Metadata, Viewport } from "next"; import "./globals.css"; import { Shell } from "@/components/shell"; export const metadata: Metadata = { title: { default: "LLM API", template: "%s ยท LLM API" }, description: "Private OpenAI-compatible local model API on Apple Silicon", robots: { index: false, follow: false }, }; export const viewport: Viewport = { themeColor: "#0b0d10", width: "device-width", initialScale: 1 }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }