Skip to content

Commit a46df38

Browse files
committed
feat: update to use poppins webfont
1 parent 88a526c commit a46df38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/[lang]/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-env node */
2-
import { JetBrains_Mono as FontMono, Inter as FontSans } from "next/font/google";
2+
import { JetBrains_Mono as FontMono, Poppins as FontSans } from "next/font/google";
33
import {
44
LastUpdated,
55
Layout,
@@ -22,6 +22,7 @@ export const { viewport } = Head
2222
const fontSans = FontSans({
2323
subsets: ["latin"],
2424
variable: "--font-sans",
25+
weight: ["400", "500", "600", "700"],
2526
});
2627

2728
const fontMono = FontMono({

0 commit comments

Comments
 (0)