terms-conditions.js 3.85 KB
import React from "react";

import PageBanner from "@/components/reuseables/PageBanner";
import { Container } from "react-bootstrap";
const banners = [
  {
    imageSrc: "/images/page-title-bg.jpg",
    pageTitle: "Term and Conditions",
    homePageUrl: "/",
    homePageText: "Term and Conditions",
    activePageText: "Tax Wire",
  },
  // Add more banners as needed
];
export default function TermsConditions() {
  return (
    <>
      <PageBanner banners={banners} />

      <div className="terms-conditions-area ptb-100">
        <Container>
          <div className="terms-conditions-content">
            <h3>Overview</h3>
            <p>
              We may collect personal identification information from Users in a
              variety of ways, including, but not limited to, when Users visit
              our site, subscribe to the newsletter, fill out a form, and in
              connection with other activities, services, features or resources
              we make available on our Site. Users may be asked for, as
              appropriate, name, email address, mailing address, phone number,
              company name. We will collect personal identification information
              from Users only if they voluntarily consent such information to
              us. Users can always refuse to supply personally identification
              information, except that it may prevent them from engaging in
              certain Site related activities.
            </p>

            <h3>General permission to use and access and use limitations</h3>
            <p>
              This site is provided by <strong>Zixon</strong>.{" "}
              <strong>Zixon</strong> collects information in several ways from
              different parts of this site.
            </p>
            <p>
              <strong>1.</strong> Complimentary ground shipping within 1 to 7
              business days
              <br />
              <strong>2.</strong> In-store collection available within 1 to 7
              business days
              <br />
              <strong>3.</strong> Next-day and Express delivery options also
              available
              <br />
              <strong>4.</strong> Purchases are delivered in an orange box tied
              with a Bolduc ribbon, with the exception of certain items
              <br />
              <strong>5.</strong> See the delivery FAQs for details on shipping
              methods, costs and delivery times
            </p>

            <h3>Confidential information</h3>
            <p>
              <strong>Zixon</strong> accepts the following payment methods:
            </p>
            <ul>
              <li>
                Credit Card: <strong>Visa</strong>, <strong>MasterCard</strong>,{" "}
                <strong>Discover</strong>, <strong>American Express</strong>,{" "}
                <strong>JCB</strong>, <strong>Visa Electron</strong>. The total
                will be charged to your card when the order is shipped.
              </li>
              <li>
                <strong>Zixon</strong> features a Fast Checkout option, allowing
                you to securely save your credit card details so that you don't
                have to re-enter them for future purchases.
              </li>
            </ul>

            <h3>Linking to this Site</h3>
            <p>
              Items returned within 14 days of their original shipment date in
              same as new condition will be eligible for a full refund or store
              credit. Refunds will be charged back form of payment used for
              purchase. Customer is responsible for shipping charges when making
              returns and shipping/handling fees of original purchase is
              non-refundable.
            </p>
            <p>Last updated: January 25, 2024 at 24:00 pm</p>
          </div>
        </Container>
      </div>
    </>
  );
}