From 180c9577f8337991ca71470816333fe8430cd3ca Mon Sep 17 00:00:00 2001 From: real-zephex Date: Fri, 24 May 2024 22:51:36 +0530 Subject: =?UTF-8?q?=E2=9C=A8=20feat(ui):=20=F0=9F=8E=A8=20migrate=20from?= =?UTF-8?q?=20vanilla=20css=20to=20tailwind=20css,=20adopted=20next=20ui?= =?UTF-8?q?=20and=20restructured?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/fonts/index.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config/fonts/index.js (limited to 'config/fonts') diff --git a/config/fonts/index.js b/config/fonts/index.js new file mode 100644 index 0000000..a979da0 --- /dev/null +++ b/config/fonts/index.js @@ -0,0 +1,18 @@ +import { + Lexend_Deca, + Atkinson_Hyperlegible, + Poppins, + Fira_Code, +} from "next/font/google"; + +export const lexend = Lexend_Deca({ + subsets: ["latin"], + weight: ["400"], + variable: "--font-lexend", +}); + +export const atkinson = Atkinson_Hyperlegible({ + subsets: ["latin"], + weight: "400", + variable: "--font-atkinson", +}); -- cgit v1.2.3