lev-stake-sol/utils/fonts.ts

31 lines
634 B
TypeScript

import { Lalezar, Nunito, Roboto, Roboto_Mono } from 'next/font/google'
export const lalezar = Lalezar({
weight: '400',
subsets: ['latin'],
variable: '--font-display',
})
export const robotoFlex = Roboto({
weight: ['400', '500', '700', '900'],
subsets: ['latin'],
variable: '--font-body',
})
export const nunitoDisplay = Nunito({
weight: '900',
subsets: ['latin'],
variable: '--font-display',
})
export const nunito = Nunito({
weight: ['400', '500', '700', '900'],
subsets: ['latin'],
variable: '--font-body',
})
export const robotoMono = Roboto_Mono({
subsets: ['latin'],
variable: '--font-mono',
})