hds-web 1.40.2 → 1.40.3
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
@@ -251,10 +251,10 @@ V3Footer.defaultProps = {
|
|
251
251
|
{
|
252
252
|
title: "Learn",
|
253
253
|
links: [
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
254
|
+
{
|
255
|
+
linkText: `Enterprise`,
|
256
|
+
linkUrl: "https://hasura.io/enterprise",
|
257
|
+
},
|
258
258
|
{
|
259
259
|
linkText: "Blog",
|
260
260
|
linkUrl: "https://hasura.io/blog",
|
@@ -174,7 +174,7 @@ export default function V3Header(props) {
|
|
174
174
|
<>
|
175
175
|
{renderDropdownContainer(headerList, 0)}
|
176
176
|
{renderDropdownContainer(headerList, 1)}
|
177
|
-
{
|
177
|
+
{
|
178
178
|
<a href="/enterprise">
|
179
179
|
<Typography
|
180
180
|
className={
|
@@ -187,7 +187,7 @@ export default function V3Header(props) {
|
|
187
187
|
{`Enterprise`}
|
188
188
|
</Typography>
|
189
189
|
</a>
|
190
|
-
}
|
190
|
+
}
|
191
191
|
{renderDropdownContainer(headerList, 2)}
|
192
192
|
{
|
193
193
|
<a href="/customers">
|
@@ -233,7 +233,7 @@ export default function V3Header(props) {
|
|
233
233
|
<a href="https://hasura.io/graphql/database/mongodb">MongoDB</a>
|
234
234
|
<a href="https://hasura.io/graphql/database/snowflake">Snowflake</a>
|
235
235
|
<a href="https://hasura.io/graphql/database/clickhouse">Clickhouse</a>
|
236
|
-
<a href="https://hasura.io/
|
236
|
+
<a href="https://hasura.io/connectors">More</a>
|
237
237
|
{/* Developer */}
|
238
238
|
<p>Developer</p>
|
239
239
|
<a href="https://hasura.io/docs/3.0/index/">Documentation</a>
|
@@ -364,9 +364,9 @@ export default function V3Header(props) {
|
|
364
364
|
if (title === "Pricing") {
|
365
365
|
window.location.href = "/pricing";
|
366
366
|
}
|
367
|
-
|
368
|
-
|
369
|
-
|
367
|
+
if (title === "Enterprise") {
|
368
|
+
window.location.href = "/enterprise";
|
369
|
+
}
|
370
370
|
if (title === "Product") {
|
371
371
|
setIsProduct(true);
|
372
372
|
}
|
@@ -612,13 +612,13 @@ export default function V3Header(props) {
|
|
612
612
|
/>
|
613
613
|
</div>
|
614
614
|
))}
|
615
|
-
|
615
|
+
<a href="https://hasura.io/enterprise">
|
616
616
|
<div
|
617
617
|
key={`Contact`}
|
618
618
|
className="flex justify-between items-center p-4 cursor-pointer group"
|
619
619
|
>
|
620
620
|
<div className="flex items-center justify-center gap-2">
|
621
|
-
<Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" />
|
621
|
+
{/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
|
622
622
|
<Typography
|
623
623
|
textStyle="body3c-medium"
|
624
624
|
className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
|
@@ -632,7 +632,7 @@ export default function V3Header(props) {
|
|
632
632
|
strokeClass="stroke-neutral-500"
|
633
633
|
/>
|
634
634
|
</div>
|
635
|
-
</a>
|
635
|
+
</a>
|
636
636
|
<a href="https://hasura.io/customers">
|
637
637
|
<div
|
638
638
|
key={`Contact`}
|
@@ -810,7 +810,7 @@ V3Header.defaultProps = {
|
|
810
810
|
},
|
811
811
|
{
|
812
812
|
description: "",
|
813
|
-
href: "/
|
813
|
+
href: "/connectors",
|
814
814
|
icon: "database01",
|
815
815
|
name: "More",
|
816
816
|
strokeClass: "stroke-blue-500",
|