1import type { Metadata, Viewport } from "next";2import "./globals.css";3import { Shell } from "@/components/shell";45export const metadata: Metadata = {6 title: { default: "LLM API", template: "%s · LLM API" },7 description: "Private OpenAI-compatible local model API on Apple Silicon",8 robots: { index: false, follow: false },9};1011export const viewport: Viewport = { themeColor: "#0b0d10", width: "device-width", initialScale: 1 };1213export default function RootLayout({ children }: { children: React.ReactNode }) {14 return (15 <html lang="en">16 <body className="min-h-screen">17 <Shell>{children}</Shell>18 </body>19 </html>20 );21}22