mirror of
https://github.com/Lapikud/tipilan.git
synced 2026-05-08 18:08:32 +00:00
28 lines
701 B
TypeScript
28 lines
701 B
TypeScript
import localFont from 'next/font/local';
|
|
|
|
// Style 'only' has normal and italic for some reason.
|
|
// It uses the weight to determine the style used.
|
|
export const vipnagorgialla = localFont({
|
|
src: [
|
|
{
|
|
path: '../app/fonts/vipnagorgialla/Vipnagorgialla-Rg.otf',
|
|
weight: '400',
|
|
style: 'normal',
|
|
},
|
|
{
|
|
path: '../app/fonts/vipnagorgialla/Vipnagorgialla-Rg-It.otf',
|
|
weight: '400',
|
|
style: 'italic',
|
|
},
|
|
{
|
|
path: '../app/fonts/vipnagorgialla/Vipnagorgialla-Bd.otf',
|
|
weight: '700',
|
|
style: 'normal',
|
|
},
|
|
{
|
|
path: '../app/fonts/vipnagorgialla/Vipnagorgialla-Bd-It.otf',
|
|
weight: '700',
|
|
style: 'italic',
|
|
},
|
|
],
|
|
}); |