summaryrefslogtreecommitdiff
path: root/src/common/styles/fonts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/styles/fonts.ts')
-rw-r--r--src/common/styles/fonts.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/styles/fonts.ts b/src/common/styles/fonts.ts
new file mode 100644
index 0000000..bf78bf7
--- /dev/null
+++ b/src/common/styles/fonts.ts
@@ -0,0 +1,8 @@
+import { Inter } from "next/font/google";
+
+export const inter = Inter({
+ subsets: ["latin"],
+ display: "fallback",
+ weight: ["400", "500", "600", "700"],
+ variable: "--font-inter",
+});