import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Modern Slavery Statement",
  description: "AdultWorld modern slavery statement under Section 54 of the Modern Slavery Act 2015.",
};

export default function ModernSlaveryPage() {
  return (
    <div className="max-w-3xl mx-auto space-y-8">
      <h1 className="text-3xl font-bold text-text">Modern Slavery Statement</h1>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Introduction</h2>
        <p className="text-text-muted leading-relaxed">
          This statement is made pursuant to Section 54 of the Modern Slavery Act 2015
          and sets out the steps that AdultWorld has taken and continues to take to ensure
          that modern slavery or human trafficking is not taking place within our business
          or supply chain.
        </p>
        <p className="text-text-muted leading-relaxed">
          AdultWorld has a zero-tolerance approach to modern slavery and is committed to
          acting ethically and with integrity in all our business dealings and relationships.
          We are committed to implementing and enforcing effective systems and controls to
          ensure modern slavery is not taking place anywhere in our business.
        </p>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Our Business</h2>
        <p className="text-text-muted leading-relaxed">
          AdultWorld operates an online platform that connects adults seeking companionship
          and entertainment services. We are committed to ensuring that all individuals who
          use our platform do so voluntarily, of their own free will, and are of legal age.
        </p>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Our Policies</h2>
        <p className="text-text-muted leading-relaxed">
          We operate a number of internal policies to ensure that we are conducting
          business in an ethical and transparent manner. These include:
        </p>
        <ul className="list-disc list-inside text-text-muted space-y-2">
          <li>
            <strong className="text-text">Anti-Slavery Policy:</strong> We are committed to
            ensuring there is no modern slavery or human trafficking in our supply chains
            or in any part of our business.
          </li>
          <li>
            <strong className="text-text">Recruitment Policy:</strong> We operate a robust
            recruitment process, including eligibility to work checks for all employees.
          </li>
          <li>
            <strong className="text-text">Whistleblowing Policy:</strong> We encourage all
            our workers, customers and other business partners to report any concerns
            related to our direct activities or supply chains.
          </li>
          <li>
            <strong className="text-text">User Verification:</strong> We implement
            age verification and identity checking processes to help prevent exploitation
            of vulnerable individuals.
          </li>
        </ul>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Due Diligence</h2>
        <p className="text-text-muted leading-relaxed">
          As part of our initiative to identify and mitigate risk, we:
        </p>
        <ul className="list-disc list-inside text-text-muted space-y-2">
          <li>Monitor and review potential risk areas in our supply chains</li>
          <li>Conduct risk assessments on new suppliers and partners</li>
          <li>Protect whistleblowers who report concerns in good faith</li>
          <li>Cooperate fully with law enforcement agencies when concerns are raised</li>
          <li>Actively monitor listings and profiles for signs of coercion or trafficking</li>
          <li>Provide clear reporting mechanisms for users who suspect exploitation</li>
        </ul>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Training</h2>
        <p className="text-text-muted leading-relaxed">
          We provide training to our staff to ensure a high level of understanding of the
          risks of modern slavery and human trafficking in our business and supply chains.
          Our team members are trained to identify potential signs of trafficking and know
          the appropriate reporting procedures.
        </p>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Reporting Concerns</h2>
        <p className="text-text-muted leading-relaxed">
          If you have concerns about modern slavery or human trafficking related to our
          business or any profiles on our platform, please contact us immediately at{" "}
          <a href="mailto:hello@adultworld.ai" className="text-primary hover:text-primary-light">
            hello@adultworld.ai
          </a>
          . All reports will be treated with the utmost seriousness and confidentiality.
        </p>
        <p className="text-text-muted leading-relaxed">
          You can also contact the Modern Slavery Helpline on{" "}
          <strong className="text-text">08000 121 700</strong> or the police.
        </p>
      </section>

      <section className="bg-surface rounded-lg p-6 space-y-4">
        <h2 className="text-xl font-semibold text-text">Review</h2>
        <p className="text-text-muted leading-relaxed">
          This statement is reviewed and updated annually. It was last updated in{" "}
          {new Date().getFullYear()}.
        </p>
      </section>
    </div>
  );
}
