aboutsummaryrefslogtreecommitdiff
path: root/pages/en/about.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-12-24 13:03:54 +0700
committerFactiven <[email protected]>2023-12-24 13:03:54 +0700
commit50a0f0240d7fef133eb5acc1bea2b1168b08e9db (patch)
tree307e09e505580415a58d64b5fc3580e9235869f1 /pages/en/about.js
parentUpdate README.md (#104) (diff)
downloadmoopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.tar.xz
moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.zip
migrate to typescript
Diffstat (limited to 'pages/en/about.js')
-rw-r--r--pages/en/about.js66
1 files changed, 0 insertions, 66 deletions
diff --git a/pages/en/about.js b/pages/en/about.js
deleted file mode 100644
index aa0ba30..0000000
--- a/pages/en/about.js
+++ /dev/null
@@ -1,66 +0,0 @@
-import Head from "next/head";
-import { motion } from "framer-motion";
-import Link from "next/link";
-import { NewNavbar } from "@/components/shared/NavBar";
-import Footer from "@/components/shared/footer";
-
-export default function About() {
- return (
- <>
- <Head>
- <title>Moopa - About</title>
- <meta name="title" content="About" />
- <meta
- name="description"
- content="Moopa is a platform where you can watch and stream anime or read
- manga for free, without any ads or VPNs. Our mission is to provide
- a convenient and enjoyable experience for anime and manga
- enthusiasts all around the world."
- />
- <meta name="about" content="About this web" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <link rel="icon" href="/svg/c.svg" />
- </Head>
- <NewNavbar withNav={true} scrollP={5} shrink={true} />
- <motion.div
- initial={{ opacity: 0 }}
- animate={{ opacity: 1 }}
- exit={{ opacity: 0 }}
- className="flex flex-col justify-center items-center min-h-screen md:py-0 py-16"
- >
- <div className="max-w-screen-lg w-full px-4 py-10">
- <h1 className="text-4xl font-bold mb-6">About Us</h1>
- <p className="text-lg mb-8">
- Moopa is a platform where you can watch and stream anime or read
- manga for free, without any ads or VPNs. Our mission is to provide a
- convenient and enjoyable experience for anime and manga enthusiasts
- all around the world.
- </p>
- <p className="text-lg mb-8">
- At our site, you will find a vast collection of anime and manga
- titles from different genres, including action, adventure, comedy,
- romance, and more. We take pride in our fast and reliable servers,
- which ensure smooth streaming and reading for all our users.
- </p>
- <p className="text-lg mb-8">
- We believe that anime and manga have the power to inspire and
- entertain people of all ages and backgrounds. Our service is
- designed to make it easy for fans to access the content they love,
- whether they are casual viewers or die-hard fans.
- </p>
- <p className="text-lg mb-8">
- Thank you for choosing our website as your go-to platform for anime
- and manga. We hope you enjoy your stay here, and feel free to
- contact us if you have any feedback or suggestions.
- </p>
- <Link href="/en/contact">
- <div className="bg-[#ffffff] text-black font-medium py-3 px-6 rounded-lg hover:bg-action transition duration-300 ease-in-out">
- Contact Us
- </div>
- </Link>
- </div>
- </motion.div>
- <Footer />
- </>
- );
-}