diff --git a/.gitignore b/.gitignore index b4d97a3..81566b6 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,5 @@ next-env.d.ts temp.json temp.md + +.dragonshoard/ diff --git a/app/layout.tsx b/app/layout.tsx index 3c359e6..7daa2be 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import { BookOpenIcon, @@ -11,7 +11,7 @@ import { import Link from "next/link"; import { DevToolboxContextProvider } from "@/components/devtools/context"; -const inter = Inter({ subsets: ["latin"] }); +const roboto = Roboto({ subsets: ["latin"], weight: "400" }); export const metadata: Metadata = { title: "Tabletop Commander", @@ -51,11 +51,9 @@ export default function RootLayout({ }, ]; - console.log(process.env.NODE_ENV); - return ( - +