'use client' import { ReactElement } from 'react' import { SectionContainer } from '../containers/section-container' import { Link } from '../typo/link' import { Header3, Header4 } from '@app/components/general/header' import { GrCloudComputer, GrCloudSoftware, GrDesktop, GrTestDesktop, } from 'react-icons/gr' const infoDetails = [ { title: 'Cloud', href: '/cloud', subTitle: 'The most efficient, accurate, and dedicated accessibility engine.', Icon: GrCloudSoftware, }, { title: 'Web App', href: '/why-use', subTitle: `Direct access and free to all on the internet. Login now to get started.`, Icon: GrCloudComputer, }, { title: 'VSCode Extension', href: '/vscode-extension', subTitle: 'IDE integration for automation at the watch and reload level made simple.', Icon: GrTestDesktop, }, { title: 'Native Desktop App', href: '/desktop', subTitle: 'The cross-platform native desktop app brings the focus on access.', Icon: GrDesktop, }, ] export function MarketingProducts(): ReactElement | null { return (
Access made for every step

Pick the tool that works for you. Our core system is actively developed as the building blocks for any integration.

    {infoDetails.map(({ title, href, subTitle, Icon }, i: number) => { return (
  • {title}
    {subTitle}
    {title}
  • ) })}
) }