SPB Git forge
3commits 1branches 0releases
417.0 KBsize
maindefault branch
10 days agolast push
TypeScript 66.5% Python 30.9% JavaScript 1.4% CSS 0.7%
519 B · 9 lines typescript
Raw Blame History
1/**2 * Fonts via next/font/google (self-hosted at build). If the build machine has no network, swap this import in3 * layout.tsx for `./fonts.system` (same exported names, system stack) — the build must never fail on fonts.4 */5import { Inter, JetBrains_Mono } from 'next/font/google';67export const fontUi = Inter({ variable: '--font-ui', subsets: ['latin'], display: 'swap' });8export const fontMono = JetBrains_Mono({ variable: '--font-mono', subsets: ['latin'], display: 'swap', weight: ['400', '500', '600'] });9