import { FC, PropsWithChildren } from 'react' import { MarketingDrawer, Section } from '@app/components/general' import { metaSetter } from '@app/utils' import type { PageProps } from '@app/types' import Image from 'next/image' import { FeaturesList } from '@app/components/stateless/marketing/features' import { SectionContainer } from '@app/components/stateless/containers/section-container' import { Header, Header2, Header3 } from '@app/components/general/header' import { companyName } from '@app/configs' const FeatureHeading: FC = ({ children }) => { return

{children}

} const { paper, row } = { paper: 'w-full p-3 border flex flex-grow md:flex-row md:w-1/2 place-items-between', row: 'flex flex-wrap md:flex-nowrap', } const paperStyle = 'flex place-content-center py-2 rounded' function Features({ name }: PageProps) { return (
{companyName} Platform Features

Learn about features that make {companyName} stand out between the rest.

Tools built for the job
Accurate and Fast Web Accessibility Audits Our web accessibility insight reporter and monitor scans for problems with recommended solutions that are tuned for any website using WCAG, Section508, and beyond. Get notified when new issues occur with detailed information on what happened on all pages. Control how often you need the reporter to run on based on your schedule. Include critical{' '} Web Vitals {' '} across all urls at once. Our service is capable of handling large websites with thousands - millions of pages, view the benchmarks .
{'Issue
Website Visual Playground View your website with elegant annotations of the issues on your page. Experiment with recommended fixes to validate changes before release in real-time. Verify how your website would respond to visual updates with tools that help validate contrast, alts, spacing, and more.
{'Amusement
API Integrations Get web accessibility results any-where at any time. We built many tools that can fit within your pipeline to help fine accessibility and web vitals. With uptime set to fit your flow take ideas to the next level. The most affordable price for accessibility auditing with portablity and efficiency.
{'Fix
) } export default metaSetter( { Features }, { description: `Main features that are on the platform and how it works using ${companyName}.`, } )