← back to Trademarks Copyright

src/app/legal/refund/page.tsx

26 lines

export const metadata = {
  title: "Refund Policy — Drops",
  description: "Simple refund policy: 7-day money back, then cancel-anytime.",
};

export default function RefundPage() {
  return (
    <article className="card mx-auto max-w-3xl p-8">
      <h1 className="text-3xl font-semibold">Refund Policy</h1>
      <p className="text-xs text-ink/50 mt-1">Last updated: April 24, 2026</p>

      <h2 className="mt-6 text-xl font-semibold">7-day money-back, no questions asked</h2>
      <p>If you upgrade to a paid tier and decide within 7 days that Drops isn't for you, email <a href="mailto:drops@agentabrams.com" className="text-brass underline">drops@agentabrams.com</a> from your subscriber email and we'll refund the charge in full. You keep access through the end of the originally-billed period unless you ask us to terminate immediately.</p>

      <h2 className="mt-6 text-xl font-semibold">After 7 days</h2>
      <p>Cancel from your subscriber portal or via the unsubscribe link in any email. Cancellation stops future billing; we do not prorate partial months.</p>

      <h2 className="mt-6 text-xl font-semibold">Chargebacks</h2>
      <p>Before filing a chargeback, please email us. Most "I didn't mean to subscribe" disputes get refunded the same day without a chargeback. Chargebacks without prior contact will terminate the account and add the email to our no-resignup list.</p>

      <h2 className="mt-6 text-xl font-semibold">Annual / lifetime tiers</h2>
      <p>We don't offer those yet. If we introduce them, the refund policy will be updated.</p>
    </article>
  );
}