From fd962a4e92a07771c69eeca9d7bedeb9f3852c10 Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Mon, 1 Jan 2024 00:49:47 -0800 Subject: [PATCH] fix: add fallback font for Firefox support. Inter > sans-serif. --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 1dea607..c059a1b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,7 +6,7 @@ import Footer from "@/components/Footer"; import GoogleAnalytics from "@/components/GoogleAnalytics"; import { Toaster } from "@/components/ui/toaster"; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ subsets: ["latin"], fallback: ["sans-serif"] }); export const metadata: Metadata = { title: "GE-Z",