Files
imphnen-frontend-service/apps/landing/src/lib/fonts.ts
T

14 lines
327 B
TypeScript
Raw Normal View History

import { Bai_Jamjuree, Poppins } from 'next/font/google';
export const baiJamjureeFont = Bai_Jamjuree({
subsets: ['latin'],
weight: ['300', '400', '500', '600', '700'],
display: 'swap',
});
export const poppinsFont = Poppins({
subsets: ['latin'],
weight: ['300', '400', '500', '600', '700'],
display: 'swap',
});