diff options
| author | real-zephex <[email protected]> | 2024-04-29 10:06:01 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-29 10:06:01 +0530 |
| commit | fdc6b602228d923b0c255521ee74289e7a0d94a2 (patch) | |
| tree | 3531fc9fd2fbe178d43e6a1c67d116f30fd4a61e /src/app/layout.jsx | |
| parent | Update README.md (diff) | |
| parent | adjusted the width and height of the image just by a little (diff) | |
| download | dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.tar.xz dramalama-fdc6b602228d923b0c255521ee74289e7a0d94a2.zip | |
Merge pull request #5 from zephex-alt/master
changes
Diffstat (limited to 'src/app/layout.jsx')
| -rw-r--r-- | src/app/layout.jsx | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/src/app/layout.jsx b/src/app/layout.jsx index a2fc5ae..2cedeb0 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -5,23 +5,47 @@ import Footer from "./components/footer/page"; 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", + title: "Dramalama", description: "Online service to watch kdramas and anime for free. You can also read and download mangas for free.", + generator: "Next.js", + applicationName: "Dramalama", + authors: [{ name: "zephex", url: "https://github.com/real-zephex" }], + creator: "Zephex", + keywords: ["Kdrama", "Anime", "Manga", "Watch Online"], + robots: { + index: true, + follow: true, + nocache: false, + googleBot: { + index: true, + follow: true, + noimageindex: false, + "max-video-preview": -1, + "max-image-preview": "large", + "max-snippet": -1, + }, + }, + verification: { + google: "google", + yandex: "yandex", + yahoo: "yahoo", + other: { + me: ["[email protected]"], + }, + }, }; export default function RootLayout({ children }) { return ( <html lang="en"> - <body className={inter.className}> + <body> <SpeedInsights /> <Analytics /> <Header /> - <Footer /> {children} + <Footer /> </body> </html> ); |