import type { Metadata } from "next";
import Reveal from "@/components/Reveal";
import { ENTITY } from "@/content/contact";

export const metadata: Metadata = {
  title: "Terms of Use",
  description: "Terms of use for the Genesis Global website.",
};

export default function TermsPage() {
  return (
    <>
      <Reveal />
      <section className="room-paper" style={{ paddingTop: "clamp(140px, 18vh, 210px)", paddingBottom: "clamp(70px, 9vw, 130px)" }}>
        <div className="wrap" style={{ maxWidth: 820, marginInline: "auto" }}>
          <p className="eyebrow rv on">Legal</p>
          <h1 className="h2 rv on d1">Terms of Use</h1>
          <div className="prose rv on d2" style={{ marginTop: 36 }}>
            <p>
              This website is published by {ENTITY} (&quot;Genesis&quot;,
              &quot;the house&quot;). By accessing it you accept the terms
              below; if you do not accept them, please do not use the site.
            </p>
            <h2>Informational purpose</h2>
            <p>
              Everything on this website is provided for general information
              only. Nothing here constitutes an offer, a valuation, or
              financial, investment or legal advice. Gemstones are presented as
              objects of collecting interest; any acquisition is governed
              exclusively by the specific terms agreed in writing between the
              house and the client, and specific terms and conditions apply to
              any programme or plan referred to on this site.
            </p>
            <h2>No promises of value</h2>
            <p>
              Past appreciation of any gemstone, category or collection is no
              indication of future value. The house makes no representation or
              warranty that any gemstone will appreciate or retain value.
            </p>
            <h2>Intellectual property</h2>
            <p>
              All content on this website, text, photography, film and design, belongs to Genesis or its licensors and may not be reproduced
              without prior written consent, except for personal,
              non commercial viewing.
            </p>
            <h2>Accuracy</h2>
            <p>
              The house takes care that gemmological information published here
              is accurate and that all claims about its own stones reflect
              laboratory documentation. Errors brought to the house&apos;s
              attention will be corrected promptly.
            </p>
            <h2>External links</h2>
            <p>
              Links to external publications and platforms are provided for
              reference. Genesis is not responsible for their content.
            </p>
            <h2>Governing law</h2>
            <p>
              These terms are governed by the laws of the Hong Kong Special
              Administrative Region.
            </p>
            <p className="caption">
              This page carries forward the substance of the terms published on
              the house&apos;s previous website, adapted to its Hong Kong
              operations. It is subject to review by the house&apos;s counsel.
            </p>
          </div>
        </div>
      </section>
    </>
  );
}
