diamond-in commited on
Commit
a429911
·
verified ·
1 Parent(s): 62cc9ba

Create app/layout.tsx

Browse files
Files changed (1) hide show
  1. app/layout.tsx +20 -0
app/layout.tsx ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import type { Metadata } from "next";
2
+
3
+ export const metadata: Metadata = {
4
+ title: "Next.js + Python Agent",
5
+ description: "Proof of Concept",
6
+ };
7
+
8
+ export default function RootLayout({
9
+ children,
10
+ }: Readonly<{
11
+ children: React.ReactNode;
12
+ }>) {
13
+ return (
14
+ <html lang="en">
15
+ <body style={{ margin: 0, padding: 0 }}>
16
+ {children}
17
+ </body>
18
+ </html>
19
+ );
20
+ }