mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import localFont from 'next/font/local';
|
|
|
|
export const geistSans = localFont({
|
|
src: './GeistVF.woff',
|
|
variable: '--font-geist-sans',
|
|
weight: '100 900',
|
|
});
|
|
export const geistMono = localFont({
|
|
src: './GeistMonoVF.woff',
|
|
variable: '--font-geist-mono',
|
|
weight: '100 900',
|
|
});
|