Frontend/src/common/fonts.ts
Liam c054a31008
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 54s
cleanup and add mobile support
2024-04-15 12:12:24 +01:00

8 lines
131 B
TypeScript

import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export const Fonts = {
inter: inter,
};