visual/react/app/layout.tsx (17 lines of code) (raw):
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { Providers } from "./providers";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "go-workflow",
};
export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) {
return (
<html lang="en" className='dark'>
<body className={inter.className}>
<Providers>
{children}
</Providers>
</body>
</html>
);
}