rapharehap/lib/font.js
2025-08-26 13:45:05 +05:30

9 lines
215 B
JavaScript

import { Poppins } from 'next/font/google'
export const poppins = Poppins({
weight: [ '300','400', '500', '600', '700', '800', '900'],
subsets: ['latin'],
variable: "--poppins",
display: 'swap',
})