forked from Mrinal26/green-paradise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
refund.html
95 lines (86 loc) · 3.85 KB
/
refund.html
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
95
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.1.0/swiper-bundle.min.js"
integrity="sha512-4Ooh3fl4STrmn95ZbS/J6l8csp/FvSKPaeDAH/IaPQGJIx9lmpuxXZTCYKR2W5+Bt7i74exPvAT2PsWnac+sow=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<link
href="https://api.fontshare.com/v2/css?f[]=clash-display@200,400,700,500,600,1,300&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="GP.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/category.css" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/nav.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/popularProducts.css" />
<title>Green Paradise - Refunds & Returns</title>
</head>
<body>
<div class="background">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<nav class="navbar sticky-top navbar-expand-lg bg-light"></nav>
<section id="main" class="mt-5">
<div class="container">
<h1 class="heading">
Refunds & Returns
</h1>
<p class="mt-2">
<h2>1. Refund Policy</h2>
<p>We want you to be completely satisfied with your purchase from Green Paradise. If you're not satisfied for any reason, you may return the item within 30 days of purchase for a full refund.</p>
<h2>2. Return Process</h2>
<p>To initiate a return, please contact our customer service team at <a href="mailto:[email protected]">[email protected]</a>. We will provide you with a return label and instructions on how to return the item.</p>
<h2>3. Conditions for Returns</h2>
<p>Items must be in new and unused condition to be eligible for a return. All original packaging and tags must be included. Once we receive the returned item, we will process your refund within [X] business days.</p>
<p>This Refund and Return Policy is effective as of [Date].</p>
<h2>Contact Information:</h2>
<p>If you have any questions or concerns about our Refund and Return Policy, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</p>
</div>
</section>
<footer class="footer py-3 bg-light mt-5"></footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
</body>
</html>
<script type="module">
import footer from "./components/footer.js";
import nav from "./components/nav.js";
document.querySelector("footer").innerHTML = footer();
document.querySelector("nav").innerHTML = nav();
</script>