'use client' import { ReactElement, useState } from 'react' import { SectionContainer } from '../containers/section-container' import { Link } from '../typo/link' import { Header3, Header4 } from '@app/components/general/header' import { GrPause, GrPlay } from 'react-icons/gr' import Image from 'next/image' import { companyName } from '@app/configs' const infoDetails = [ { title: 'Concurrent Website Testing', subTitle: `Get reports for thousands to millions of pages in seconds with real browsers for WCAG A-AAA, Section508, and beyond. Get spot on results with up to 63% of all web accessibility issues handled with recommendations and auto code fixes.`, }, { title: 'Lightning Fast', subTitle: 'Receive results with practically no downtime for your web pages across every workflow. The suite is small and powerful running on linux, macOS, and windows using native features for the cutting edge performance.', }, { title: 'Dynamic Testing', subTitle: 'Add custom actions to evaluate your website in one location. Handle real world edge cases autonomously for any website. Determine real test flows that would occur on pages with simple no-code form builders.', }, ] const previewStyles = { display: 'inline-block', height: '1.25rem', marginLeft: '0.18rem', transform: 'translateY(0.2rem)', backgroundColor: 'rgb(160, 160, 160)', } export function MarketingCli(): ReactElement | null { const [sampleVisible, setSample] = useState(false) const toggleSample = () => setSample((x) => !x) return (
Web Accessibility CLI

Perform audits with {companyName} on any machine with the Command Line Interface. Install the CLI in shell using{' '} npm i a11ywatch-cli -g .

{`${companyName} results.json' with the output 27/27 urls passing the report almost instantly.`} className={'h-auto w-auto rounded bg-inherit'} quality={70} />
~ npm i a11ywatch-cli -g
~ {' '} {`a11ywatch -s $TOKEN`}
~ {' '} a11ywatch crawl -e -d -u a11ywatch.com
    {infoDetails.map( (detail: { title: string; subTitle: string }, i: number) => { return (
  • {detail.title}
    {detail.subTitle}
  • ) } )}
View CLI Details
) }