add: font

This commit is contained in:
Théo LAGACHE
2026-02-10 15:29:20 +01:00
parent 921a355ae0
commit 0a2ca8c0b6
19 changed files with 34 additions and 6 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+24 -2
View File
@@ -1,5 +1,27 @@
import {Inter} from "next/font/google";
import {Poppins} from "next/font/google";
import localFont from "next/font/local";
export const poppins = Poppins({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
variable: "--font-poppins",
});
export const author = localFont({
src: [
{
path: "./author/Author-Variable.ttf",
style: "normal",
},
{
path: "./author/Author-VariableItalic.ttf",
style: "italic",
},
],
variable: "--font-author",
});
export const inter = Inter({subsets: ["latin"]});
export const geistMono = localFont({
src: "./geist/GeistMonoVF.woff",
variable: "--font-geist-mono",
});
Binary file not shown.
Binary file not shown.