← back to Watches

src/components/AffiliateDisclosure.jsx

27 lines

import React from 'react';

const AffiliateDisclosure = ({ full = false }) => {
  if (full) {
    return (
      <div className="max-w-3xl mx-auto p-6">
        <h1 className="text-2xl font-bold mb-4">Affiliate Disclosure</h1>
        <div className="prose">
          <p>Omega Watch Platform participates in affiliate programs with watch retailers including Chrono24, eBay, Jomashop, and Bob's Watches.</p>
          <p>When you click on links to these retailers and make a purchase, we may earn a commission at no additional cost to you.</p>
          <p>This helps support the operation of our platform and allows us to continue providing free price tracking services.</p>
          <p>Our editorial content and watch data are not influenced by these partnerships. We provide objective price data regardless of affiliate relationships.</p>
        </div>
      </div>
    );
  }

  return (
    <div className="text-xs text-gray-500 flex items-center">
      <span className="mr-1" title="We may earn commission from purchases">*</span>
      <span>Affiliate link</span>
    </div>
  );
};

export default AffiliateDisclosure;