import type { Metadata, Viewport } from "next"; import { Space_Grotesk, DM_Sans, IBM_Plex_Mono } from "next/font/google"; import "@bytelyst/design-tokens/css/notelett"; import "./globals.css"; import { Providers } from "./providers"; import { PRODUCT_NAME } from "@/lib/product-config"; const spaceGrotesk = Space_Grotesk({ subsets: ["latin"], variable: "--font-display" }); const dmSans = DM_Sans({ subsets: ["latin"], variable: "--font-body" }); const ibmPlexMono = IBM_Plex_Mono({ weight: ["400", "500"], subsets: ["latin"], variable: "--font-mono" }); export const metadata: Metadata = { title: PRODUCT_NAME, description: "Structured notes workspace for humans and ByteLyst agents with search, review, and operational context.", manifest: "/manifest.json", appleWebApp: { capable: true, statusBarStyle: "black-translucent", title: PRODUCT_NAME, }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, themeColor: "#06070A", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( Skip to content {children} ); }