Fonts
Font Recovery
CAPTURED·/static/fonts/*.woff2
6 assets
Aa
Inter-Regular.woff2
Regular94 KB
✓ 200
Aa
Inter-Medium.woff2
Medium96 KB
✓ 200
Aa
Inter-SemiBold.woff2
SemiBold98 KB
✓ 200
Aa
Inter-Bold.woff2
Bold99 KB
✓ 200
Aa
Inter-Italic.woff2
Italic95 KB
✓ 200
Aa
Inter-Var.woff2
Variable312 KB
✓ 200
BUNDLE·parsing @font-face rules from framer-styles.css
6 rules
@font-face { font-family: 'Inter'; weight: 400; style: normal; src: url('Inter-Regular.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
@font-face { font-family: 'Inter'; weight: 500; style: normal; src: url('Inter-Medium.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
@font-face { font-family: 'Inter'; weight: 600; style: normal; src: url('Inter-SemiBold.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
@font-face { font-family: 'Inter'; weight: 700; style: normal; src: url('Inter-Bold.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
@font-face { font-family: 'Inter'; weight: 400; style: italic; src: url('Inter-Italic.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
@font-face { font-family: 'Inter'; weight: 100 900; style: normal; src: url('Inter-Var.woff2'); unicode-range: U+0000-00FF, U+0100-017F }
Variants found
400500600700400 italic100–900 var
1 family · 6 variants
unicode-range: Latin + Latin-Ext
RECOVERED·app/fonts.ts
✓ optimized
import localFont from 'next/font/local';
 
export const inter = localFont({
src: [
{ path: './fonts/Inter-Regular.woff2', weight: '400', style: 'normal' },
{ path: './fonts/Inter-Medium.woff2', weight: '500', style: 'normal' },
{ path: './fonts/Inter-SemiBold.woff2', weight: '600', style: 'normal' },
{ path: './fonts/Inter-Bold.woff2', weight: '700', style: 'normal' },
{ path: './fonts/Inter-Italic.woff2', weight: '400', style: 'italic' },
{ path: './fonts/Inter-Var.woff2', weight: '100 900', style: 'normal' },
],
variable: '--font-inter',
display: 'swap',
preload: true,
});
6 variants · 1 family · CLS-free · self-hostednext/font/local

Fonts

Every .woff2 file gets captured, every @font-face rule gets parsed for weight, style, and unicode-range. The output uses next/font/local for zero-CLS self-hosting — no external requests to Google Fonts.