add some more icons

This commit is contained in:
Milo Schwartz 2024-11-16 12:18:22 -05:00
parent 3c7b2c03f8
commit 587bb758a2
No known key found for this signature in database
6 changed files with 24 additions and 7 deletions

View file

@ -1,6 +1,6 @@
import type { Metadata } from "next";
import "./globals.css";
import { Fira_Sans, Inter } from "next/font/google";
import { Fira_Sans, Inter, Noto_Sans_Mono, Roboto_Mono } from "next/font/google";
import { Toaster } from "@/components/ui/toaster";
import { ThemeProvider } from "@app/providers/ThemeProvider";
@ -10,6 +10,7 @@ export const metadata: Metadata = {
};
const font = Inter({ subsets: ["latin"] });
// const font = Noto_Sans_Mono({ subsets: ["latin"] });
export default async function RootLayout({
children,