ai-tube / src /lib /fonts.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on some new features
3d4392e
raw history blame
No virus
414 Bytes
import { Arimo, Pathway_Gothic_One } from 'next/font/google'
export const pathway = Pathway_Gothic_One({
weight: "400",
style: "normal",
subsets: ["latin"],
display: "swap"
})
export const arimoNormal = Arimo({
weight: "500",
style: "normal",
subsets: ["latin"],
display: "swap"
})
export const arimoBold = Arimo({
weight: "700",
style: "normal",
subsets: ["latin"],
display: "swap"
})