import { Fragment } from 'react' import { MarketingDrawer } from '@app/components/general' import { TestView } from '@app/components/general/test-view' import { WithSwipeModal as SwipeableTemporaryDrawer } from '@app/components/adhoc' import type { PageProps } from '@app/types' import { metaSetter } from '@app/utils' import { companyName, DOMAIN_NAME, getAPIRoute } from '@app/configs' import { GetStaticProps } from 'next' import { HomeManager } from '@app/managers' // THIS page is handled by a redirect. function Test({ name, website }: PageProps) { return (

Test out A11yWatch

) } export const getStaticProps: GetStaticProps = async () => { const apiEndpoint = `${getAPIRoute('api', true)}/scan-simple` let data = null try { const res = await fetch(apiEndpoint, { method: 'POST', body: JSON.stringify({ websiteUrl: HomeManager.getTestFrameUrl, }), headers: { 'Content-Type': 'application/json', Referer: DOMAIN_NAME, }, }) const json = (await res.json()) ?? {} if (json) { data = json.data } } catch (e) { console.error(e) } return { props: { website: data, }, revalidate: 3600 * 24, // every 24 hours } } export default metaSetter( { Test }, { title: `${companyName}: Try web accessibility playground`, description: 'Free website accessibility testing sandbox. View your website live using the playground to fix issues with visualatizations, validate contrast, and much more.', gql: true, rest: true, } )