blob: e55982991ce19ae46e31d6bb1b03fbc08fe4df05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
import MobileNav from "@/components/shared/MobileNav";
import { NewNavbar } from "@/components/shared/NavBar";
import Footer from "@/components/shared/footer";
import Head from "next/head";
export default function DMCA() {
return (
<>
<Head>
<title>Moopa - DMCA</title>
<meta name="DMCA" content="DMCA" />
<meta property="og:title" content="DMCA" />
<meta
property="og:description"
content="Moopa.live is committed to respecting the intellectual
property rights of others and complying with the Digital
Millennium Copyright Act (DMCA)."
/>
<meta property="og:image" content="/icon-512x512.png" />
<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} />
<MobileNav hideProfile={true} />
<div className="min-h-screen z-20 flex w-screen justify-center items-center">
<div className="px-5 lg:px-0 lg:w-[75%] text-2xl gap-7 flex flex-col my-[10rem]">
<div className="flex">
<h1 className="text-4xl font-bold font-karla rounded-md bg-secondary p-3">
DMCA - Disclaimer
</h1>
</div>
<div className="flex flex-col gap-10">
<div className="flex flex-col gap-3 text-[#cdcdcd]">
<p>
Moopa.live is committed to respecting the intellectual
property rights of others and complying with the Digital
Millennium Copyright Act (DMCA). We take copyright
infringement seriously and will respond to notices of alleged
copyright infringement that comply with the DMCA and any other
applicable laws.
</p>
<p>
If you believe that any content on our website is infringing
upon your copyrights, please send us an email. Please allow up
to 2-5 business days for a response. Please note that emailing
your complaint to other parties such as our Internet Service
Provider, Hosting Provider, and other third parties will not
expedite your request and may result in a delayed response due
to the complaint not being filed properly.
</p>
</div>
<p className="text-white">
In order for us to process your complaint, please provide the
following information:
</p>
<div className="text-xl ml-5 text-[#cdcdcd]">
<ul className="flex flex-col gap-1">
<li>
· Your name, address, and telephone number. We reserve the
right to verify this information.
</li>
<li>
· Identification of the copyrighted work claimed to have
been infringed.
</li>
<li>
· The exact and complete URL link where the infringing
material is located.
</li>
<li>
· The exact and complete URL link where the infringing
material is located.
</li>
<li>
· The exact and complete URL link where the infringing
material is located.
</li>
<li>· Please write to us in English or Indonesian.</li>
</ul>
</div>
<p className="text-[#cdcdcd]">
Please note that anonymous or incomplete messages will not be
dealt with. Thank you for your understanding.
</p>
<h1 className="text-white font-karla">DISCLAIMER:</h1>
<p className="text-[#cdcdcd]">
None of the files listed on Moopa.live are hosted on our
servers. All links point to content hosted on third-party
websites. Moopa.live does not accept responsibility for content
hosted on third-party websites and has no involvement in the
downloading/uploading of movies. We only post links that are
available on the internet. If you believe that any content on
our website infringes upon your intellectual property rights and
you hold the copyright for that content, please report it to{" "}
<a
href="mailto:[email protected]?subject=[Moopa]%20-%20Your%20Subject"
className="font-semibold"
>
contact@moopa.live
</a>{" "}
and the content will be immediately removed.
</p>
</div>
</div>
</div>
<Footer />
</>
</>
);
}
|