-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from CivicActions/melindaburgess-patch-1
Create 2021-07-08-gsa-engages-civicactions-to-modernize-vpat.js
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
src/pages/press/2021-07-08-gsa-engages-civicactions-to-modernize-vpat.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import '../../sass/styles.scss'; | ||
import React from 'react'; | ||
import RedLayout from '../../layouts/red'; | ||
import SEO from "../../components/seo"; | ||
import Hero from '../../components/hero.js'; | ||
import PrimaryPageCTA from "../../components/primary-page-cta"; | ||
|
||
const CMSVPAT = () => { | ||
|
||
return ( | ||
<RedLayout> | ||
<SEO | ||
title='GSA Engages CivicActions to Modernize VPAT to Improve Digital Accessibility' | ||
description='Press release from civicactions.com' | ||
/> | ||
<Hero | ||
title='GSA Engages CivicActions to Modernize VPAT to Improve Digital Accessibility' | ||
/> | ||
<div className='single--press-releases--main'> | ||
<div className='inner'> | ||
<span className='body'>Date: Thursday, July 8, 2021</span> | ||
<p className='body'>CivicActions is excited to announce a new contract with General Services Administration (GSA) to reimagine the Voluntary Product Accessibility Template® (VPAT®) into a modernized format to support better accessibility for digital products.</p> | ||
<p className='body'>The VPAT currently exists as a lengthy Word document that lists accessibility requirements for technology products, such as software and hardware. It’s often used by vendors during the proposal process to demonstrate the accessibility of their digital products — but the outdated format of the VPAT hinders its effectiveness.</p> | ||
<p className='body'>CivicActions will help the GSA convert its VPAT to a machine-readable format, called the Open Product Accessibility Template (OPAT). This will be an open standard used by vendors to produce compliance reports just as they do currently with VPAT — but with the improved template, the reports will be in structured digital files that are easier to validate and update.</p> | ||
<p className='body'>This work will result in:</p> | ||
<p className='body'><ul> | ||
<li>Better understanding of the accessibility of digital products</li> | ||
<li>Stronger consideration for accessibility in procurement processes</li> | ||
<li>Easier management of accessibility reporting by agency staff in accordance with best practices</li> | ||
</ul> | ||
</p> | ||
<p className='body'>GSA is setting a new standard for making digital accessibility a meaningful part of IT procurement. We are proud to be part of this work, which will lead to building government digital services that better serve people of all abilities.</p> | ||
<p className='body'>To learn more about how we’re advancing accessibility in government, visit our <a href='https://accessibility.civicactions.com/'>Accessibility Community of Practice</a>.</p> | ||
<p className='body'><strong>More on this topic</strong></p> | ||
<p className='body'><ul> | ||
<li><a href='https://gcn.com/articles/2021/02/04/accessibility-compliance-as-code.aspx'>The need for accessibility compliance as code</a></li> | ||
<li><a href='https://medium.com/civicactions/4-ways-to-improve-government-accessibility-through-open-source-8e20fabc7281'>How open source tools improve accessibility for government</a></li> | ||
<li><a href='https://medium.com/civicactions/whitehouse-gov-makes-an-accessibility-statement-5de37580209'>Accessibility initiatives from the White House</a></li> | ||
</ul> | ||
</p> | ||
</div> | ||
</div> | ||
<PrimaryPageCTA | ||
title='Inspired by newsworthy work?' | ||
subtitle='See what we can do together.' | ||
primaryButtonText='EXPLORE SERVICES' | ||
primaryButtonLink='/services' | ||
secondaryButtonText='CONTRACTING INFO' | ||
secondaryButtonLink='/contracting' | ||
/> | ||
</RedLayout> | ||
); | ||
}; | ||
|
||
|
||
|
||
export default CMSVPAT; |