Merged reflector-ui (now "www") into single repo

This commit is contained in:
Koper
2023-07-26 15:18:05 +07:00
parent 9a57a89b5b
commit 401aa1e6f9
24 changed files with 0 additions and 0 deletions

25
www/app/layout.js Normal file
View File

@@ -0,0 +1,25 @@
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>
);
}