Skip to content

Commit

Permalink
fix: add fallback font for Firefox support. Inter > sans-serif.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-wang0 committed Jan 1, 2024
1 parent 5cadffc commit fd962a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit fd962a4

Please sign in to comment.