We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb228b commit 6d93a90Copy full SHA for 6d93a90
templates/frontend/app/layout.js
@@ -0,0 +1,12 @@
1
+export const metadata = {
2
+ title: 'Frontend Service',
3
+ description: 'Scaffolded by create-polyglot',
4
+};
5
+
6
+export default function RootLayout({ children }) {
7
+ return (
8
+ <html lang="en">
9
+ <body style={{margin:0,fontFamily:'sans-serif'}}>{children}</body>
10
+ </html>
11
+ );
12
+}
templates/frontend/app/layout.jsx
0 commit comments