likhonsheikh commited on
Commit
85487df
·
verified ·
1 Parent(s): 20653f2

Upload app/layout.tsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
- }: Readonly<{
18
  children: React.ReactNode;
19
- }>) {
20
  return (
21
- <html lang="en" className="dark">
22
- <body className={inter.className}>
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
  }