All files / src/app/(site)/(pages)/terms-of-use page.tsx

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

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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85                                                                                                                                                                         
import React from 'react';

export const metadata = {
  title: 'Terms of Use | Elite Events',
  description: 'Terms of Use for Elite Events'};

export default function TermsOfUsePage() {
  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">Terms of Use</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. Acceptance of Terms</h2>
            <p className="text-body mb-4">
              By accessing and using this website, you accept and agree to be bound by the terms
              and provisions of this agreement.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">2. Use License</h2>
            <p className="text-body mb-4">
              Permission is granted to temporarily access the materials on Elite Events&apos; website
              for personal, non-commercial transitory viewing only.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">3. User Account</h2>
            <p className="text-body mb-4">
              You are responsible for maintaining the confidentiality of your account and password.
              You agree to accept responsibility for all activities that occur under your account.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">4. Prohibited Uses</h2>
            <p className="text-body mb-4">
              You may not use our website for any unlawful purpose or to solicit others to perform
              unlawful acts. You may not violate any regulations, policies, or procedures of networks connected to our site.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">5. Intellectual Property</h2>
            <p className="text-body mb-4">
              All content on this website, including text, graphics, logos, and images,
              is the property of Elite Events and is protected by copyright laws.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">6. Limitation of Liability</h2>
            <p className="text-body mb-4">
              Elite Events shall not be liable for any damages that may result from the use
              of this website or the inability to use this website.
            </p>
          </section>

          <section className="mb-8">
            <h2 className="text-2xl font-semibold text-dark mb-4">7. Modifications</h2>
            <p className="text-body mb-4">
              Elite Events may revise these terms of use at any time without notice.
              By using this website, you agree to be bound by the current version of these terms.
            </p>
          </section>

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