terms-conditions.js
3.85 KB
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
86
87
88
89
90
91
92
93
94
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>
</>
);
}