import { PropsWithChildren } from 'react' import { Link } from '../typo/link' import { SectionContainer } from '../containers/section-container' import { IntroGraph } from './intro-graph' import { IntroSvg } from '../../svgs/intro' import { Header } from '@app/components/general/header' interface MarketingIntro { checker?: boolean } function MarketingIntro({ checker, children, }: PropsWithChildren) { return (
{checker ? ( 'Open Source Web Accessibility Platform' ) : ( <>The web accessibility platform without limits )}
{checker ? (

Test your web accessibility and vitals fast. Learn how the issue happened and the steps needed to remedy the fix correctly.

) : (

A11yWatch provides powerful tools for testing web inclusivity correctly so you can build better software. Our system is constantly improving web accessibility test coverage, efficiency & speed, and other integrations that help productivity.

Gain confidence across every step with robust solutions like{' '} automated workflows, API access, and much more.

)}
Get Started
{children}
{checker ? : }
) } export { MarketingIntro }