diff --git a/public/fonts/SF-Pro.ttf b/public/fonts/SF-Pro.ttf deleted file mode 100644 index 1e8aa633..00000000 Binary files a/public/fonts/SF-Pro.ttf and /dev/null differ diff --git a/public/fonts/SF-Pro.woff b/public/fonts/SF-Pro.woff new file mode 100644 index 00000000..111772de Binary files /dev/null and b/public/fonts/SF-Pro.woff differ diff --git a/public/fonts/SF-Pro.woff2 b/public/fonts/SF-Pro.woff2 new file mode 100644 index 00000000..ed007455 Binary files /dev/null and b/public/fonts/SF-Pro.woff2 differ diff --git a/src/app/fonts.ts b/src/app/fonts.ts index 7cf4662a..ad8af347 100644 --- a/src/app/fonts.ts +++ b/src/app/fonts.ts @@ -1,7 +1,10 @@ import localFont from "next/font/local"; export const sfPro = localFont({ - src: "../../public/fonts/SF-Pro.ttf", + src: [ + { path: "../../public/fonts/SF-Pro.woff2" }, + { path: "../../public/fonts/SF-Pro.woff" }, + ], variable: "--font-sf-pro", display: "swap", });