feat: replace Inter font with Bai Jamjuree in layout and add font utility

This commit is contained in:
arraysid
2025-05-27 02:33:04 +07:00
parent d5607b456b
commit 684f299194
2 changed files with 9 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Bai_Jamjuree } from 'next/font/google';
export const baiJamjureeFont = Bai_Jamjuree({
subsets: ['latin'],
weight: ['300', '400', '500', '600', '700'],
display: 'swap',
});