21 lines
334 B
TypeScript
21 lines
334 B
TypeScript
|
import type { Metadata } from "next";
|
||
|
|
||
|
export const metadata: Metadata = {
|
||
|
title: "RemoteShell",
|
||
|
description: "By Ari and Entity",
|
||
|
};
|
||
|
|
||
|
export default function RootLayout({
|
||
|
children,
|
||
|
}: Readonly<{
|
||
|
children: React.ReactNode;
|
||
|
}>) {
|
||
|
return (
|
||
|
<html lang="en">
|
||
|
<body>
|
||
|
{children}
|
||
|
</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|