still messing with colors

This commit is contained in:
Milo Schwartz 2024-10-17 22:12:02 -04:00
parent 1bc67c191b
commit efefae238b
No known key found for this signature in database
5 changed files with 32 additions and 33 deletions

View file

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