first commit
This commit is contained in:
52
app/fontsuit.ts
Normal file
52
app/fontsuit.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
// 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",
|
||||
},
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user