diff options
| author | real-zephex <[email protected]> | 2024-05-24 22:51:36 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-05-24 22:51:36 +0530 |
| commit | 180c9577f8337991ca71470816333fe8430cd3ca (patch) | |
| tree | 82caa5a920443bcf0db3746c7ecacd968d4fc148 /config/fonts/index.js | |
| parent | style: minor improvements to the anime cards (diff) | |
| download | dramalama-180c9577f8337991ca71470816333fe8430cd3ca.tar.xz dramalama-180c9577f8337991ca71470816333fe8430cd3ca.zip | |
✨ feat(ui): 🎨 migrate from vanilla css to tailwind css, adopted next ui and restructured
Diffstat (limited to 'config/fonts/index.js')
| -rw-r--r-- | config/fonts/index.js | 18 |
1 files changed, 18 insertions, 0 deletions
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", +}); |