← back to StudentLoanTracker

src/app/disclaimer/page.tsx

58 lines

export const metadata = {
  title: 'Disclaimer - StudentLoanTracker',
};

export default function DisclaimerPage() {
  return (
    <div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
      <h1 className="text-3xl font-bold mb-6">Disclaimer</h1>

      <div className="prose prose-gray max-w-none space-y-6 text-gray-700 leading-relaxed">
        <div className="p-4 bg-amber-50 border border-amber-200 rounded-lg">
          <p className="text-amber-900 font-medium">
            StudentLoanTracker is not affiliated with, endorsed by, or connected to
            the U.S. Department of Education, Federal Student Aid, or any federal
            government agency.
          </p>
        </div>

        <h2 className="text-xl font-semibold text-gray-900 mt-8">Estimates Only</h2>
        <p>
          All repayment calculations, PSLF projections, and financial estimates provided
          by this tool are approximations based on publicly available formulas and the
          data you provide. Actual repayment amounts may differ due to rounding, interest
          capitalization timing, policy changes, or other factors.
        </p>

        <h2 className="text-xl font-semibold text-gray-900 mt-8">Not Financial Advice</h2>
        <p>
          Nothing on this website constitutes financial, legal, or tax advice. The
          information provided is for educational and informational purposes only. You
          should consult with a qualified financial advisor, tax professional, or your
          loan servicer before making decisions about your student loans.
        </p>

        <h2 className="text-xl font-semibold text-gray-900 mt-8">Accuracy of Information</h2>
        <p>
          While we strive to keep information current and accurate, repayment plan rules,
          income thresholds, and servicer details change frequently. We make no guarantees
          about the completeness or accuracy of any information on this site.
        </p>

        <h2 className="text-xl font-semibold text-gray-900 mt-8">Servicer Information</h2>
        <p>
          Servicer contact information and supported plans are maintained for reference
          only. Always verify details directly with your servicer or at
          StudentAid.gov for the most current information.
        </p>

        <h2 className="text-xl font-semibold text-gray-900 mt-8">Third-Party Links</h2>
        <p>
          This site may contain links to external websites. We are not responsible for
          the content or privacy practices of any third-party sites.
        </p>
      </div>
    </div>
  );
}