Skip to content

Commit 65133a8

Browse files
committed
SEO updates - Meta description and noindex, nofollow issues fixed
1 parent 86cb19d commit 65133a8

23 files changed

Lines changed: 49 additions & 13 deletions

gatsby-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ exports.createPages = async ({ graphql, actions }) => {
4444
}
4545
frontmatter {
4646
title
47-
meta_desc
47+
metadesc
4848
canonical
4949
keywords
5050
social_share_summary

src/components/SubNav.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SubNav extends React.Component {
6363
<button className="bg-gray-200 bg-transparent duration-150 ease-linear flex focus:outline-none h-1/2 ml-6 my-2 outline-none px-4 py-2 rounded-3xl text-xs transition-all">
6464
<svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg" className="mr-1.5">
6565
<path d="M6.51473 3.47C6.53903 2.80854 6.72484 2.22768 7.06773 1.74225C7.41239 1.25416 7.98198 0.907421 8.76199 0.710938C8.76703 0.734646 8.77266 0.758947 8.77829 0.782952V0.908606C8.77829 1.1934 8.70894 1.52028 8.57262 1.87946C8.42977 2.22768 8.20632 2.55515 7.90938 2.85062C7.63199 3.11112 7.37534 3.2833 7.14834 3.36124C7.07336 3.38376 6.97052 3.40569 6.84665 3.42555C6.73634 3.44273 6.62567 3.45755 6.51473 3.47V3.47Z" fill="#858585"/>
66-
<path d="M6.64457 4.45125C5.7638 4.45125 5.15213 3.67214 4.28321 3.67214C3.4143 3.67214 1.62402 4.47081 1.62402 7.2284C1.62402 9.98598 3.21367 11.7626 3.39148 11.9701C3.5693 12.1775 3.98064 12.711 4.6175 12.711C5.25467 12.711 5.95229 12.2042 6.64457 12.2042C7.33745 12.2042 8.20932 12.711 8.77832 12.711C9.34733 12.711 9.58145 12.4789 9.96878 12.0785C10.3561 11.6785 11.0949 10.4575 11.3528 9.7243C10.9278 9.47151 9.80164 8.78485 9.80164 7.2284C9.80164 6.19115 10.1807 5.32906 10.939 4.6427C10.4415 3.99576 9.86446 3.67214 9.20804 3.67214C8.22296 3.67214 7.52534 4.45125 6.64457 4.45125Z" stroke="#858585" stroke-width="1.4" stroke-linejoin="round"/>
66+
<path d="M6.64457 4.45125C5.7638 4.45125 5.15213 3.67214 4.28321 3.67214C3.4143 3.67214 1.62402 4.47081 1.62402 7.2284C1.62402 9.98598 3.21367 11.7626 3.39148 11.9701C3.5693 12.1775 3.98064 12.711 4.6175 12.711C5.25467 12.711 5.95229 12.2042 6.64457 12.2042C7.33745 12.2042 8.20932 12.711 8.77832 12.711C9.34733 12.711 9.58145 12.4789 9.96878 12.0785C10.3561 11.6785 11.0949 10.4575 11.3528 9.7243C10.9278 9.47151 9.80164 8.78485 9.80164 7.2284C9.80164 6.19115 10.1807 5.32906 10.939 4.6427C10.4415 3.99576 9.86446 3.67214 9.20804 3.67214C8.22296 3.67214 7.52534 4.45125 6.64457 4.45125Z" stroke="#858585" strokeWidth="1.4" stroke-linejoin="round"/>
6767
</svg>
6868
iOS
6969
</button>

src/components/seo.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function SEO({ lang,
1616
title,
1717
slug,
1818
canonical,
19-
meta_desc,
19+
metadesc,
2020
keywords,
2121
social_share_summary,
2222
social_share_desc,
@@ -49,7 +49,7 @@ function SEO({ lang,
4949
meta={[
5050
{
5151
name: 'description',
52-
content: meta_desc
52+
content: metadesc
5353
},
5454
{
5555
name: 'keywords',
@@ -81,7 +81,7 @@ function SEO({ lang,
8181
},
8282
{
8383
property: 'og:site_name',
84-
content: 'Testsigma Docs',
84+
content: 'Testsigma Tutorials',
8585
},
8686
{
8787
name: 'twitter:creator',
@@ -157,7 +157,7 @@ SEO.propTypes = {
157157
meta: PropTypes.arrayOf(PropTypes.object),
158158
title: PropTypes.string.isRequired,
159159
canonical: PropTypes.string,
160-
meta_desc: PropTypes.string,
160+
metadesc: PropTypes.string,
161161
keywords: PropTypes.string,
162162
social_share_summary: PropTypes.string,
163163
social_share_desc: PropTypes.string,

src/pages/tutorials/addons/how-create-addons-actions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "How to create addon for actions"
3+
metadesc: "End to end tutorial on how to create an add-on for automation action"
4+
noindex: false
35
order: 6.1
46
page_id: "How to create addon for actions"
57
search_keyword: "Addons, Testsigma Tutorials"

src/pages/tutorials/addons/how-create-addons-conditional-if.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "How to add condition if actions"
3+
metadesc: "End to end tutorial on how to create an add-on for Conditional If action"
4+
noindex: false
35
order: 6.3
46
page_id: "How to add condition if actions"
57
search_keyword: "Addons, Conditional if, Testsigma Tutorials"

src/pages/tutorials/addons/how-create-addons-test-data-generators.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "Create Test data generators in Addons"
3+
metadesc: ""
4+
noindex: false
35
order: 6.2
46
page_id: "Create Test data generators in Addons"
57
search_keyword: "Addons, Data Generators, Testsigma Tutorials"

src/pages/tutorials/addons/how-create-addons-while-loops.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "How to add While actions "
3+
metadesc: "End to end tutorial on how to create an add-on for WHILE conditional action"
4+
noindex: false
35
order: 6.4
46
page_id: "How to add While actions "
57
search_keyword: "Addons, While Actions, Testsigma Tutorials"

src/pages/tutorials/advanced/sms-based-two-factor-authentication-2fa.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "How to automate SMS based Two Factor Authentication(2FA)"
3+
metadesc: "Coming soon..."
4+
noindex: true
35
order: 5.2
46
page_id: "How to automate SMS based Two Factor Authentication(2FA)"
57
search_keyword: "Web Application, Recorder, Testsigma Tutorials"

src/pages/tutorials/agent/how-to-setup-agents-to-run-tests-on-local-mobile-devices.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "How to setup Agents to run tests in android local devices"
3+
metadesc: ""
4+
noindex: false
35
order: 5.1
46
page_id: "How to setup Agents to run tests in android local devices"
57
search_keyword: "Agent, Agent Setup, Testsigma Tutorials"

src/pages/tutorials/getting-started/automate-android-applications.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: "Get Started with Automating Android Apps"
3+
metadesc: "A quick Tutorial to help you with your first steps to testing an android app using Testsigma"
4+
noindex: false
35
order: 1.3
46
page_id: "Get Started with Automating Android Apps"
57
warning: false

0 commit comments

Comments
 (0)