← back to Nineoh Guide

apps/web/app/legal/disclaimer/page.tsx

31 lines

export const metadata = { title: "Disclaimer" };

export default function Disclaimer() {
  return (
    <article style={{ lineHeight: 1.7 }}>
      <h1>Disclaimer</h1>
      <p>
        <strong>This is an unofficial fan-made guide.</strong> The Unofficial
        90210 Guide is an independent, fan-created reference and is <em>not</em>{" "}
        affiliated with, authorized, endorsed, or sponsored by the producers,
        network, distributors, cast, or any rights-holders of the television
        series it discusses. All series titles, character names, and trademarks
        referenced belong to their respective owners and are used here for
        identification and editorial commentary only.
      </p>
      <p>
        All episode summaries, cast biographies, and news write-ups in this app
        are <strong>original works</strong> written by our editorial team. We do
        not reproduce official synopses, promotional artwork, logos, or
        press-kit photography. Images shown are either in the public domain,
        offered under a Creative Commons license, or used under a separate
        license we have obtained; each carries its own attribution.
      </p>
      <p>
        If you believe any material infringes your rights, please see our{" "}
        <a href="/legal/dmca">Copyright / DMCA Policy</a>.
      </p>
    </article>
  );
}