ai-lab-tube / src /lib /fonts.ts
Julian Bilcke
working on some new features
3d4392e
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"
})