2025-08-08 11:53:47 +05:30

94 lines
5.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import Navbar2 from '../../components/Navbar2/Navbar2'
import PageTitle from '../../components/pagetitle/PageTitle'
import Footer from '../../components/footer/Footer'
import Scrollbar from '../../components/scrollbar/scrollbar'
import FaqSection from './FaqSection'
import fagImg1 from '/public/images/terms/terms2.jpg'
import fagImg2 from '/public/images/terms/1.jpg'
import fagImg3 from '/public/images/terms/2.jpg'
import Image from 'next/image'
const TermsPage = (props) => {
return (
<div>
<Navbar2 />
<PageTitle pageTitle={'Terms of Use'} pagesub={'Terms of Use'} />
<section className="wpo-terms-section section-padding">
<div className="container">
<div className="row">
<div className="col-lg-10 offset-lg-1">
<div className="wpo-terms-wrap">
<div className="wpo-terms-img">
<Image src={fagImg1} alt=""/>
</div>
<div className="wpo-terms-text">
<h2>Reasons for Using Website Terms of Use</h2>
<p>When you are planning to create a website, its very easy to overlook creating and
adding a website Terms of Use template. This is because when you are
browsing through sites, you may not look at this part unless you really have to
and even then, you might not actually read all the content! However, its very
important to have the terms page on your website, for a number of reasons. Once
youve learned all about these reasons, you may realize that adding this part to
your website is really essential.</p>
<p>Even a short Terms of Use agreement should include several key clauses to
safeguard your business. For example, if youre selling online and incorrectly price
an item, your Terms of Use are what will enable you to cancel the order.</p>
<ul>
<li>Acceptable use of your website and all of its content.</li>
<li>Rules on uploading any content in your website.</li>
<li>Any and all websites which are linked to your own.</li>
<li>The availability of your website.</li>
<li>Returns and Guarantees for Customers</li>
</ul>
<p>If any estimates of how long it will take the cleaning operatives to complete the job
are being provided those are only estimates based on the average time it takes to
clean a home or an office of similar size to the Clients, it being difficult to
calculate precisely how long such tasks may take and that a degree of flexibility
may be required. Please note that one off cleans may take longer to complete due to
longer intervals between cleaning sessions, number and type of cleaning tasks
required, when compared to the regular maintenance cleaning of the same property.
</p>
<div className="row t-sub">
<div className="col-md-6 col-sm-6 col-12">
<div className="pf-p-details-img">
<Image src={fagImg2} alt=""/>
</div>
</div>
<div className="col-md-6 col-sm-6 col-12">
<div className="pf-p-details-img">
<Image src={fagImg3} alt=""/>
</div>
</div>
</div>
<p>Post Construction Cleaning (Builders Cleaning), Event Cleaning or badly neglected
homes may take up to three times longer than a well maintained home requiring
general cleaning. Therefore the Company advises the Client to ask f or our
specialist cleaning services: Builders Cleaning or Event Cleaning.</p>
</div>
<div className="pf-faq-section">
<h4>Frequently Ask Questions</h4>
<div className="row">
<div className="col-lg-12 col-md-12 col-12">
<FaqSection/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<Footer />
<Scrollbar />
</div>
)
}
export default TermsPage;