Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
21 lines
598 B
Diff
21 lines
598 B
Diff
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
|
|
index 647ed68..b08088e 100644
|
|
--- a/src/app/(chat)/layout.tsx
|
|
+++ b/src/app/(chat)/layout.tsx
|
|
@@ -1,10 +1,10 @@
|
|
import type { Metadata } from "next";
|
|
-import { Inter } from "next/font/google";
|
|
+import localFont from "next/font/local";
|
|
import "../globals.css";
|
|
import { ThemeProvider } from "@/providers/theme-provider";
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
|
|
-const inter = Inter({ subsets: ["latin"] });
|
|
+const inter = localFont({ src: '../Inter.ttf' });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Ollama UI",
|
|
--
|
|
2.42.0
|
|
|