diff options
Diffstat (limited to 'pages/index.js')
| -rw-r--r-- | pages/index.js | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/pages/index.js b/pages/index.js index 6f020fb..56b2c1f 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,7 +1,26 @@ +import Head from "next/head"; import { parseCookies } from "nookies"; export default function Home() { - return <></>; + return ( + <> + <Head> + <meta + name="twitter:title" + content="Moopa - Free Anime and Manga Streaming" + /> + <meta + name="twitter:description" + content="Discover your new favorite anime or manga title! Moopa offers a vast library of high-quality content, accessible on multiple devices and without any interruptions. Start using Moopa today!" + /> + <meta name="twitter:image" content="/preview.png" /> + <meta + name="description" + content="Discover your new favorite anime or manga title! Moopa offers a vast library of high-quality content, accessible on multiple devices and without any interruptions. Start using Moopa today!" + /> + </Head> + </> + ); } export async function getServerSideProps(context) { |