Skip to content

Commit 19f4702

Browse files
committed
updated meta
1 parent d2ab637 commit 19f4702

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

frontend/app/layout.tsx

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
import './globals.css'
2-
import type { Metadata } from 'next'
3-
import { Inter } from 'next/font/google'
1+
import "./globals.css";
2+
import type { Metadata } from "next";
3+
import { Inter } from "next/font/google";
44

5-
const inter = Inter({ subsets: ['latin'] })
5+
const inter = Inter({ subsets: ["latin"] });
66

77
export const metadata: Metadata = {
8-
title: 'Create Next App',
9-
description: 'Generated by create next app',
10-
}
8+
title: "Code Execution Demo",
9+
description: "Remote Code Execution Demo",
10+
};
1111

1212
export default function RootLayout({
1313
children,
1414
}: {
15-
children: React.ReactNode
15+
children: React.ReactNode;
1616
}) {
1717
return (
1818
<html lang="en">
1919
<body className={inter.className}>{children}</body>
2020
</html>
21-
)
21+
);
2222
}

0 commit comments

Comments
 (0)