import { Box } from '@a11ywatch/ui' import { MarketingDrawer, PageTitle, Link } from '@app/components/general' import { strings } from '@app-strings' import { metaSetter } from '@app/utils' import type { CSSProperties } from 'react' import type { PageProps } from '@app/types' import { SectionContainer } from '@app/components/stateless/containers/section-container' import { Header2, Header3 } from '@app/components/general/header' import { PricingCalculator } from '@app/components/general/pricing-calculator' const center = { display: 'flex', justifyContent: 'center', alignItems: 'center', flexDirection: 'column', } as CSSProperties const circleStyle = Object.assign( {}, { height: '25vh', width: '25vh', borderRadius: '12.5vh', }, center ) function Contact({ name }: PageProps) { return ( Lets have a Talk

As a consultancy, {strings.appName} offers a lot more than just a nice AI tool to help mitigate accessibility errors, our team of engineers work seamless with your engineers and designers. We provide project leadership and technical expertise. We won’t just be an extra set of {`hands—we’ll`} help guide your strategy, provide best practices to ensure a maintainable and sustainable product, and help your team boost up along the way. {`Let's`} get started.

Questions about our service?

If you have any questions at all feel free to send us an email via the following:

Drop us an email

or

Call Us
Interested in Accessibility Services?

If you need help with auditing a page or website we can get this done across any tech stack.

If you want to learn more about some of our past positions.

Careers
) } export default metaSetter( { Contact }, { title: `${strings.appName}: Get in touch with us`, description: `Contact us here at ${strings.appName} with any questions you may have. Get the support you need to help your web accessibility efforts.`, } )