Skip to content

Commit 4219484

Browse files
committed
fix: change font
Signed-off-by: Rodney Osodo <socials@rodneyosodo.com>
1 parent f03cfd9 commit 4219484

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import type { Metadata } from "next";
2-
import { Mali } from "next/font/google";
2+
import { Roboto_Mono } from "next/font/google";
33
import "./globals.css";
44
import NavBar from "@/components/nav-bar";
55
import Footer from "@/components/footer";
66

7-
const mali = Mali({
8-
weight: "500",
7+
const robotoMono = Roboto_Mono({
8+
weight: "400",
99
subsets: ["latin"],
1010
});
1111

@@ -45,7 +45,7 @@ export default function RootLayout({
4545
<meta name="twitter:image:width" content="1200" />
4646
<meta name="twitter:image:height" content="630" />
4747
</head>
48-
<body className={`${mali.className} antialiased`}>
48+
<body className={`${robotoMono.className} antialiased`}>
4949
<div className="absolute inset-0 -z-10 h-full w-full bg-white bg-[linear-gradient(to_right,#8080800a_1px,transparent_1px),linear-gradient(to_bottom,#8080800a_1px,transparent_1px)] bg-[size:14px_24px]">
5050
<NavBar />
5151
{children}

0 commit comments

Comments
 (0)