Skip to content

Commit

Permalink
remove custom font
Browse files Browse the repository at this point in the history
  • Loading branch information
yoziru committed Mar 28, 2024
1 parent 8aa9b12 commit 19b9c22
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "@/providers/theme-provider";
import { Toaster } from "@/components/ui/sonner";
export const runtime = "edge"; // 'nodejs' (default) | 'edge'

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

export const metadata: Metadata = {
title: "vLLM UI",
description: "vLLM chatbot web interface",
Expand All @@ -26,7 +23,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>
<body>
<ThemeProvider attribute="class" defaultTheme="dark">
{children}
<Toaster />
Expand Down

0 comments on commit 19b9c22

Please sign in to comment.