hds-web 1.39.7 → 1.39.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -217,6 +217,48 @@ export default function V3Header(props) {
|
|
217
217
|
</Typography>
|
218
218
|
</a>
|
219
219
|
}
|
220
|
+
{/* SEO */}
|
221
|
+
<div className="hidden">
|
222
|
+
<a href="https://hasura.io/products">What is Hasura?</a>
|
223
|
+
<a href="https://hasura.io/pricing">Compare Plans</a>
|
224
|
+
<a href="https://console.hasura.io/">Get started</a>
|
225
|
+
{/* Connectors */}
|
226
|
+
<p>Connectors</p>
|
227
|
+
<a href="https://hasura.io/graphql/database/postgresql">PostgreSQL</a>
|
228
|
+
<a href="https://hasura.io/graphql/database/mysql">MySQL</a>
|
229
|
+
<a href="https://hasura.io/graphql/database/elasticsearch">
|
230
|
+
Elasticsearch
|
231
|
+
</a>
|
232
|
+
<a href="https://hasura.io/graphql/database/sql-server">SQL Server</a>
|
233
|
+
<a href="https://hasura.io/graphql/database/mongodb">MongoDB</a>
|
234
|
+
<a href="https://hasura.io/graphql/database/snowflake">Snowflake</a>
|
235
|
+
<a href="https://hasura.io/graphql/database/clickhouse">Clickhouse</a>
|
236
|
+
<a href="https://hasura.io/graphql/database">More</a>
|
237
|
+
{/* Developer */}
|
238
|
+
<p>Developer</p>
|
239
|
+
<a href="https://hasura.io/docs/3.0/index/">Documentation</a>
|
240
|
+
<a href="https://hasura.io/connectors">Connector Hub</a>
|
241
|
+
<a href="https://hasura.io/learn/">Tutorials</a>
|
242
|
+
<a href="https://hasura.io/community">Community</a>
|
243
|
+
<a href="https://discord.com/invite/hasura">Discord</a>
|
244
|
+
<a href="https://github.com/hasura/graphql-engine/discussions">
|
245
|
+
Discussions
|
246
|
+
</a>
|
247
|
+
<a href="https://www.meetup.com/pro/hasura/">Meetups</a>
|
248
|
+
<a href="https://hasura.io/events/community-call/latest">
|
249
|
+
Hasura Community Call
|
250
|
+
</a>
|
251
|
+
{/* Resources */}
|
252
|
+
<p>Resources</p>
|
253
|
+
<a href="https://hasura.io/blog">Blogs</a>
|
254
|
+
<a href="https://hasura.io/events?category=Webinar#wall-section">
|
255
|
+
Webinars
|
256
|
+
</a>
|
257
|
+
<a href="https://hasura.io/graphql/">Graphql Hub</a>
|
258
|
+
<a href="https://hasura.io/events">Events</a>
|
259
|
+
<a href="https://hasura.io/resources">Whitepapers</a>
|
260
|
+
<a href="https://supergraph.io/">Supergraph Manifesto</a>
|
261
|
+
</div>
|
220
262
|
</>
|
221
263
|
);
|
222
264
|
|
@@ -364,7 +406,7 @@ export default function V3Header(props) {
|
|
364
406
|
<img
|
365
407
|
className="min-w-[103px] w-[103px] h-[33px]"
|
366
408
|
src={logoUrl}
|
367
|
-
alt=
|
409
|
+
alt="Hasura Logo"
|
368
410
|
/>
|
369
411
|
</a>
|
370
412
|
</div>
|
@@ -177,13 +177,10 @@ export default function AboutSection(props) {
|
|
177
177
|
<Typography textStyle="h6" className="text-neutral-500 uppercase">
|
178
178
|
{props.creator ?? "Creator"}
|
179
179
|
</Typography>
|
180
|
-
{props.
|
181
|
-
<a
|
182
|
-
href={props.hasuraIncUrl}
|
183
|
-
className="flex gap-2 items-center pt-4"
|
184
|
-
>
|
180
|
+
{props.authorURL && props?.authorName && (
|
181
|
+
<a href={props.authorURL} className="flex gap-2 items-center pt-4">
|
185
182
|
<Typography textStyle="body1-medium" className="text-blue-600">
|
186
|
-
{props.
|
183
|
+
{props.authorName}
|
187
184
|
</Typography>
|
188
185
|
<Icon
|
189
186
|
height={"h-5 w-5 stroke-[1.5px]"}
|
@@ -192,12 +189,12 @@ export default function AboutSection(props) {
|
|
192
189
|
/>
|
193
190
|
</a>
|
194
191
|
)}
|
195
|
-
{props.
|
192
|
+
{props.authorEmail && (
|
196
193
|
<Typography
|
197
194
|
textStyle="body1-medium"
|
198
195
|
className="text-neutral-500 pt-2"
|
199
196
|
>
|
200
|
-
{props.
|
197
|
+
{props.authorEmail}
|
201
198
|
</Typography>
|
202
199
|
)}
|
203
200
|
</div>
|