Skip to content

Commit

Permalink
Fix font issues
Browse files Browse the repository at this point in the history
  • Loading branch information
philfreshman committed Apr 25, 2024
1 parent 0f2f370 commit 9ac88ce
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
Expand Up @@ -2,19 +2,16 @@
import Header from "@/components/header"
import { AlgorithmProvider } from "@/lib/coreContext"
import { ThemeProvider } from "next-themes"
import { Inter } from "next/font/google"
import React from "react"
import "./globals.css"

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

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<title>ALGO-VISUALIZER</title>
</head>
<body className={inter.className + " h-screen font-mono "} cz-shortcut-listen="false">
<body className={"h-screen font-mono"} cz-shortcut-listen="false">
<ThemeProvider attribute="class" defaultTheme="light">
<AlgorithmProvider>
<div className="flex h-full w-full flex-col ">
Expand Down

0 comments on commit 9ac88ce

Please sign in to comment.