first commit

This commit is contained in:
2025-09-07 22:57:43 +00:00
commit 3bd542adbf
122 changed files with 45056 additions and 0 deletions

52
app/fontsuit.ts Normal file
View 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",
},
]
});