Skip to content

Commit

Permalink
remove Inter font since it was causing build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-kellam committed Jan 7, 2025
1 parent 11c79d8 commit 672832c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "next-themes";
import { Suspense } from "react";
Expand All @@ -8,8 +7,6 @@ import { PHProvider } from "./posthogProvider";
import { Toaster } from "@/components/ui/toaster";
import { TooltipProvider } from "@/components/ui/tooltip";

const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Sourcebot",
description: "Sourcebot",
Expand All @@ -26,7 +23,7 @@ export default function RootLayout({
// @see : https://github.com/pacocoursey/next-themes?tab=readme-ov-file#with-app
suppressHydrationWarning
>
<body className={inter.className}>
<body>
<Toaster />
<PHProvider>
<ThemeProvider
Expand Down

0 comments on commit 672832c

Please sign in to comment.