-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathFooter.jsx
More file actions
93 lines (91 loc) · 2.85 KB
/
Footer.jsx
File metadata and controls
93 lines (91 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
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 (
<>
<FeedbackButtons />
{/* <SubscribeButton /> */}
<div className='footer-cta rounded'>
<div className='flex items-center justify-between flex-wrap'>
<h3 className='cta-heading m-0'>
Learn how to execute low code tests across 3000+ device / browser
environments.
</h3>
<a
href='/request-demo'
target={'_blank'}
className='cta-link border border-primary_teal_green px-4 py-1.5 base-teal-gradient text-white rounded h-10'
>
Schedule a free demo
</a>
</div>
</div>
<div className='footer_greyBox'>
<img src={tsLogo} alt='Testsigma' />
<p>Want to contribute or report missing content?</p>
<div className='p_flex'>
<p className='right_border'>
<a
href={`https://github.com/testsigmahq/testsigma-tutorials/blob/dev/src/pages${pathRoute}.md`}
target='_blank'
>
edit this page on github{' '}
</a>
</p>
<p className='right_border'>
<a
href='https://github.com/testsigmahq/testsigma-tutorials/blob/dev/CONTRIBUTING.md'
target='_blank'
>
contributing guidelines{' '}
</a>
</p>
<p>
<a
href='https://github.com/testsigmahq/testsigma-tutorials/issues/new/choose'
target='_blank'
>
report an issue
</a>
</p>
</div>
<p className='p_0'>
<a href='https://github.com/testsigmahq/testsigma' target='_blank'>
{' '}
Testsigma{' '}
</a>{' '}
is open source.{' '}
<a
href='https://github.com/testsigmahq/testsigma/blob/main/LICENSE'
className='link_underline'
target='_blank'
>
See license
</a>
</p>
</div>
<div className='footer_text'>
<div className='flex_item'>
<p>
<a href='https://testsigma.com/' target='_blank'>
{' '}
www.testsigma.com{' '}
</a>
</p>
</div>
<div className='flex_item'>
<p className='text_end'>
©2023 Copyright , Testsigma Technologies Inc
</p>
</div>
</div>
</>
);
};
export default Footer;