Skip to content

Commit 83a7a18

Browse files
committed
Adding Fonts
1 parent 42295dd commit 83a7a18

File tree

6 files changed

+29
-0
lines changed

6 files changed

+29
-0
lines changed
110 KB
Binary file not shown.

public/fonts/Caveat-Regular.ttf

251 KB
Binary file not shown.
334 KB
Binary file not shown.

public/fonts/Pacifico-Regular.ttf

308 KB
Binary file not shown.

public/fonts/Roboto-Regular.ttf

143 KB
Binary file not shown.

src/styles/globals.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1+
@font-face {
2+
font-family: 'Caveat';
3+
src: url('../fonts/Caveat-Regular.ttf');
4+
}
5+
@font-face {
6+
font-family: 'Roboto';
7+
src: url('../fonts/Roboto-Regular.ttf');
8+
}
9+
@font-face {
10+
font-family: 'Pacifico';
11+
src: url('../fonts/Pacifico-Regular.ttf');
12+
}
13+
@font-face {
14+
font-family: 'AnonymousPro';
15+
src: url('../fonts/AnonymousPro-Regular.ttf');
16+
}
17+
@font-face {
18+
font-family: 'Inter';
19+
src: url('../fonts/Inter_28pt-Regular.ttf');
20+
}
21+
122
@import 'tailwindcss';
23+
24+
@theme {
25+
--font-Caveat: 'Caveat', sans-serif;
26+
--font-Roboto: 'Roboto', sans-serif;
27+
--font-Pacifico: 'Pacifico', sans-serif;
28+
--font-AnonymousPro: 'AnonymousPro', sans-serif;
29+
--font-Inter: 'Inter', sans-serif;
30+
}

0 commit comments

Comments
 (0)