Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import localFont from 'next/font/local'
|
|
|
|
export const pinarFont = localFont({
|
|
src: [
|
|
{
|
|
path: '../public/fonts/Pinar-VF-FD[DSTY,KSHD,wght].woff2',
|
|
weight: '300 900',
|
|
style: 'normal',
|
|
},
|
|
],
|
|
variable: '--font-pinar',
|
|
display: 'swap',
|
|
preload: true,
|
|
})
|