Files
ax3Client/src/Components/Accessibility.js
Kenneth Jannette 4c1fb67383 first commit
2024-01-11 18:24:41 -06:00

33 lines
1.1 KiB
JavaScript

import { useNavigate } from "react-router-dom";
const Accessibility = () => {
const navigate = useNavigate();
return (
<>
<div className="tos-container">
<h1>Accessibility</h1>
<p className="tos-para">
Novodraft is committed to designing products and services to pursuant
to the requirements of Section 508 of the Rehabilitation Act of 1973
(Electronic and Information Technology Accessibility Standards, 36
C.F.R. § 1194), and other applicable accessibility standards, to the
maximum degree practicable.
</p>
<p className="tos-para">
NovoDraft strives to develop and provide legal artificial intelligence
information technology products and services that are accessible and
usable by all people, including those with disabilities and special
needs.
</p>
<p className="tos-para">
To that end, if you find any of our products or services could better
meet your special needs, please do not hesitate to contact us.
</p>
</div>
</>
);
};
export default Accessibility;