Spaces:
Sleeping
Sleeping
| 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" | |
| }) | |