Skip to content

Commit 2384226

Browse files
committed
Update layout.tsx
1 parent 1539b15 commit 2384226

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/frontend/app/layout.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import '../styles/globals.css';
22
import '../styles/experimentListing.css';
33
import RouteHandler from './RouteHandler';
4+
import Head from 'next/head';
45

56
export default function RootLayout({
67
children,
@@ -9,7 +10,9 @@ export default function RootLayout({
910
}) {
1011
return (
1112
<html lang="en" className="h-full">
12-
<head />
13+
<Head>
14+
<title>GLADOS</title>
15+
</Head>
1316
<body className="h-full">
1417
<RouteHandler>{children}</RouteHandler>
1518
</body>

0 commit comments

Comments
 (0)