-
Notifications
You must be signed in to change notification settings - Fork 4
/
fonts.ts
56 lines (46 loc) · 1.16 KB
/
fonts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { Antonio, Dancing_Script, IBM_Plex_Sans, Inter, Merriweather, Oswald, Press_Start_2P, Raleway, Roboto } from "next/font/google";
export const inter = Inter({
subsets: ['latin'],
display: 'swap',
});
export const roboto = Roboto({
weight: '400',
subsets: ['latin'],
display: 'swap',
});
export const robotoArray = Roboto({
weight: ['400', '700'],
style: ['normal', 'italic'],
subsets: ['latin'],
display: 'swap',
});
export const dancingScript = Dancing_Script({
subsets: ['latin'],
display: 'swap',
});
export const oswald = Oswald({
subsets: ['latin'],
display: 'swap',
});
export const merriweather = Merriweather({
weight: ['300', '400', '700'],
style: ['normal', 'italic'],
subsets: ['latin'],
});
export const raleway = Raleway({
subsets: ['latin'],
});
export const ibmSans = IBM_Plex_Sans({
weight: '700',
subsets: ['latin'],
variable: '--font-ibm-sans',
});
export const antonio = Antonio({
subsets: ['latin'],
variable: '--font-antonio',
});
export const pressStart2p = Press_Start_2P({
weight: '400',
subsets: ['latin'],
variable: '--font-press-start',
});