Updated font

This commit is contained in:
2025-09-03 21:48:44 +02:00
parent a5cfbed065
commit 9b2710fc3b
5 changed files with 17 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
import "./globals.css"
import { GeistSans as geist } from "geist/font/sans"
import ThemeProvider from "@/components/ThemeProvider"
import { Toaster } from "@/components/ui/sonner"
import type { Metadata } from "next"
@@ -13,7 +15,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: LayoutProps<"/">) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="en" suppressHydrationWarning className={geist.className}>
<head>
{/* eslint-disable-next-line @next/next/no-sync-scripts */}
{process.env.NODE_ENV === "development" && <script src="https://unpkg.com/react-scan/dist/auto.global.js" />}