terms and agreement implementation

This commit was merged in pull request #49.
This commit is contained in:
victorAnumudu
2023-05-09 20:27:18 +01:00
parent d7f3d10cdd
commit f59c0c1522
+28 -18
View File
@@ -18,7 +18,7 @@ export default function StartJob(props) {
<div className="notification-page w-full mb-10">
<div className="notification-wrapper w-full">
{/* heading */}
<div className="sm:flex justify-between items-center mb-6">
{/* <div className="sm:flex justify-between items-center mb-6">
<div className="mb-5 sm:mb-0">
<h1 className="text-26 font-bold text-dark-gray dark:text-white">
<span
@@ -34,16 +34,16 @@ export default function StartJob(props) {
</div>
</div>
</div>
</div> */}
<div
className={`update-table w-full p-8 bg-white dark:bg-dark-white overflow-hidden rounded-2xl section-shadow min-h-[520px]`}
>
<div className="header w-full flex justify-between items-center mb-5">
<div className="flex space-x-2 items-center">
<h1 className="text-xl font-bold text-dark-gray dark:text-white tracking-wide">
Terms & Agreement
</h1>
<h3 className="text-lg font-bold text-dark-gray dark:text-white tracking-wide">
Additional Terms for Jobs Posting.
</h3>
</div>
{/*<SelectBox*/}
{/* action={setCategory}*/}
@@ -53,24 +53,34 @@ export default function StartJob(props) {
{/*/>*/}
</div>
<div className="relative w-full overflow-x-auto sm:rounded-lg">
All terms of sale must follow WrenchBoard policies for buying and selling. Setting and meeting expectations in a listing's terms of sale ensure a smooth transaction and buyer satisfaction while helping WrenchBoard remain a reputable marketplace.
<p className="my-2 text-base">All terms of sale must follow WrenchBoard policies for buying and selling. Setting and meeting expectations in a listing's terms of sale ensure a smooth transaction and buyer satisfaction while helping WrenchBoard remain a reputable marketplace.
</p>
What is the policy?
Task or Job owners should provide clear and accurate delivery terms and conditions required to meet the expectations they have set in their listings. These should include:
Delivery mode, timelines, and reviews
The forms of payment available for the task
A returns policy:
Clearly stated criteria under which cancellation will be accepted.
Clearly stated the time period in which the buyer must notify the seller about the delivery delay.
How refunds/returns/cancellations will be issued
<h3 className="mb-2 mt-6 text-lg font-bold">What is the policy?</h3>
<p className="mt-2 text-base">Task or Job owners should provide clear and accurate delivery terms and conditions required to meet the expectations they have set in their listings. These should include:</p>
<ul className="mt-3 mb-10 border-2 rounded-md">
<li className="px-2 py-1 text-sm text-slate-900 border-b-2">Delivery mode, timelines, and reviews</li>
<li className="px-2 py-1 text-sm text-slate-900">The forms of payment available for the task</li>
<li className="px-2 py-1 text-sm text-slate-900">A returns policy:
<ul>
<li className="px-2 py-1 text-sm text-slate-900">Clearly stated criteria under which cancellation will be accepted.</li>
<li className="px-2 py-1 text-sm text-slate-900">Clearly stated the time period in which the buyer must notify the seller about the delivery delay.</li>
<li className="px-2 py-1 text-sm text-slate-900 border-2 rounded-md">How refunds/returns/cancellations will be issued</li>
</ul>
</li>
</ul>
Activity that doesn't follow WrenchBoard policy could result in a range of actions, including for example: administratively ending or canceling listings, hiding or demoting all listings from search results, lowering rating, buying or selling restrictions, and account suspension.
All fees paid or payable concerning listings or accounts on which we take any action will not be refunded or otherwise credited to your account.
<p className="my-2 mt-6 text-base">Activity that doesn't follow WrenchBoard policy could result in a range of actions, including for example: administratively ending or canceling listings, hiding or demoting all listings from search results, lowering rating, buying or selling restrictions, and account suspension.
All fees paid or payable concerning listings or accounts on which we take any action will not be refunded or otherwise credited to your account.</p>
Why does WrencBoard have this policy?
Buyers and sellers enter a contract when they complete transactions, so it's necessary to have precise details on what the transaction entails to guarantee satisfaction. This policy also helps sellers meet our performance standards.
<h3 className="mb-2 mt-6 text-lg font-bold">Why does WrencBoard have this policy?</h3>
<p className="my-2 text-base">Buyers and sellers enter a contract when they complete transactions, so it's necessary to have precise details on what the transaction entails to guarantee satisfaction. This policy also helps sellers meet our performance standards.</p>
<div className="my-2 p-2 flex justify-end items-center">
<button className="p-2 text-sm text-white font-medium bg-sky-800 rounded-lg hover:opacity-90">Agree to Terms</button>
</div>
</div>
</div>