hds-web 1.40.4 → 1.40.6
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">
|
@@ -364,9 +364,9 @@ export default function V3Header(props) {
|
|
364
364
|
if (title === "Pricing") {
|
365
365
|
window.location.href = "/pricing";
|
366
366
|
}
|
367
|
-
if (title === "Enterprise") {
|
368
|
-
|
369
|
-
}
|
367
|
+
// if (title === "Enterprise") {
|
368
|
+
// window.location.href = "/enterprise";
|
369
|
+
// }
|
370
370
|
if (title === "Product") {
|
371
371
|
setIsProduct(true);
|
372
372
|
}
|
@@ -464,7 +464,6 @@ export default function V3Header(props) {
|
|
464
464
|
? "text-neutral-0 hover:text-blue-400"
|
465
465
|
: "text-neutral-800 hover:text-blue-600"
|
466
466
|
}
|
467
|
-
data-testid={`${props?.website_key}-contact-us`}
|
468
467
|
>
|
469
468
|
Contact Us
|
470
469
|
</Typography>
|
@@ -482,7 +481,6 @@ export default function V3Header(props) {
|
|
482
481
|
rightAnimatedArrowColor="#3970FD"
|
483
482
|
animatedHoverStroke="group-hover:stroke-neutral-0"
|
484
483
|
className="hds-hidden tb-l:flex"
|
485
|
-
data-testid={`${props?.website_key}-log-in`}
|
486
484
|
/>
|
487
485
|
</a>
|
488
486
|
)}
|
@@ -498,7 +496,6 @@ export default function V3Header(props) {
|
|
498
496
|
rightAnimatedArrowColor="#ffffff"
|
499
497
|
animatedHoverStroke="group-hover:stroke-neutral-0"
|
500
498
|
className="hds-hidden tb:flex"
|
501
|
-
data-testid={`${props?.website_key}-get-started`}
|
502
499
|
/>
|
503
500
|
</a>
|
504
501
|
</div>
|
@@ -615,13 +612,13 @@ export default function V3Header(props) {
|
|
615
612
|
/>
|
616
613
|
</div>
|
617
614
|
))}
|
618
|
-
<a href="https://hasura.io/enterprise">
|
615
|
+
{/* <a href="https://hasura.io/enterprise">
|
619
616
|
<div
|
620
617
|
key={`Contact`}
|
621
618
|
className="flex justify-between items-center p-4 cursor-pointer group"
|
622
619
|
>
|
623
620
|
<div className="flex items-center justify-center gap-2">
|
624
|
-
|
621
|
+
<Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" />
|
625
622
|
<Typography
|
626
623
|
textStyle="body3c-medium"
|
627
624
|
className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
|
@@ -635,7 +632,7 @@ export default function V3Header(props) {
|
|
635
632
|
strokeClass="stroke-neutral-500"
|
636
633
|
/>
|
637
634
|
</div>
|
638
|
-
</a>
|
635
|
+
</a> */}
|
639
636
|
<a href="https://hasura.io/customers">
|
640
637
|
<div
|
641
638
|
key={`Contact`}
|