UNPKG

focalxaiinspection

Version:

Focalx AI Inspection

26 lines (23 loc) 1.31 kB
/* eslint-disable no-script-url */ /* eslint-disable jsx-a11y/anchor-is-valid */ import React from 'react'; import './TermsOfUsePage.scss'; import {Heading} from '../../Components/Heading'; const TermsOfUsePage = () => ( <> <main> <Heading title="Terms of Use" /> <div className="terms-section"> <div className="container"> <div className="custom-card"> <div className="card-contet-wrap"> <p>We understand that writing your own Privacy Policy can seem like a daunting task. Therefore, to help you put one together without snatching your competitor's or cherry-picking bits and pieces here and there, you can use a template. Templates can provide structure and inspiration, which is a great starting point.</p> <p>Alternatively, we recommend using our Privacy Policy Generator. It is a powerful tool that will ask all the right questions regarding your business and the types of information you collect. The tool will use your answers to create a professional Privacy Policy tailored to your requirements and needs.</p> </div> </div> </div> </div> </main> </> ); export default TermsOfUsePage;