change font again

This commit is contained in:
Milo Schwartz 2024-11-23 11:42:22 -05:00
parent cd3d4ce2b2
commit 283a87d96d
4 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { IBM_Plex_Sans, Work_Sans } from "next/font/google";
import { Figtree, IBM_Plex_Sans, Inter, Work_Sans } from "next/font/google";
import { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@app/providers/ThemeProvider";
@ -11,9 +11,10 @@ export const metadata: Metadata = {
// const font = Inter({ subsets: ["latin"] });
// const font = Noto_Sans_Mono({ subsets: ["latin"] });
const font = Work_Sans({ subsets: ["latin"] });
// const font = Work_Sans({ subsets: ["latin"] });
// const font = Space_Grotesk({subsets: ["latin"]})
// const font = IBM_Plex_Sans({subsets: ["latin"], weight: "400"})
const font = Figtree({ subsets: ["latin"] });
export default async function RootLayout({
children,