28 lines
581 B
TypeScript
28 lines
581 B
TypeScript
import { Metadata } from "next";
|
|
import { Noto_Sans_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const notoSansMono = Noto_Sans_Mono({
|
|
variable: "--noto-sans-mono",
|
|
subsets: ["latin", "cyrillic"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Rhyme",
|
|
description: "Line notes writing and sharing",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${notoSansMono.variable} font-mono antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|