aboutsummaryrefslogtreecommitdiff
path: root/config/fonts/index.js
blob: a979da09f30fc51e5ecfe548e0ea07da6cd6c2ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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",
});