hds-web 1.42.3 → 1.42.4
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
@@ -221,10 +221,10 @@ V3Footer.defaultProps = {
|
|
221
221
|
linkText: "Connectors",
|
222
222
|
linkUrl: "https://hasura.io/connectors",
|
223
223
|
},
|
224
|
-
{
|
225
|
-
|
226
|
-
|
227
|
-
},
|
224
|
+
// {
|
225
|
+
// linkText: "Pricing",
|
226
|
+
// linkUrl: "https://hasura.io/pricing",
|
227
|
+
// },
|
228
228
|
{
|
229
229
|
linkText: "Security",
|
230
230
|
linkUrl: "https://hasura.io/security/",
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import
|
1
|
+
import { useState, useEffect } from "react";
|
2
2
|
import { motion, AnimatePresence } from "framer-motion";
|
3
3
|
|
4
4
|
import { Icon } from "../common-components/Icon";
|
@@ -6,7 +6,7 @@ import { Typography } from "../../foundation/Typography";
|
|
6
6
|
import { HDSButton } from "../Buttons";
|
7
7
|
import { V3Dropdown } from "../Cards/Dropdown";
|
8
8
|
import { HDSColor } from "../../foundation/ColorPalette";
|
9
|
-
import { AlgoliaSearch } from "../../helpers/AlgoliaSearch";
|
9
|
+
// import { AlgoliaSearch } from "../../helpers/AlgoliaSearch";
|
10
10
|
|
11
11
|
function classNames(...classes) {
|
12
12
|
return classes.filter(Boolean).join(" ");
|
@@ -239,7 +239,7 @@ export default function V3Header(props) {
|
|
239
239
|
</Typography>
|
240
240
|
</a>
|
241
241
|
}
|
242
|
-
{
|
242
|
+
{/* {
|
243
243
|
<a href="/pricing">
|
244
244
|
<Typography
|
245
245
|
className={
|
@@ -252,11 +252,11 @@ export default function V3Header(props) {
|
|
252
252
|
{`Pricing `}
|
253
253
|
</Typography>
|
254
254
|
</a>
|
255
|
-
}
|
255
|
+
} */}
|
256
256
|
{/* SEO */}
|
257
257
|
<div className="hidden">
|
258
258
|
<a href="https://hasura.io/products">What is Hasura?</a>
|
259
|
-
<a href="https://hasura.io/pricing">Compare Plans</a>
|
259
|
+
{/* <a href="https://hasura.io/pricing">Compare Plans</a> */}
|
260
260
|
<a href="https://console.hasura.io/">Get started</a>
|
261
261
|
{/* Connectors */}
|
262
262
|
<p>Connectors</p>
|
@@ -397,9 +397,9 @@ export default function V3Header(props) {
|
|
397
397
|
if (title === "Customers") {
|
398
398
|
window.location.href = "/customers";
|
399
399
|
}
|
400
|
-
if (title === "Pricing") {
|
401
|
-
|
402
|
-
}
|
400
|
+
// if (title === "Pricing") {
|
401
|
+
// window.location.href = "/pricing";
|
402
|
+
// }
|
403
403
|
// if (title === "Enterprise") {
|
404
404
|
// window.location.href = "/enterprise";
|
405
405
|
// }
|
@@ -690,13 +690,12 @@ export default function V3Header(props) {
|
|
690
690
|
/>
|
691
691
|
</div>
|
692
692
|
</a>
|
693
|
-
<a href="https://hasura.io/pricing">
|
693
|
+
{/* <a href="https://hasura.io/pricing">
|
694
694
|
<div
|
695
695
|
key={`Contact`}
|
696
696
|
className="flex justify-between items-center p-4 cursor-pointer group"
|
697
697
|
>
|
698
698
|
<div className="flex items-center justify-center gap-2">
|
699
|
-
{/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
|
700
699
|
<Typography
|
701
700
|
textStyle="body3c-medium"
|
702
701
|
className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
|
@@ -710,7 +709,7 @@ export default function V3Header(props) {
|
|
710
709
|
strokeClass="stroke-neutral-500"
|
711
710
|
/>
|
712
711
|
</div>
|
713
|
-
</a>
|
712
|
+
</a> */}
|
714
713
|
<a href="https://hasura.io/contact-us">
|
715
714
|
<div
|
716
715
|
key={`Contact`}
|
@@ -812,15 +811,15 @@ V3Header.defaultProps = {
|
|
812
811
|
primaryBtnCTA: "/products",
|
813
812
|
strokeClass: "stroke-blue-500",
|
814
813
|
|
814
|
+
// secondaryBtn: [
|
815
|
+
// {
|
816
|
+
// cta_leftVariantIcon: "checksquarebroken",
|
817
|
+
// cta_leftVariantIconColor: "#6C737F",
|
818
|
+
// cta_text: "Compare Plans",
|
819
|
+
// cta_link: "/pricing",
|
820
|
+
// },
|
821
|
+
// ],
|
815
822
|
secondaryBtn: [
|
816
|
-
{
|
817
|
-
cta_leftVariantIcon: "checksquarebroken",
|
818
|
-
cta_leftVariantIconColor: "#6C737F",
|
819
|
-
cta_text: "Compare Plans",
|
820
|
-
cta_link: "/pricing",
|
821
|
-
},
|
822
|
-
],
|
823
|
-
tertiaryBtn: [
|
824
823
|
{
|
825
824
|
cta_leftVariantIcon: "zap",
|
826
825
|
cta_leftVariantIconColor: "#6C737F",
|
package/src/styles/tailwind.css
CHANGED
@@ -12119,12 +12119,12 @@ select{
|
|
12119
12119
|
width: 100%;
|
12120
12120
|
}
|
12121
12121
|
|
12122
|
-
.tb-l\:min-w-\[
|
12123
|
-
min-width:
|
12122
|
+
.tb-l\:min-w-\[250px\]{
|
12123
|
+
min-width: 250px;
|
12124
12124
|
}
|
12125
12125
|
|
12126
|
-
.tb-l\:min-w-\[
|
12127
|
-
min-width:
|
12126
|
+
.tb-l\:min-w-\[400px\]{
|
12127
|
+
min-width: 400px;
|
12128
12128
|
}
|
12129
12129
|
|
12130
12130
|
.tb-l\:min-w-\[550px\]{
|
@@ -12135,14 +12135,6 @@ select{
|
|
12135
12135
|
min-width: 700px;
|
12136
12136
|
}
|
12137
12137
|
|
12138
|
-
.tb-l\:min-w-\[305px\]{
|
12139
|
-
min-width: 305px;
|
12140
|
-
}
|
12141
|
-
|
12142
|
-
.tb-l\:min-w-\[250px\]{
|
12143
|
-
min-width: 250px;
|
12144
|
-
}
|
12145
|
-
|
12146
12138
|
.tb-l\:max-w-7xl{
|
12147
12139
|
max-width: 80rem;
|
12148
12140
|
}
|