hds-web 1.39.2 → 1.39.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.39.2",
3
+ "version": "1.39.3",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -174,6 +174,20 @@ export default function V3Header(props) {
174
174
  <>
175
175
  {renderDropdownContainer(headerList, 0)}
176
176
  {renderDropdownContainer(headerList, 1)}
177
+ {
178
+ <a href="/enterprise">
179
+ <Typography
180
+ className={
181
+ isDarkMode
182
+ ? "text-neutral-0 hover:text-blue-400 cursor-pointer"
183
+ : "hover:text-blue-600 cursor-pointer"
184
+ }
185
+ textStyle="body3c-medium"
186
+ >
187
+ {`Enterprise`}
188
+ </Typography>
189
+ </a>
190
+ }
177
191
  {renderDropdownContainer(headerList, 2)}
178
192
  {
179
193
  <a href="/customers">
@@ -308,6 +322,9 @@ export default function V3Header(props) {
308
322
  if (title === "Pricing") {
309
323
  window.location.href = "/pricing";
310
324
  }
325
+ if (title === "Enterprise") {
326
+ window.location.href = "/enterprise";
327
+ }
311
328
  if (title === "Product") {
312
329
  setIsProduct(true);
313
330
  }
@@ -553,6 +570,48 @@ export default function V3Header(props) {
553
570
  />
554
571
  </div>
555
572
  ))}
573
+ <a href="https://hasura.io/enterprise">
574
+ <div
575
+ key={`Contact`}
576
+ className="flex justify-between items-center p-4 cursor-pointer group"
577
+ >
578
+ <div className="flex items-center justify-center gap-2">
579
+ {/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
580
+ <Typography
581
+ textStyle="body3c-medium"
582
+ className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
583
+ >
584
+ Enterprise
585
+ </Typography>
586
+ </div>
587
+ <Icon
588
+ height="h-5 w-5 stroke-[1.5px] group-hover:translate-x-1 ease-in-out transition duration-300"
589
+ variant="chevronright"
590
+ strokeClass="stroke-neutral-500"
591
+ />
592
+ </div>
593
+ </a>
594
+ <a href="https://hasura.io/customers">
595
+ <div
596
+ key={`Contact`}
597
+ className="flex justify-between items-center p-4 cursor-pointer group"
598
+ >
599
+ <div className="flex items-center justify-center gap-2">
600
+ {/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
601
+ <Typography
602
+ textStyle="body3c-medium"
603
+ className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out"
604
+ >
605
+ Customers
606
+ </Typography>
607
+ </div>
608
+ <Icon
609
+ height="h-5 w-5 stroke-[1.5px] group-hover:translate-x-1 ease-in-out transition duration-300"
610
+ variant="chevronright"
611
+ strokeClass="stroke-neutral-500"
612
+ />
613
+ </div>
614
+ </a>
556
615
  <a href="https://hasura.io/contact-us">
557
616
  <div
558
617
  key={`Contact`}
@@ -788,7 +847,7 @@ V3Header.defaultProps = {
788
847
  ],
789
848
  flyoutD: {
790
849
  link: "https://hasura.io/events/community-call/latest",
791
- cardImg: `https://res.cloudinary.com/dh8fp23nd/image/upload/v1721210357/cc-blog-july_2_1_k8k22u.png`,
850
+ cardImg: `https://res.cloudinary.com/dh8fp23nd/image/upload/v1723398379/cc-blog-july_4_d9mzrf.png`,
792
851
  cardImgAlt: "Hasura Community Call",
793
852
  },
794
853
  },