hds-web 1.42.0 → 1.42.1
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/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Headers/v3Header.js +21 -0
package/package.json
CHANGED
@@ -690,6 +690,27 @@ export default function V3Header(props) {
|
|
690
690
|
/>
|
691
691
|
</div>
|
692
692
|
</a>
|
693
|
+
<a href="https://hasura.io/pricing">
|
694
|
+
<div
|
695
|
+
key={`Contact`}
|
696
|
+
className="flex justify-between items-center p-4 cursor-pointer group"
|
697
|
+
>
|
698
|
+
<div className="flex items-center justify-center gap-2">
|
699
|
+
{/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
|
700
|
+
<Typography
|
701
|
+
textStyle="body3c-medium"
|
702
|
+
className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
|
703
|
+
>
|
704
|
+
Pricing
|
705
|
+
</Typography>
|
706
|
+
</div>
|
707
|
+
<Icon
|
708
|
+
height="h-5 w-5 stroke-[1.5px] group-hover:translate-x-1 ease-in-out transition duration-300"
|
709
|
+
variant="chevronright"
|
710
|
+
strokeClass="stroke-neutral-500"
|
711
|
+
/>
|
712
|
+
</div>
|
713
|
+
</a>
|
693
714
|
<a href="https://hasura.io/contact-us">
|
694
715
|
<div
|
695
716
|
key={`Contact`}
|