diff options
| author | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
| commit | 50a0f0240d7fef133eb5acc1bea2b1168b08e9db (patch) | |
| tree | 307e09e505580415a58d64b5fc3580e9235869f1 /pages/index.js | |
| parent | Update README.md (#104) (diff) | |
| download | moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.tar.xz moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.zip | |
migrate to typescript
Diffstat (limited to 'pages/index.js')
| -rw-r--r-- | pages/index.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/pages/index.js b/pages/index.js deleted file mode 100644 index 25d5b20..0000000 --- a/pages/index.js +++ /dev/null @@ -1,32 +0,0 @@ -import Head from "next/head"; - -export default function Home() { - 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() { - return { - redirect: { - destination: "/en", - permanent: false, - }, - }; -} |