lev-stake-sol/utils/fonts.ts

16 lines
315 B
TypeScript
Raw Permalink Normal View History

2023-09-29 04:55:44 -07:00
import { Nunito } from 'next/font/google'
2023-09-12 17:37:41 -07:00
2023-09-25 06:48:39 -07:00
export const nunitoDisplay = Nunito({
weight: '900',
subsets: ['latin'],
variable: '--font-display',
2023-09-29 04:55:44 -07:00
display: 'swap',
2023-09-25 06:48:39 -07:00
})
export const nunito = Nunito({
weight: ['400', '500', '700', '900'],
subsets: ['latin'],
variable: '--font-body',
2023-09-29 04:55:44 -07:00
display: 'swap',
2023-09-12 17:37:41 -07:00
})