diff options
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..cf6eba4 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: false, + follow: true, + nocache: true, + googleBot: { + index: true, + follow: false, + noimageindex: true, + "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> ); |