@@ -52,6 +52,17 @@ module.exports = {
52
52
"API testing, Keploy docs, incident replay, network calls, code paths, test scenarios, code coverage, stubs, junit, go-test, live environment, production incidents, open source, regression tests, ai tests" ,
53
53
} ,
54
54
{ name : "twitter:card" , content : "summary_large_image" } ,
55
+ { name : "robots" , content : "index, follow" } ,
56
+ { name : "author" , content : "Keploy Team" } ,
57
+ { property : "og:type" , content : "website" } ,
58
+ { property : "og:site_name" , content : "Keploy" } ,
59
+ { name : "twitter:site" , content : "@keployio" } ,
60
+ { name : "twitter:creator" , content : "@keployio" } ,
61
+ { name : "viewport" , content : "width=device-width, initial-scale=1.0" } ,
62
+ { name : "referrer" , content : "no-referrer-when-downgrade" } ,
63
+ { name : "HandheldFriendly" , content : "True" } ,
64
+ { name : "mobile-web-app-capable" , content : "yes" } ,
65
+ { name : "theme-color" , content : "#ffffff" } ,
55
66
] ,
56
67
headTags : [
57
68
// Preconnect tag
@@ -62,6 +73,52 @@ module.exports = {
62
73
href : "https://keploy.io/" ,
63
74
} ,
64
75
} ,
76
+ {
77
+ tagName : "link" ,
78
+ attributes : {
79
+ rel : "preconnect" ,
80
+ href : "https://www.google-analytics.com" ,
81
+ } ,
82
+ } ,
83
+ {
84
+ tagName : "link" ,
85
+ attributes : {
86
+ rel : "preconnect" ,
87
+ href : "https://www.googletagmanager.com" ,
88
+ } ,
89
+ } ,
90
+ {
91
+ tagName : "meta" ,
92
+ attributes : {
93
+ name : "msapplication-config" ,
94
+ content : "/docs/browserconfig.xml" ,
95
+ } ,
96
+ } ,
97
+ {
98
+ tagName : "script" ,
99
+ attributes : {
100
+ type : "application/ld+json" ,
101
+ } ,
102
+ innerHTML : JSON . stringify ( {
103
+ "@context" : "https://schema.org/" ,
104
+ "@type" : "Organization" ,
105
+ name : "Keploy" ,
106
+ url : "https://keploy.io" ,
107
+ logo : "https://keploy.io/docs/img/favicon.png" ,
108
+ description : "Open source tool that generates Regression Tests like unit tests with mocks and stubs from API calls." ,
109
+ sameAs : [
110
+ "https://github.com/keploy/keploy" ,
111
+ "https://twitter.com/keployio" ,
112
+ "https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg" ,
113
+ "https://join.slack.com/t/keploy/shared_invite/zt-357qqm9b5-PbZRVu3Yt2rJIa6ofrwWNg"
114
+ ] ,
115
+ contactPoint : {
116
+ "@type" : "ContactPoint" ,
117
+ contactType : "customer service" ,
118
+ url : "https://keploy.io"
119
+ }
120
+ } ) ,
121
+ } ,
65
122
{
66
123
tagName : "script" ,
67
124
attributes : {
0 commit comments