docthub-core-components 3.2.5 → 3.2.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.
@@ -14,6 +14,7 @@ const t = {
14
14
  instituteSolution: "https://dev.dochub.in/institute/",
15
15
  eventOrganizerSolution: "https://dev.dochub.in/event-organizer/",
16
16
  membershipManagement: "https://dev.dochub.in/membership-management/",
17
+ marketingSolution: "https://dev.dochub.in/marketing-solution/",
17
18
  qrCheckInApp: "https://dev.dochub.in/qr-check-in-app/",
18
19
  enterpriseSolutions: "https://dev.dochub.in/enterprise-solutions/",
19
20
  aboutUs: "https://dev.dochub.in/about-us/",
@@ -52,6 +53,7 @@ const t = {
52
53
  instituteSolution: "https://www.docthub.com/institute",
53
54
  eventOrganizerSolution: "https://www.docthub.com/event-organizer",
54
55
  membershipManagement: "https://www.docthub.com/membership-management",
56
+ marketingSolution: "https://www.docthub.com/marketing-solution",
55
57
  qrCheckInApp: "https://www.docthub.com/qr-check-in-app",
56
58
  enterpriseSolutions: "https://www.docthub.com/enterprise-solutions",
57
59
  aboutUs: "https://www.docthub.com/about-us",
@@ -141,6 +141,10 @@ function a() {
141
141
  id: "membership-management",
142
142
  label: "Membership Management",
143
143
  href: e.membershipManagement
144
+ }, {
145
+ id: "marketing-solution",
146
+ label: "Marketing Solution",
147
+ href: e.marketingSolution
144
148
  }, {
145
149
  id: "qr-check-in-app",
146
150
  label: "QR Check-In App",
@@ -5,6 +5,7 @@ const e = {
5
5
  "institute-solution": "https://dev.dochub.in/institute",
6
6
  "events-organizer-solution": "https://dev.dochub.in/event-organizer",
7
7
  "membership-management": "https://dev.dochub.in/membership-management",
8
+ "marketing-solution": "https://dev.dochub.in/marketing-solution",
8
9
  "qr-check-in-app": "https://dev.dochub.in/qr-check-in-app",
9
10
  "what-is-enterprise": "https://dev.dochub.in/enterprise-solutions",
10
11
  "request-demo": "https://dev.dochub.in/contact-us",
@@ -18,6 +19,7 @@ const e = {
18
19
  "institute-solution": "https://www.docthub.com/institute",
19
20
  "events-organizer-solution": "https://www.docthub.com/event-organizer",
20
21
  "membership-management": "https://www.docthub.com/membership-management",
22
+ "marketing-solution": "https://www.docthub.com/marketing-solution",
21
23
  "qr-check-in-app": "https://www.docthub.com/qr-check-in-app",
22
24
  "what-is-enterprise": "https://www.docthub.com/enterprise-solutions",
23
25
  "request-demo": "https://www.docthub.com/contact-us",
@@ -2,7 +2,7 @@
2
2
  import { jsx as e, jsxs as t } from "react/jsx-runtime";
3
3
  import { INDIVIDUAL_NAV_ROUTES as i } from "./individual-nav-routes.js";
4
4
  import { ORGANIZATION_NAV_ROUTES as s } from "./organization-nav-routes.js";
5
- const l = [{
5
+ const n = [{
6
6
  id: "for-individuals-explore",
7
7
  title: "Explore",
8
8
  sections: [{
@@ -125,7 +125,7 @@ const l = [{
125
125
  /* @__PURE__ */ e("p", { className: "text-[11px] font-medium leading-4 text-neutral-56", children: "Available on iOS and Android" })
126
126
  ] })
127
127
  ] }) })
128
- }], n = [{
128
+ }], l = [{
129
129
  id: "for-organizations-business-solutions",
130
130
  title: "Solutions",
131
131
  sections: [{
@@ -155,6 +155,12 @@ const l = [{
155
155
  description: "A Cloud Office for Professional Associations",
156
156
  href: s["membership-management"],
157
157
  icon: /* @__PURE__ */ e("img", { src: "/products/organization/membership-management.svg", alt: "Membership Management", className: "h-8 w-8 shrink-0", loading: "lazy" })
158
+ }, {
159
+ id: "marketing-solution",
160
+ label: "Marketing Solution",
161
+ description: "Reach the Right Audience",
162
+ href: s["marketing-solution"],
163
+ icon: /* @__PURE__ */ e("img", { src: "/products/organization/marketing-solution.svg", alt: "Marketing Solution", className: "h-10 w-10 shrink-0", loading: "lazy" })
158
164
  }]
159
165
  }]
160
166
  }, {
@@ -233,6 +239,6 @@ const l = [{
233
239
  ] })
234
240
  }];
235
241
  export {
236
- l as individualNavigationGroups,
237
- n as organizationNavigationGroups
242
+ n as individualNavigationGroups,
243
+ l as organizationNavigationGroups
238
244
  };
@@ -16,6 +16,7 @@ export type FooterRoutes = {
16
16
  instituteSolution: string;
17
17
  eventOrganizerSolution: string;
18
18
  membershipManagement: string;
19
+ marketingSolution: string;
19
20
  qrCheckInApp: string;
20
21
  enterpriseSolutions: string;
21
22
  aboutUs: string;
@@ -3,6 +3,7 @@ export type OrganizationNavRoutes = {
3
3
  "institute-solution": string;
4
4
  "events-organizer-solution": string;
5
5
  "membership-management": string;
6
+ "marketing-solution": string;
6
7
  "qr-check-in-app": string;
7
8
  "what-is-enterprise": string;
8
9
  "request-demo": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docthub-core-components",
3
- "version": "3.2.5",
3
+ "version": "3.2.6",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",