All files / src/app/(site)/(pages)/refund-policy page.tsx

0% Statements 0/68
100% Branches 0/0
0% Functions 0/1
0% Lines 0/68

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69                                                                                                                                         
import React from 'react';

export const metadata = {
  title: 'Refund Policy | Elite Events',
  description: 'Refund and Return Policy for Elite Events'};

export default function RefundPolicyPage() {
  return (
    <div className="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 pt-[140px] pb-20">
      <div className="max-w-[800px] mx-auto">
        <h1 className="text-3xl sm:text-4xl font-bold text-dark mb-8">Refund Policy</h1>

        <div className="prose prose-lg">
          <p className="text-body mb-6">
            Last updated: {new Date().toLocaleDateString()}
          </p>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">1. Return Window</h2>
            <p className="text-body mb-4">
              You may return most new, unopened items within 30 days of delivery for a full refund.
              We&apos;ll also pay the return shipping costs if the return is a result of our error.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">2. Refund Processing</h2>
            <p className="text-body mb-4">
              Once we receive your item, we will inspect it and notify you of the approval or rejection of your refund.
              If approved, your refund will be processed within 5-7 business days.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">3. Non-Returnable Items</h2>
            <p className="text-body mb-4">
              Certain items cannot be returned, including perishable goods, custom products,
              and personal care items. Gift cards and downloadable software are also non-returnable.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">4. Exchanges</h2>
            <p className="text-body mb-4">
              We only replace items if they are defective or damaged.
              Please contact us to arrange an exchange.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">5. Shipping Costs</h2>
            <p className="text-body mb-4">
              You will be responsible for paying for your own shipping costs for returning your item.
              Shipping costs are non-refundable unless the return is due to our error.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">6. Contact Us</h2>
            <p className="text-body mb-4">
              If you have any questions about returns or refunds, please contact us at support@dcsuniverse.com
            </p>
          </section>
        </div>
      </div>
    </div>
  );
}