diff options
| author | real-zephex <[email protected]> | 2024-03-18 14:03:32 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-18 14:03:32 +0530 |
| commit | b1f4f412059760d85f531c3d6e2ee626c9002d28 (patch) | |
| tree | dbbb23233b9388170d52fb67de6c5f48a16c30d7 /src/app/layout.js | |
| parent | fixed a minor bug (diff) | |
| download | dramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.tar.xz dramalama-b1f4f412059760d85f531c3d6e2ee626c9002d28.zip | |
fixes: change the file extension to .jsx and fixed the video player sizes for tablets
Diffstat (limited to 'src/app/layout.js')
| -rw-r--r-- | src/app/layout.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/app/layout.js b/src/app/layout.js deleted file mode 100644 index a5d6ffa..0000000 --- a/src/app/layout.js +++ /dev/null @@ -1,25 +0,0 @@ -import { Inter } from "next/font/google"; -import "./globals.css"; -import Header from "./header/header"; -import { SpeedInsights } from "@vercel/speed-insights/next"; -import { Analytics } from "@vercel/analytics/react"; - -const inter = Inter({ subsets: ["latin"] }); - -export const metadata = { - title: "Dramalama V2.0", - description: "Rewrite of dramalama in next", -}; - -export default function RootLayout({ children }) { - return ( - <html lang="en"> - <body className={inter.className}> - <SpeedInsights /> - <Analytics /> - <Header /> - {children} - </body> - </html> - ); -} |