Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
1import { memo } from "react";
2import { Link } from "react-router";
3import PageHeader from "@/components/Pages/PageHeader";
4import PageLayout from "@/components/Shared/PageLayout";
5import { H4 } from "@/components/Shared/UI";
6
7const Copyright = () => {
8 const updatedAt = "October 22, 2024";
9
10 return (
11 <PageLayout title="Copyright Policy">
12 <PageHeader title="Copyright Policy" updatedAt={updatedAt} />
13 <div className="relative">
14 <div className="flex justify-center">
15 <div className="relative mx-auto rounded-lg">
16 <div className="!p-8 max-w-none text-gray-500 dark:text-gray-200">
17 {/* Notification of Copyright Infringement begins */}
18 <H4 className="mb-5">Notification of Copyright Infringement</H4>
19 <div className="space-y-5">
20 <p className="leading-7">
21 Hey ("Hey.xyz") respects the intellectual property rights of
22 others and expects its users to do the same.
23 </p>
24 <p className="leading-7">
25 It is Hey's policy, in appropriate circumstances and at its
26 discretion, to disable the accounts of users who repeatedly
27 infringe the copyrights of others.
28 </p>
29 <p className="linkify leading-7">
30 In accordance with the Digital Millennium Copyright Act of
31 1998, the text of which may be found on the U.S. Copyright
32 Office website at{" "}
33 <Link
34 target="_blank"
35 to="http://www.copyright.gov/legislation/dmca.pdf"
36 >
37 http://www.copyright.gov/legislation/dmca.pdf
38 </Link>
39 , Hey will respond expeditiously to claims of copyright
40 infringement committed using the Hey website, app, or other
41 Hey owned or controlled online network services accessible
42 through a mobile device or other type of device (the "Sites")
43 that are reported to Hey's Designated Copyright Agent,
44 identified in the sample notice below.
45 </p>
46 <p className="leading-7">
47 If you are a copyright owner, or are authorized to act on
48 behalf of one, or authorized to act under any exclusive right
49 under copyright, please report alleged copyright infringements
50 taking place on or through the Sites by completing the
51 following DMCA Notice of Alleged Infringement and delivering
52 it to Hey's Designated Copyright Agent. Upon receipt of the
53 Notice as described below, Hey will take whatever action, in
54 its sole discretion, it deems appropriate, including removal
55 of the challenged material from the Sites.
56 </p>
57 </div>
58 {/* Notification of Copyright Infringement ends */}
59 {/* DMCA Notice of Alleged Infringement ("Notice") begins */}
60 <H4 className="mt-8 mb-5">
61 DMCA Notice of Alleged Infringement ("Notice")
62 </H4>
63 <div className="space-y-5">
64 <p className="leading-7">
65 1. Identify the copyrighted work that you claim has been
66 infringed, or – if multiple copyrighted works are covered by
67 this Notice – you may provide a representative list of the
68 copyrighted works that you claim have been infringed.
69 </p>
70 <p className="leading-7">
71 2. Identify the material that you claim is infringing (or to
72 be the subject of infringing activity) and that is to be
73 removed or access to which is to be disabled, and information
74 reasonably sufficient to permit us to locate the material,
75 including at a minimum, if applicable, the URL of the link
76 shown on the Site(s) where such material may be found.
77 </p>
78 <p className="leading-7">
79 3. Provide your mailing address, telephone number, and email
80 address.
81 </p>
82 <div className="space-y-5">
83 <p className="leading-7">
84 4. Include both of the following statements in the body of
85 the Notice:
86 </p>
87 <ul className="ml-5 list-inside list-disc space-y-5">
88 <li>
89 "I hereby state that I have a good faith belief that the
90 disputed use of the copyrighted material is not authorized
91 by the copyright owner, its agent, or the law (e.g., as a
92 fair use)."
93 </li>
94 <li>
95 "I hereby state that the information in this Notice is
96 accurate and, under penalty of perjury, that I am the
97 owner, or authorized to act on behalf of the owner, of the
98 copyright or of an exclusive right under the copyright
99 that is allegedly infringed."
100 </li>
101 </ul>
102 </div>
103 <p className="leading-7">
104 5. Provide your full legal name and your electronic or
105 physical signature.
106 </p>
107 <p className="leading-7">
108 Deliver this Notice, with all items completed, to Hey's
109 Designated Copyright Agent:
110 </p>
111 <p className="leading-7">
112 Hey Designated Copyright Agent: Yoginth
113 </p>
114 <p className="linkify leading-7">
115 Email:{" "}
116 <Link to="mailto:copyright@hey.xyz">copyright@hey.xyz</Link>
117 </p>
118 </div>
119 {/* DMCA Notice of Alleged Infringement ("Notice") ends */}
120 </div>
121 </div>
122 </div>
123 </div>
124 </PageLayout>
125 );
126};
127
128export default memo(Copyright);