import localFont from 'next/font/local';
export const inter = localFont({
src: [
{ path: './fonts/Inter-Regular.woff2', weight: '400', style: 'normal' },
{ path: './fonts/Inter-Medium.woff2', weight: '500', style: 'normal' },
{ path: './fonts/Inter-SemiBold.woff2', weight: '600', style: 'normal' },
{ path: './fonts/Inter-Bold.woff2', weight: '700', style: 'normal' },
{ path: './fonts/Inter-Italic.woff2', weight: '400', style: 'italic' },
{ path: './fonts/Inter-Var.woff2', weight: '100 900', style: 'normal' },
],
variable: '--font-inter',
display: 'swap',
preload: true,
});