aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js32
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,
- },
- };
-}