Files
reflector/www/app/layout.js

26 lines
550 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import "./globals.scss";
import { Roboto } from "next/font/google";
import Head from "next/head";
const roboto = Roboto({ subsets: ["latin"], weight: "400" });
export const metadata = {
title: "Reflector Monadical",
description: "Capture The Signal, Not The Noise",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<Head>
<title>Test</title>
</Head>
<body className={roboto.className + " flex flex-col min-h-screen"}>
{children}
</body>
</html>
);
}