yarn format

This commit is contained in:
Koper
2023-07-18 15:52:39 +07:00
parent 21aec04008
commit 9382ab13ab
15 changed files with 1235 additions and 281 deletions

View File

@@ -1,14 +1,14 @@
import './globals.css'
import { Roboto } from 'next/font/google'
import "./globals.css";
import { Roboto } from "next/font/google";
import Head from 'next/head'
import Head from "next/head";
const roboto = Roboto({ subsets: ['latin'], weight: '400' })
const roboto = Roboto({ subsets: ["latin"], weight: "400" });
export const metadata = {
title: 'Reflector Monadical',
description: 'Capture The Signal, Not The Noise',
}
title: "Reflector Monadical",
description: "Capture The Signal, Not The Noise",
};
export default function RootLayout({ children }) {
return (
@@ -18,5 +18,5 @@ export default function RootLayout({ children }) {
</Head>
<body className={roboto.className}>{children}</body>
</html>
)
);
}