94 lines
5.7 KiB
JavaScript
94 lines
5.7 KiB
JavaScript
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/terms.jpg'
|
||
import fagImg2 from '/public/images/terms/1.jpg'
|
||
import fagImg3 from '/public/images/terms/2.jpg'
|
||
import Image from 'next/image'
|
||
|
||
|
||
const PrivacyPage = (props) => {
|
||
|
||
return (
|
||
<div>
|
||
<Navbar2 />
|
||
<PageTitle pageTitle={'Privacy Policy'} pagesub={'Privacy Policy'} />
|
||
<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 Privacy Policy</h2>
|
||
<p>When you are planning to create a website, it’s very easy to overlook creating and
|
||
adding a website Privacy Policy 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, it’s very
|
||
important to have the terms page on your website, for a number of reasons. Once
|
||
you’ve learned all about these reasons, you may realize that adding this part to
|
||
your website is really essential.</p>
|
||
<p>Even a short Privacy Policy agreement should include several key clauses to
|
||
safeguard your business. For example, if you’re selling online and incorrectly price
|
||
an item, your Privacy Policy 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 Client’s, 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 PrivacyPage; |