Skip to content

Commit

Permalink
Better font display
Browse files Browse the repository at this point in the history
  • Loading branch information
nsaunders authored Jul 31, 2023
1 parent a42ef75 commit 9921cb1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ import Surface from "@/components/Surface";
import exhausted from "@/utils/exhausted";
import { title, description } from "@/meta";

const lato = Lato({ subsets: ["latin"], weight: "400" });
const lato = Lato({
weight: ["400", "700"],
style: ["normal", "italic"],
subsets: ["latin"],
display: "swap",
});

export const metadata = { title, description };

Expand Down

0 comments on commit 9921cb1

Please sign in to comment.