feat: implement poppins font

This commit is contained in:
arraysid
2025-05-17 05:12:27 +07:00
parent d1abc3c7d4
commit 9548272340
2 changed files with 10 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
// fonts.ts
import { Poppins } from 'next/font/google';
export const poppins = Poppins({
subsets: ['latin'],
weight: ['300', '400', '500', '600', '700'],
display: 'swap',
});