import React, { Component } from 'react'; import './Footer.scss'; import SubscribeButton from '../components/SubscribeButton'; import FeedbackButtons from '../components/FeedbackButtons'; import { useLocation } from '@reach/router'; import tsLogo from '../components/images/testsigma-logo-v3-dark.svg'; const Footer = () => { const { pathname } = useLocation(); const pathRoute = pathname.slice(0, -1); return ( <> {/* */}

Learn how to execute low code tests across 3000+ device / browser environments.

Schedule a free demo
Testsigma

Want to contribute or report missing content?

edit this page on github{' '}

contributing guidelines{' '}

report an issue

{' '} Testsigma{' '} {' '} is open source.{' '} See license

{' '} www.testsigma.com{' '}

©2023 Copyright , Testsigma Technologies Inc

); }; export default Footer;