-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfonts.tsx
116 lines (107 loc) · 1.88 KB
/
fonts.tsx
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import localFont from "next/font/local";
const AddisFont = localFont({
src: [
{
path: "./public/fonts/Addis/Addis.ttf",
weight: "400",
style: "normal",
},
],
});
const AdwaFont = localFont({
src: [
{
path: "./public/fonts/Adwa/Adwa.ttf",
weight: "400",
style: "normal",
},
],
});
const ChiretFont = localFont({
src: [
{
path: "./public/fonts/Chiret/Chiret-Regular.ttf",
weight: "400",
style: "normal",
},
],
});
const HabeshaStencilFont = localFont({
src: [
{
path: "./public/fonts/Habesha-stencil/HabeshaSTENCIL.ttf",
weight: "400",
style: "normal",
},
],
});
const jiretFont = localFont({
src: [
{
path: "./public/fonts/jiret/jiret.ttf",
weight: "400",
style: "normal",
},
],
});
const SeatFont = localFont({
src: [
{
path: "./public/fonts/Seat/Seat-Regular.ttf",
weight: "400",
style: "normal",
},
],
});
const TeraFont = localFont({
src: [
{
path: "./public/fonts/Tera/Tera-Regular.ttf",
weight: "400",
style: "normal",
},
],
});
const TesfaFont = localFont({
src: [
{
path: "./public/fonts/Tesfa/Tesfa.ttf",
weight: "400",
style: "normal",
},
],
});
export const fontList: any = {
Addis: {
link: "Addis/Addis.ttf",
font: AddisFont,
},
Adwa: {
link: "Adwa/Adwa.ttf",
font: AdwaFont,
},
Chiret: {
link: "Chiret/Chiret-Regular.ttf",
font: ChiretFont,
},
HabeshaStencilFont: {
link: "Habesha-stencil/HabeshaSTENCIL.ttf",
font: HabeshaStencilFont,
},
jiret: {
link: "jiret/jiret.ttf",
font: jiretFont,
},
SeatFont: {
link: "Seat/Seat-Regular.ttf",
font: SeatFont,
},
Tera: {
link: "Tera/Tera-Regular.ttf",
font: TeraFont,
},
Tesfa: {
link: "Tesfa/Tesfa.ttf",
font: TesfaFont,
},
};