diff --git a/apps/web/src/pages/_app.tsx b/apps/web/src/pages/_app.tsx index 346c55c53..302fb6ce3 100644 --- a/apps/web/src/pages/_app.tsx +++ b/apps/web/src/pages/_app.tsx @@ -5,7 +5,7 @@ import "~/style.css"; import { inject } from "@vercel/analytics"; import { NextPage } from "next"; import { AppProps } from "next/app"; -import { Inter, Noto_Sans_Mono } from "next/font/google"; +import { Inter } from "next/font/google"; import Head from "next/head"; import { appWithTranslation } from "next-i18next"; import { DefaultSeo } from "next-seo"; @@ -25,11 +25,6 @@ const inter = Inter({ display: "swap", }); -const noto = Noto_Sans_Mono({ - subsets: ["latin"], - display: "swap", -}); - type PageProps = { user: UserSession; }; @@ -85,7 +80,6 @@ const MyApp: NextPage = ({ Component, pageProps }) => { {getLayout()} diff --git a/apps/web/tailwind.config.js b/apps/web/tailwind.config.js index 3021c862f..33341128a 100644 --- a/apps/web/tailwind.config.js +++ b/apps/web/tailwind.config.js @@ -8,7 +8,7 @@ module.exports = { ...sharedConfig.theme, fontFamily: { sans: ["var(--font-inter)", ...defaultTheme.fontFamily.sans], - mono: ["var(--font-noto)", ...defaultTheme.fontFamily.mono], + mono: [...defaultTheme.fontFamily.mono], }, }, plugins: [require("@tailwindcss/typography"), require("tailwindcss-animate")],