Spaces:
Paused
Paused
Create app/layout.tsx
Browse files- 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 |
+
}
|