Spaces:
Build error
Build error
Upload app/layout.tsx with huggingface_hub
Browse files- app/layout.tsx +4 -22
app/layout.tsx
CHANGED
|
@@ -1,29 +1,11 @@
|
|
| 1 |
-
import type { Metadata } from "next";
|
| 2 |
-
import { Inter } from "next/font/google";
|
| 3 |
-
import "./globals.css";
|
| 4 |
-
import { Providers } from "@/components/providers";
|
| 5 |
-
|
| 6 |
-
const inter = Inter({ subsets: ["latin"] });
|
| 7 |
-
|
| 8 |
-
export const metadata: Metadata = {
|
| 9 |
-
title: "DeepSite - AI-Powered Vibe Coding Platform",
|
| 10 |
-
description: "Integrate generative AI into your coding projects to enhance creativity and productivity",
|
| 11 |
-
keywords: ["AI", "coding", "development", "generative AI", "programming"],
|
| 12 |
-
authors: [{ name: "MiniMax Agent" }],
|
| 13 |
-
};
|
| 14 |
-
|
| 15 |
export default function RootLayout({
|
| 16 |
children,
|
| 17 |
-
}:
|
| 18 |
children: React.ReactNode;
|
| 19 |
-
}
|
| 20 |
return (
|
| 21 |
-
<html lang="en"
|
| 22 |
-
<body
|
| 23 |
-
<Providers>
|
| 24 |
-
{children}
|
| 25 |
-
</Providers>
|
| 26 |
-
</body>
|
| 27 |
</html>
|
| 28 |
);
|
| 29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
export default function RootLayout({
|
| 2 |
children,
|
| 3 |
+
}: {
|
| 4 |
children: React.ReactNode;
|
| 5 |
+
}) {
|
| 6 |
return (
|
| 7 |
+
<html lang="en">
|
| 8 |
+
<body style={{ margin: 0 }}>{children}</body>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
</html>
|
| 10 |
);
|
| 11 |
}
|