← back to Nineoh Guide
apps/web/app/legal/dmca/page.tsx
44 lines
export const metadata = { title: "Copyright / DMCA Policy" };
export default function Dmca() {
return (
<article style={{ lineHeight: 1.7 }}>
<h1>Copyright / DMCA Policy</h1>
<p>
We respect intellectual property rights and respond to notices of
alleged infringement under the Digital Millennium Copyright Act (17
U.S.C. § 512).
</p>
<h2>Designated agent</h2>
<p>
Send notices to our designated DMCA contact:{" "}
<strong>
{process.env.NEXT_PUBLIC_DMCA_EMAIL ??
"our published legal contact (configured before public launch)"}
</strong>
.
</p>
<h2>A valid notice must include</h2>
<ol>
<li>Identification of the copyrighted work claimed to be infringed.</li>
<li>Identification and location (URL / screen) of the material.</li>
<li>Your contact information.</li>
<li>A good-faith-belief statement.</li>
<li>A statement, under penalty of perjury, of accuracy and authority.</li>
<li>Your physical or electronic signature.</li>
</ol>
<h2>Our process</h2>
<p>
We triage promptly, may disable disputed material while investigating,
notify the uploader, provide a counter-notice path, and reinstate only
if the statutory process is satisfied.
</p>
<h2>Repeat-infringer policy</h2>
<p>
We terminate, in appropriate circumstances, the accounts of users who
are repeat infringers.
</p>
</article>
);
}