52 lines
1.0 KiB
TypeScript
52 lines
1.0 KiB
TypeScript
|
|
// app/fonts.ts
|
||
|
|
import localFont from "next/font/local";
|
||
|
|
|
||
|
|
export const fontsuit = localFont({
|
||
|
|
src: [
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Thin.ttf",
|
||
|
|
weight: "100",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-ExtraLight.ttf",
|
||
|
|
weight: "200",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Light.ttf",
|
||
|
|
weight: "300",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Regular.ttf",
|
||
|
|
weight: "400",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Medium.ttf",
|
||
|
|
weight: "500",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-SemiBold.ttf",
|
||
|
|
weight: "600",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Bold.ttf",
|
||
|
|
weight: "700",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-ExtraBold.ttf",
|
||
|
|
weight: "800",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "./fonts/SUIT/SUIT-Heavy.ttf",
|
||
|
|
weight: "900",
|
||
|
|
style: "normal",
|
||
|
|
},
|
||
|
|
]
|
||
|
|
});
|