mirror of
https://github.com/supabase/supabase.git
synced 2026-09-06 09:59:03 +08:00
Update marketing website and docs with new sans-serif fonts: - `Inter` - sans-serif for all body text - `Manrope` - sans-serif for headings PR breakdown of #43455 Related: #47226 #47228 #47236
16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
import { Inter, Manrope } from 'next/font/google'
|
|
|
|
export const manrope = Manrope({
|
|
variable: '--font-manrope',
|
|
display: 'swap',
|
|
fallback: ['system-ui', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif'],
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export const inter = Inter({
|
|
variable: '--font-inter',
|
|
display: 'swap',
|
|
fallback: ['system-ui', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif'],
|
|
subsets: ['latin'],
|
|
})
|