import type { Metadata } from "next";

import Breadcrumb from "@/components/common/Breadcrumb";
import CTA from "@/components/common/CTA";

export const metadata: Metadata = {
  title: "Disclaimer",
  description:
    "Read the disclaimer of Rajvi Social Welfare Trust regarding website information, donations, programs, external links and user responsibilities.",
  alternates: {
    canonical: "/disclaimer",
  },
};

export default function DisclaimerPage() {
  return (
    <>
      <section className="relative overflow-hidden bg-slate-950 pb-20 pt-32 text-white sm:pt-36 lg:pt-40">
        <div className="absolute inset-0 bg-[radial-gradient(circle_at_top_right,rgba(251,191,36,0.15),transparent_40%)]" />

        <div className="relative z-10 mx-auto max-w-5xl px-4 text-center sm:px-6 lg:px-8">
          <span className="inline-flex rounded-full bg-white/10 px-4 py-2 text-[11px] font-bold uppercase tracking-widest text-[var(--accent)]">
            Legal Information
          </span>

          <h1 className="mt-6 text-4xl font-extrabold sm:text-5xl lg:text-6xl">
            Disclaimer
          </h1>

          <p className="mx-auto mt-6 max-w-3xl text-sm leading-7 text-slate-300 sm:text-lg sm:leading-8">
            Please read this disclaimer carefully before using the Rajvi
            Social Welfare Trust website.
          </p>
        </div>
      </section>

      <Breadcrumb />

      <section className="bg-white py-14 sm:py-16 lg:py-24">
        <div className="mx-auto max-w-5xl px-4 sm:px-6 lg:px-8">
          <div className="rounded-3xl border border-slate-200 bg-white p-6 shadow-sm sm:p-8 lg:p-10">
            <div className="space-y-8 text-slate-600">
              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  General Information
                </h2>

                <p className="mt-4 leading-8">
                  The information provided on this website is for general
                  informational and awareness purposes only. Rajvi Social
                  Welfare Trust makes every effort to ensure that the
                  information published on this website is accurate and
                  up-to-date; however, we do not guarantee the completeness,
                  reliability or accuracy of any information.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  No Professional Advice
                </h2>

                <p className="mt-4 leading-8">
                  The content available on this website should not be
                  considered legal, medical, financial or professional advice.
                  Users should seek appropriate professional guidance before
                  making decisions based on any information available on this
                  website.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  Donations & Contributions
                </h2>

                <p className="mt-4 leading-8">
                  Donations made to Rajvi Social Welfare Trust are voluntary.
                  While we strive to utilize all donations responsibly for
                  welfare and charitable purposes, the Trust reserves the
                  right to allocate funds according to organizational needs
                  and program priorities.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  External Links
                </h2>

                <p className="mt-4 leading-8">
                  This website may contain links to third-party websites.
                  Rajvi Social Welfare Trust is not responsible for the
                  content, policies, services or practices of any external
                  websites linked from this platform.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  Limitation of Liability
                </h2>

                <p className="mt-4 leading-8">
                  Rajvi Social Welfare Trust shall not be liable for any
                  direct, indirect, incidental or consequential damages
                  resulting from the use of this website, its content or any
                  reliance placed on the information provided herein.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  Changes to Disclaimer
                </h2>

                <p className="mt-4 leading-8">
                  Rajvi Social Welfare Trust reserves the right to modify,
                  update or replace this Disclaimer at any time without prior
                  notice. Users are encouraged to review this page
                  periodically for updates.
                </p>
              </div>

              <div>
                <h2 className="text-2xl font-bold text-slate-950">
                  Contact Information
                </h2>

                <p className="mt-4 leading-8">
                  If you have any questions regarding this Disclaimer, please
                  contact Rajvi Social Welfare Trust through our Contact Page
                  or email us at:
                </p>

                <p className="mt-3 font-semibold text-slate-950">
                  info@rajvisocialwelfare.org
                </p>
              </div>
            </div>
          </div>
        </div>
      </section>

      <CTA />
    </>
  );
}