Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit a95998f

Browse files
author
Manuel Proß
committed
feat(web): add fira code as main font
1 parent 49a4bc4 commit a95998f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Inter } from "next/font/google";
1+
import { Fira_Code } from "next/font/google";
22
import type { Metadata } from "next";
33
import "../styles/globals.scss";
44
import qs from "qs";
@@ -15,7 +15,7 @@ const params = {
1515
},
1616
};
1717

18-
const inter = Inter({ subsets: ["latin"] });
18+
const firaCode = Fira_Code({ display: "swap" });
1919

2020
export const metadata: Metadata = {
2121
title: "Vim Landing Page",
@@ -43,7 +43,7 @@ export default async function RootLayout({ children }: { children: React.ReactNo
4343

4444
return (
4545
<html lang="en">
46-
<body className={inter.className}>{pageProps && <Layout pages={pageProps}>{children}</Layout>}</body>
46+
<body className={firaCode.className}>{pageProps && <Layout pages={pageProps}>{children}</Layout>}</body>
4747
</html>
4848
);
4949
}

0 commit comments

Comments
 (0)