@busiverse/ui 0.2.7 → 0.2.8
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/README.md +240 -16
- package/dist/assets-public.d.ts +2 -0
- package/dist/assets-public.d.ts.map +1 -0
- package/dist/assets-public.js +6 -0
- package/dist/billing.d.ts +3 -0
- package/dist/billing.d.ts.map +1 -0
- package/dist/billing.js +46 -0
- package/dist/brand.d.ts +2 -0
- package/dist/brand.d.ts.map +1 -0
- package/dist/{components/brand/index.js → brand.js} +4 -3
- package/dist/{chunk-GRZVAWCA.js → chunk-IVTESKF4.js} +1 -24
- package/dist/{chunk-ARMZUHU7.js → chunk-MPBOCUY4.js} +98 -76
- package/dist/{chunk-SZVGFEJG.js → chunk-NN24XQYI.js} +14 -20
- package/dist/chunk-NUGBTLBK.js +72 -0
- package/dist/{assets/assets.js → chunk-QK6O2RHQ.js} +1 -0
- package/dist/components/brand/BusiverseBrandHead.d.ts.map +1 -1
- package/dist/components/marketing/MarketingFeatureCard.d.ts +4 -4
- package/dist/components/marketing/MarketingFeatureCard.d.ts.map +1 -1
- package/dist/components/marketing/MarketingPricingCard.d.ts +5 -7
- package/dist/components/marketing/MarketingPricingCard.d.ts.map +1 -1
- package/dist/components/marketing/MarketingSectionHeader.d.ts.map +1 -1
- package/dist/i18n-public.d.ts +2 -0
- package/dist/i18n-public.d.ts.map +1 -0
- package/dist/{i18n/index.js → i18n-public.js} +2 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32 -29
- package/dist/marketing.d.ts +2 -0
- package/dist/marketing.d.ts.map +1 -0
- package/dist/{components/marketing/index.js → marketing.js} +4 -4
- package/dist/social.d.ts +2 -0
- package/dist/social.d.ts.map +1 -0
- package/dist/{components/social/index.js → social.js} +2 -2
- package/dist/styles.css +51 -81
- package/dist/tailwind-public.d.ts +2 -0
- package/dist/tailwind-public.d.ts.map +1 -0
- package/dist/{tailwind/index.js → tailwind-public.js} +1 -1
- package/package.json +29 -29
- package/dist/chunk-3XY5ZSTX.js +0 -94
- package/dist/chunk-NZ65VTKR.js +0 -0
- package/dist/components/billing/index.js +0 -13
|
@@ -6,17 +6,75 @@ import {
|
|
|
6
6
|
useBusiverseI18n
|
|
7
7
|
} from "./chunk-WDOMYE77.js";
|
|
8
8
|
import {
|
|
9
|
-
Button
|
|
10
|
-
|
|
11
|
-
} from "./chunk-GRZVAWCA.js";
|
|
9
|
+
Button
|
|
10
|
+
} from "./chunk-IVTESKF4.js";
|
|
12
11
|
import {
|
|
13
12
|
cn
|
|
14
13
|
} from "./chunk-PYZVP4NI.js";
|
|
15
14
|
|
|
15
|
+
// src/components/billing/CurrencyAmount.tsx
|
|
16
|
+
import { Fragment, jsx } from "react/jsx-runtime";
|
|
17
|
+
function CurrencyAmount({ amount, currency = "NGN", locale = "en-NG", minimumFractionDigits, maximumFractionDigits }) {
|
|
18
|
+
const region = { locale, currencyCode: currency };
|
|
19
|
+
return /* @__PURE__ */ jsx(Fragment, { children: formatCurrency(amount, region, { minimumFractionDigits, maximumFractionDigits }) });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// src/components/billing/UsageQuotaBar.tsx
|
|
23
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
24
|
+
function UsageQuotaBar({ used, limit, label }) {
|
|
25
|
+
const percent = limit > 0 ? Math.min(100, Math.round(used / limit * 100)) : 0;
|
|
26
|
+
return /* @__PURE__ */ jsxs("div", { className: "busiverse-quota", children: [
|
|
27
|
+
/* @__PURE__ */ jsxs("div", { className: "busiverse-quota-row", children: [
|
|
28
|
+
/* @__PURE__ */ jsx2("span", { children: label }),
|
|
29
|
+
/* @__PURE__ */ jsxs("span", { children: [
|
|
30
|
+
used.toLocaleString(),
|
|
31
|
+
" / ",
|
|
32
|
+
limit.toLocaleString()
|
|
33
|
+
] })
|
|
34
|
+
] }),
|
|
35
|
+
/* @__PURE__ */ jsx2("div", { className: "busiverse-quota-track", children: /* @__PURE__ */ jsx2("div", { className: "busiverse-quota-fill", style: { width: `${percent}%` } }) })
|
|
36
|
+
] });
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// src/components/data/DataTable.tsx
|
|
40
|
+
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
41
|
+
function getCellValue(row, key) {
|
|
42
|
+
const value = row[String(key)];
|
|
43
|
+
if (value == null) return "\u2014";
|
|
44
|
+
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") return String(value);
|
|
45
|
+
return JSON.stringify(value);
|
|
46
|
+
}
|
|
47
|
+
function DataTable({ rows, columns, getRowKey, isLoading, emptyState, className, dense }) {
|
|
48
|
+
if (isLoading) return /* @__PURE__ */ jsx3("div", { className: "busiverse-table-state", children: "Loading records\u2026" });
|
|
49
|
+
if (!rows.length) return /* @__PURE__ */ jsx3("div", { className: "busiverse-table-state", children: emptyState ?? "No records found." });
|
|
50
|
+
return /* @__PURE__ */ jsx3("div", { className: cn("busiverse-table-wrap", className), children: /* @__PURE__ */ jsxs2("table", { className: cn("busiverse-table", dense && "is-dense"), children: [
|
|
51
|
+
/* @__PURE__ */ jsx3("thead", { children: /* @__PURE__ */ jsx3("tr", { children: columns.map((column) => /* @__PURE__ */ jsx3("th", { style: { width: column.width, textAlign: column.align }, children: column.header }, String(column.key))) }) }),
|
|
52
|
+
/* @__PURE__ */ jsx3("tbody", { children: rows.map((row, rowIndex) => /* @__PURE__ */ jsx3("tr", { children: columns.map((column) => /* @__PURE__ */ jsx3("td", { style: { textAlign: column.align }, children: column.render ? column.render(row, rowIndex) : getCellValue(row, column.key) }, String(column.key))) }, getRowKey?.(row, rowIndex) ?? rowIndex)) })
|
|
53
|
+
] }) });
|
|
54
|
+
}
|
|
55
|
+
|
|
16
56
|
// src/components/primitives/Badge.tsx
|
|
17
|
-
import { jsx } from "react/jsx-runtime";
|
|
57
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
18
58
|
function Badge({ className, tone = "blue", ...props }) {
|
|
19
|
-
return /* @__PURE__ */
|
|
59
|
+
return /* @__PURE__ */ jsx4("span", { className: cn("busiverse-badge", `busiverse-badge-${tone}`, className), ...props });
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// src/components/primitives/Card.tsx
|
|
63
|
+
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
64
|
+
function Card({ className, interactive, ...props }) {
|
|
65
|
+
return /* @__PURE__ */ jsx5("div", { className: cn("busiverse-card", interactive && "busiverse-card-interactive", className), ...props });
|
|
66
|
+
}
|
|
67
|
+
function CardHeader({ className, ...props }) {
|
|
68
|
+
return /* @__PURE__ */ jsx5("div", { className: cn("busiverse-card-header", className), ...props });
|
|
69
|
+
}
|
|
70
|
+
function CardTitle({ className, ...props }) {
|
|
71
|
+
return /* @__PURE__ */ jsx5("h3", { className: cn("busiverse-card-title", className), ...props });
|
|
72
|
+
}
|
|
73
|
+
function CardDescription({ className, ...props }) {
|
|
74
|
+
return /* @__PURE__ */ jsx5("p", { className: cn("busiverse-card-description", className), ...props });
|
|
75
|
+
}
|
|
76
|
+
function CardContent({ className, ...props }) {
|
|
77
|
+
return /* @__PURE__ */ jsx5("div", { className: cn("busiverse-card-content", className), ...props });
|
|
20
78
|
}
|
|
21
79
|
|
|
22
80
|
// src/registry/services.ts
|
|
@@ -57,47 +115,6 @@ function getBusiverseService(key) {
|
|
|
57
115
|
return busiverseServices.find((service) => service.key === key);
|
|
58
116
|
}
|
|
59
117
|
|
|
60
|
-
// src/components/data/DataTable.tsx
|
|
61
|
-
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
62
|
-
function getCellValue(row, key) {
|
|
63
|
-
const value = row[String(key)];
|
|
64
|
-
if (value == null) return "\u2014";
|
|
65
|
-
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") return String(value);
|
|
66
|
-
return JSON.stringify(value);
|
|
67
|
-
}
|
|
68
|
-
function DataTable({ rows, columns, getRowKey, isLoading, emptyState, className, dense }) {
|
|
69
|
-
if (isLoading) return /* @__PURE__ */ jsx2("div", { className: "busiverse-table-state", children: "Loading records\u2026" });
|
|
70
|
-
if (!rows.length) return /* @__PURE__ */ jsx2("div", { className: "busiverse-table-state", children: emptyState ?? "No records found." });
|
|
71
|
-
return /* @__PURE__ */ jsx2("div", { className: cn("busiverse-table-wrap", className), children: /* @__PURE__ */ jsxs("table", { className: cn("busiverse-table", dense && "is-dense"), children: [
|
|
72
|
-
/* @__PURE__ */ jsx2("thead", { children: /* @__PURE__ */ jsx2("tr", { children: columns.map((column) => /* @__PURE__ */ jsx2("th", { style: { width: column.width, textAlign: column.align }, children: column.header }, String(column.key))) }) }),
|
|
73
|
-
/* @__PURE__ */ jsx2("tbody", { children: rows.map((row, rowIndex) => /* @__PURE__ */ jsx2("tr", { children: columns.map((column) => /* @__PURE__ */ jsx2("td", { style: { textAlign: column.align }, children: column.render ? column.render(row, rowIndex) : getCellValue(row, column.key) }, String(column.key))) }, getRowKey?.(row, rowIndex) ?? rowIndex)) })
|
|
74
|
-
] }) });
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// src/components/billing/CurrencyAmount.tsx
|
|
78
|
-
import { Fragment, jsx as jsx3 } from "react/jsx-runtime";
|
|
79
|
-
function CurrencyAmount({ amount, currency = "NGN", locale = "en-NG", minimumFractionDigits, maximumFractionDigits }) {
|
|
80
|
-
const region = { locale, currencyCode: currency };
|
|
81
|
-
return /* @__PURE__ */ jsx3(Fragment, { children: formatCurrency(amount, region, { minimumFractionDigits, maximumFractionDigits }) });
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// src/components/billing/UsageQuotaBar.tsx
|
|
85
|
-
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
86
|
-
function UsageQuotaBar({ used, limit, label }) {
|
|
87
|
-
const percent = limit > 0 ? Math.min(100, Math.round(used / limit * 100)) : 0;
|
|
88
|
-
return /* @__PURE__ */ jsxs2("div", { className: "busiverse-quota", children: [
|
|
89
|
-
/* @__PURE__ */ jsxs2("div", { className: "busiverse-quota-row", children: [
|
|
90
|
-
/* @__PURE__ */ jsx4("span", { children: label }),
|
|
91
|
-
/* @__PURE__ */ jsxs2("span", { children: [
|
|
92
|
-
used.toLocaleString(),
|
|
93
|
-
" / ",
|
|
94
|
-
limit.toLocaleString()
|
|
95
|
-
] })
|
|
96
|
-
] }),
|
|
97
|
-
/* @__PURE__ */ jsx4("div", { className: "busiverse-quota-track", children: /* @__PURE__ */ jsx4("div", { className: "busiverse-quota-fill", style: { width: `${percent}%` } }) })
|
|
98
|
-
] });
|
|
99
|
-
}
|
|
100
|
-
|
|
101
118
|
// src/pricing/servicePricingCatalog.ts
|
|
102
119
|
var busiverseServicePricingCatalog = [
|
|
103
120
|
{
|
|
@@ -7658,7 +7675,7 @@ function describeTimeEquivalents(row, region) {
|
|
|
7658
7675
|
|
|
7659
7676
|
// src/components/billing/ServicePricingExplorer.tsx
|
|
7660
7677
|
import * as React from "react";
|
|
7661
|
-
import { jsx as
|
|
7678
|
+
import { jsx as jsx6, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
7662
7679
|
var categoryOrder = ["all", "core", "security", "finance", "business", "commerce", "operations", "intelligence", "blockchain", "developer"];
|
|
7663
7680
|
var categoryLabels = {
|
|
7664
7681
|
all: "All services",
|
|
@@ -7715,8 +7732,8 @@ function ServicePricingExplorer({
|
|
|
7715
7732
|
const columns = [
|
|
7716
7733
|
{ key: "service", header: "Service", render: (row) => serviceLabel(row.service), width: "160px" },
|
|
7717
7734
|
{ key: "displayName", header: "Operation", render: (row) => /* @__PURE__ */ jsxs3("span", { children: [
|
|
7718
|
-
/* @__PURE__ */
|
|
7719
|
-
/* @__PURE__ */
|
|
7735
|
+
/* @__PURE__ */ jsx6("strong", { children: row.displayName }),
|
|
7736
|
+
/* @__PURE__ */ jsx6("small", { className: "busiverse-pricing-code", children: row.operationCode })
|
|
7720
7737
|
] }) },
|
|
7721
7738
|
{ key: "cadence", header: "Unit", render: (row) => `${labelCadence(row.cadence)} \xB7 ${row.unit}` },
|
|
7722
7739
|
{ key: "standaloneUsd", header: audience === "external" ? "External price" : "Internal price", align: "right", render: (row) => formatPricingValue(getRowPriceUsd(row, audience), region) },
|
|
@@ -7727,14 +7744,14 @@ function ServicePricingExplorer({
|
|
|
7727
7744
|
return /* @__PURE__ */ jsxs3("section", { className: cn("busiverse-pricing-explorer", className), children: [
|
|
7728
7745
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-header", children: [
|
|
7729
7746
|
/* @__PURE__ */ jsxs3("div", { children: [
|
|
7730
|
-
/* @__PURE__ */
|
|
7731
|
-
/* @__PURE__ */
|
|
7732
|
-
/* @__PURE__ */
|
|
7747
|
+
/* @__PURE__ */ jsx6(Badge, { tone: "blue", children: "Account-rated catalog" }),
|
|
7748
|
+
/* @__PURE__ */ jsx6("h2", { children: title }),
|
|
7749
|
+
/* @__PURE__ */ jsx6("p", { children: description })
|
|
7733
7750
|
] }),
|
|
7734
|
-
showRegionSelector && /* @__PURE__ */
|
|
7751
|
+
showRegionSelector && /* @__PURE__ */ jsx6(RegionSelector, {})
|
|
7735
7752
|
] }),
|
|
7736
7753
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-controls", role: "search", children: [
|
|
7737
|
-
/* @__PURE__ */
|
|
7754
|
+
/* @__PURE__ */ jsx6(
|
|
7738
7755
|
"input",
|
|
7739
7756
|
{
|
|
7740
7757
|
"aria-label": "Search services",
|
|
@@ -7745,25 +7762,25 @@ function ServicePricingExplorer({
|
|
|
7745
7762
|
}
|
|
7746
7763
|
),
|
|
7747
7764
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-toggle", "aria-label": "Pricing audience", children: [
|
|
7748
|
-
/* @__PURE__ */
|
|
7749
|
-
/* @__PURE__ */
|
|
7765
|
+
/* @__PURE__ */ jsx6(Button, { size: "sm", variant: audience === "external" ? "primary" : "secondary", onClick: () => setAudience("external"), children: "External" }),
|
|
7766
|
+
/* @__PURE__ */ jsx6(Button, { size: "sm", variant: audience === "internal" ? "primary" : "secondary", onClick: () => setAudience("internal"), children: "Internal Busiverse" })
|
|
7750
7767
|
] })
|
|
7751
7768
|
] }),
|
|
7752
|
-
/* @__PURE__ */
|
|
7753
|
-
/* @__PURE__ */
|
|
7769
|
+
/* @__PURE__ */ jsx6("div", { className: "busiverse-pricing-tabs", "aria-label": "Service categories", children: categoryOrder.map((item) => /* @__PURE__ */ jsx6("button", { className: cn(item === category && "is-active"), onClick: () => setCategory(item), type: "button", children: categoryLabels[item] ?? item }, item)) }),
|
|
7770
|
+
/* @__PURE__ */ jsx6("div", { className: "busiverse-pricing-grid", children: filteredSummaries.map((summary) => /* @__PURE__ */ jsx6(ServicePricingCard, { summary, audience }, summary.service)) }),
|
|
7754
7771
|
/* @__PURE__ */ jsxs3(Card, { className: "busiverse-pricing-table-card", children: [
|
|
7755
7772
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-table-heading", children: [
|
|
7756
7773
|
/* @__PURE__ */ jsxs3("div", { children: [
|
|
7757
|
-
/* @__PURE__ */
|
|
7758
|
-
/* @__PURE__ */
|
|
7774
|
+
/* @__PURE__ */ jsx6("h3", { children: "Operation-level tariff sheet" }),
|
|
7775
|
+
/* @__PURE__ */ jsx6("p", { children: "Rows include external price, internal chargeback, estimated direct cost, gross margin, and standardized time equivalents where applicable." })
|
|
7759
7776
|
] }),
|
|
7760
7777
|
/* @__PURE__ */ jsxs3(Badge, { tone: "cyan", children: [
|
|
7761
7778
|
filteredRows.length,
|
|
7762
7779
|
" operations"
|
|
7763
7780
|
] })
|
|
7764
7781
|
] }),
|
|
7765
|
-
/* @__PURE__ */
|
|
7766
|
-
filteredRows.length > maxInitialRows && /* @__PURE__ */
|
|
7782
|
+
/* @__PURE__ */ jsx6(DataTable, { rows: visibleRows, columns, dense: true, getRowKey: (row) => row.operationCode, emptyState: "No pricing operations match the current filter." }),
|
|
7783
|
+
filteredRows.length > maxInitialRows && /* @__PURE__ */ jsx6("div", { className: "busiverse-pricing-table-more", children: /* @__PURE__ */ jsx6(Button, { variant: "secondary", onClick: () => setShowAllRows((value) => !value), children: showAllRows ? "Show fewer operations" : `Show all ${filteredRows.length} operations` }) })
|
|
7767
7784
|
] })
|
|
7768
7785
|
] });
|
|
7769
7786
|
}
|
|
@@ -7774,25 +7791,25 @@ function ServicePricingCard({ summary, audience }) {
|
|
|
7774
7791
|
const maxPrice = audience === "internal" ? summary.maxBusiverseUsd : summary.maxStandaloneUsd;
|
|
7775
7792
|
return /* @__PURE__ */ jsxs3(Card, { className: "busiverse-pricing-card", interactive: true, children: [
|
|
7776
7793
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-card-topline", children: [
|
|
7777
|
-
/* @__PURE__ */
|
|
7778
|
-
service?.usesTimeSeries && /* @__PURE__ */
|
|
7794
|
+
/* @__PURE__ */ jsx6(Badge, { tone: summary.hasPassThrough ? "warning" : "blue", children: summary.hasPassThrough ? "Pass-through aware" : "Fixed rated" }),
|
|
7795
|
+
service?.usesTimeSeries && /* @__PURE__ */ jsx6(Badge, { tone: "cyan", children: "Time-series" })
|
|
7779
7796
|
] }),
|
|
7780
|
-
/* @__PURE__ */
|
|
7781
|
-
/* @__PURE__ */
|
|
7797
|
+
/* @__PURE__ */ jsx6("h3", { children: service?.name ?? serviceLabel(summary.service) }),
|
|
7798
|
+
/* @__PURE__ */ jsx6("p", { children: service?.description ?? "BUSIVERSE service pricing." }),
|
|
7782
7799
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-card-price", children: [
|
|
7783
|
-
/* @__PURE__ */
|
|
7784
|
-
/* @__PURE__ */
|
|
7800
|
+
/* @__PURE__ */ jsx6("span", { children: "Usage range" }),
|
|
7801
|
+
/* @__PURE__ */ jsx6("strong", { children: summarizeRange(minPrice, maxPrice, region) })
|
|
7785
7802
|
] }),
|
|
7786
7803
|
summary.minMonthlyUsd != null && summary.maxMonthlyUsd != null && /* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-card-metric", children: [
|
|
7787
|
-
/* @__PURE__ */
|
|
7788
|
-
/* @__PURE__ */
|
|
7804
|
+
/* @__PURE__ */ jsx6("span", { children: "Monthly equivalent" }),
|
|
7805
|
+
/* @__PURE__ */ jsx6("b", { children: summarizeRange(summary.minMonthlyUsd, summary.maxMonthlyUsd, region) })
|
|
7789
7806
|
] }),
|
|
7790
7807
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-card-metric", children: [
|
|
7791
|
-
/* @__PURE__ */
|
|
7792
|
-
/* @__PURE__ */
|
|
7808
|
+
/* @__PURE__ */ jsx6("span", { children: "Direct cost range" }),
|
|
7809
|
+
/* @__PURE__ */ jsx6("b", { children: summarizeRange(summary.minDirectCostUsd, summary.maxDirectCostUsd, region) })
|
|
7793
7810
|
] }),
|
|
7794
7811
|
/* @__PURE__ */ jsxs3("div", { className: "busiverse-pricing-card-metric", children: [
|
|
7795
|
-
/* @__PURE__ */
|
|
7812
|
+
/* @__PURE__ */ jsx6("span", { children: "Gross margin" }),
|
|
7796
7813
|
/* @__PURE__ */ jsxs3("b", { children: [
|
|
7797
7814
|
formatMargin(summary.minGrossMargin, region.locale),
|
|
7798
7815
|
" \u2013 ",
|
|
@@ -7809,12 +7826,17 @@ function ServicePricingCard({ summary, audience }) {
|
|
|
7809
7826
|
}
|
|
7810
7827
|
|
|
7811
7828
|
export {
|
|
7829
|
+
CurrencyAmount,
|
|
7830
|
+
UsageQuotaBar,
|
|
7831
|
+
DataTable,
|
|
7812
7832
|
Badge,
|
|
7833
|
+
Card,
|
|
7834
|
+
CardHeader,
|
|
7835
|
+
CardTitle,
|
|
7836
|
+
CardDescription,
|
|
7837
|
+
CardContent,
|
|
7813
7838
|
busiverseServices,
|
|
7814
7839
|
getBusiverseService,
|
|
7815
|
-
DataTable,
|
|
7816
|
-
CurrencyAmount,
|
|
7817
|
-
UsageQuotaBar,
|
|
7818
7840
|
busiverseServicePricingCatalog,
|
|
7819
7841
|
getPricingRowsByService,
|
|
7820
7842
|
getServicePricingSummary,
|
|
@@ -1,15 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
busiverseAssets
|
|
3
|
+
} from "./chunk-QK6O2RHQ.js";
|
|
4
|
+
|
|
1
5
|
// src/components/brand/BusiverseBrandHead.tsx
|
|
2
6
|
import * as React from "react";
|
|
3
|
-
var faviconIco = new URL("../../assets/favicon.io/favicon.ico", import.meta.url).href;
|
|
4
|
-
var favicon16 = new URL("../../assets/favicon.io/favicon-16x16.png", import.meta.url).href;
|
|
5
|
-
var favicon32 = new URL("../../assets/favicon.io/favicon-32x32.png", import.meta.url).href;
|
|
6
|
-
var favicon96 = new URL("../../assets/favicon.io/favicon-96x96.png", import.meta.url).href;
|
|
7
|
-
var appleTouchIcon = new URL("../../assets/favicon.io/apple-touch-icon.png", import.meta.url).href;
|
|
8
|
-
var androidChrome192 = new URL("../../assets/favicon.io/android-chrome-192x192.png", import.meta.url).href;
|
|
9
|
-
var androidChrome512 = new URL("../../assets/favicon.io/android-chrome-512x512.png", import.meta.url).href;
|
|
10
|
-
var androidIcon192 = new URL("../../assets/favicon.io/android-icon-192x192.png", import.meta.url).href;
|
|
11
|
-
var msTile144 = new URL("../../assets/favicon.io/ms-icon-144x144.png", import.meta.url).href;
|
|
12
|
-
var defaultSocialImage = new URL("../../assets/social/busiverse-twitter_x-header-2.7777777777777777x-darkbg.png", import.meta.url).href;
|
|
13
7
|
var DEFAULT_TITLE = "BUSIVERSE \u2014 Turn Ideas Into Operating Businesses";
|
|
14
8
|
var DEFAULT_DESCRIPTION = "BUSIVERSE combines AI automation, blockchain-backed trust, and modular business services to help teams launch and operate ventures faster.";
|
|
15
9
|
var DEFAULT_THEME_COLOR = "#020617";
|
|
@@ -43,8 +37,8 @@ function createManifestDataUrl(title, description, themeColor) {
|
|
|
43
37
|
background_color: themeColor,
|
|
44
38
|
theme_color: themeColor,
|
|
45
39
|
icons: [
|
|
46
|
-
{ src: androidChrome192, sizes: "192x192", type: "image/png" },
|
|
47
|
-
{ src: androidChrome512, sizes: "512x512", type: "image/png" }
|
|
40
|
+
{ src: busiverseAssets.favicon.androidChrome192, sizes: "192x192", type: "image/png" },
|
|
41
|
+
{ src: busiverseAssets.favicon.androidChrome512, sizes: "512x512", type: "image/png" }
|
|
48
42
|
]
|
|
49
43
|
};
|
|
50
44
|
return `data:application/manifest+json,${encodeURIComponent(JSON.stringify(manifest))}`;
|
|
@@ -54,7 +48,7 @@ function applyBusiverseBrandHead({
|
|
|
54
48
|
description = DEFAULT_DESCRIPTION,
|
|
55
49
|
siteName = "Busiverse",
|
|
56
50
|
url,
|
|
57
|
-
image =
|
|
51
|
+
image = busiverseAssets.social.xHeader,
|
|
58
52
|
twitterSite = "@busiverse1",
|
|
59
53
|
keywords = "Busiverse, AI automation, blockchain-backed trust, modular business services, distributed business infrastructure",
|
|
60
54
|
locale = "en_NG",
|
|
@@ -69,13 +63,13 @@ function applyBusiverseBrandHead({
|
|
|
69
63
|
ensureMeta('meta[name="application-name"]', { name: "application-name", content: applicationName });
|
|
70
64
|
ensureMeta('meta[name="apple-mobile-web-app-title"]', { name: "apple-mobile-web-app-title", content: appleMobileWebAppTitle });
|
|
71
65
|
ensureMeta('meta[name="msapplication-TileColor"]', { name: "msapplication-TileColor", content: themeColor });
|
|
72
|
-
ensureMeta('meta[name="msapplication-TileImage"]', { name: "msapplication-TileImage", content: msTile144 });
|
|
73
|
-
ensureLink('link[data-busiverse-ui-head="icon-ico"]', { rel: "icon", type: "image/x-icon", href:
|
|
74
|
-
ensureLink('link[data-busiverse-ui-head="icon-16"]', { rel: "icon", type: "image/png", sizes: "16x16", href:
|
|
75
|
-
ensureLink('link[data-busiverse-ui-head="icon-32"]', { rel: "icon", type: "image/png", sizes: "32x32", href:
|
|
76
|
-
ensureLink('link[data-busiverse-ui-head="icon-96"]', { rel: "icon", type: "image/png", sizes: "96x96", href:
|
|
77
|
-
ensureLink('link[data-busiverse-ui-head="icon-192"]', { rel: "icon", type: "image/png", sizes: "192x192", href: androidIcon192, "data-busiverse-ui-head": "icon-192" });
|
|
78
|
-
ensureLink('link[data-busiverse-ui-head="apple-touch-icon"]', { rel: "apple-touch-icon", sizes: "180x180", href: appleTouchIcon, "data-busiverse-ui-head": "apple-touch-icon" });
|
|
66
|
+
ensureMeta('meta[name="msapplication-TileImage"]', { name: "msapplication-TileImage", content: busiverseAssets.favicon.msTile144 });
|
|
67
|
+
ensureLink('link[data-busiverse-ui-head="icon-ico"]', { rel: "icon", type: "image/x-icon", href: busiverseAssets.favicon.ico, "data-busiverse-ui-head": "icon-ico" });
|
|
68
|
+
ensureLink('link[data-busiverse-ui-head="icon-16"]', { rel: "icon", type: "image/png", sizes: "16x16", href: busiverseAssets.favicon.png16, "data-busiverse-ui-head": "icon-16" });
|
|
69
|
+
ensureLink('link[data-busiverse-ui-head="icon-32"]', { rel: "icon", type: "image/png", sizes: "32x32", href: busiverseAssets.favicon.png32, "data-busiverse-ui-head": "icon-32" });
|
|
70
|
+
ensureLink('link[data-busiverse-ui-head="icon-96"]', { rel: "icon", type: "image/png", sizes: "96x96", href: busiverseAssets.favicon.png96, "data-busiverse-ui-head": "icon-96" });
|
|
71
|
+
ensureLink('link[data-busiverse-ui-head="icon-192"]', { rel: "icon", type: "image/png", sizes: "192x192", href: busiverseAssets.favicon.androidIcon192, "data-busiverse-ui-head": "icon-192" });
|
|
72
|
+
ensureLink('link[data-busiverse-ui-head="apple-touch-icon"]', { rel: "apple-touch-icon", sizes: "180x180", href: busiverseAssets.favicon.appleTouchIcon, "data-busiverse-ui-head": "apple-touch-icon" });
|
|
79
73
|
ensureLink('link[data-busiverse-ui-head="manifest"]', { rel: "manifest", href: createManifestDataUrl(title, description, themeColor), "data-busiverse-ui-head": "manifest" });
|
|
80
74
|
ensureMeta('meta[property="og:title"]', { property: "og:title", content: title });
|
|
81
75
|
ensureMeta('meta[property="og:description"]', { property: "og:description", content: description });
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Button
|
|
3
|
+
} from "./chunk-IVTESKF4.js";
|
|
4
|
+
import {
|
|
5
|
+
BusiverseLogo
|
|
6
|
+
} from "./chunk-32FPZZH2.js";
|
|
7
|
+
|
|
8
|
+
// src/components/marketing/HeroSection.tsx
|
|
9
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
10
|
+
function HeroSection({
|
|
11
|
+
title = "Turn Ideas Into Operating Businesses",
|
|
12
|
+
subtitle = "BUSIVERSE combines AI automation, blockchain-backed trust, and modular business services to help teams launch and operate ventures faster.",
|
|
13
|
+
primaryCta = /* @__PURE__ */ jsx(Button, { children: "Start Building" }),
|
|
14
|
+
secondaryCta = /* @__PURE__ */ jsx(Button, { variant: "secondary", children: "Explore the Platform" })
|
|
15
|
+
}) {
|
|
16
|
+
return /* @__PURE__ */ jsx("section", { className: "busiverse-hero", children: /* @__PURE__ */ jsxs("div", { className: "busiverse-hero-content", children: [
|
|
17
|
+
/* @__PURE__ */ jsx(BusiverseLogo, { variant: "full", tone: "white", className: "busiverse-hero-logo" }),
|
|
18
|
+
/* @__PURE__ */ jsx("h1", { children: title }),
|
|
19
|
+
/* @__PURE__ */ jsx("p", { children: subtitle }),
|
|
20
|
+
/* @__PURE__ */ jsxs("div", { className: "busiverse-hero-actions", children: [
|
|
21
|
+
primaryCta,
|
|
22
|
+
secondaryCta
|
|
23
|
+
] })
|
|
24
|
+
] }) });
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// src/components/marketing/MarketingSectionHeader.tsx
|
|
28
|
+
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
29
|
+
function MarketingSectionHeader({ eyebrow, title, description, align = "center", className }) {
|
|
30
|
+
return /* @__PURE__ */ jsxs2("div", { className: ["busiverse-marketing-section-header", align === "left" ? "is-left" : "is-center", className].filter(Boolean).join(" "), children: [
|
|
31
|
+
eyebrow ? /* @__PURE__ */ jsx2("p", { className: "busiverse-eyebrow", children: eyebrow }) : null,
|
|
32
|
+
/* @__PURE__ */ jsx2("h2", { children: title }),
|
|
33
|
+
description ? /* @__PURE__ */ jsx2("p", { children: description }) : null
|
|
34
|
+
] });
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// src/components/marketing/MarketingFeatureCard.tsx
|
|
38
|
+
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
39
|
+
function MarketingFeatureCard({ title, description, icon, kicker, children, className }) {
|
|
40
|
+
return /* @__PURE__ */ jsxs3("article", { className: ["busiverse-marketing-card", className].filter(Boolean).join(" "), children: [
|
|
41
|
+
/* @__PURE__ */ jsxs3("div", { className: "busiverse-marketing-card-topline", children: [
|
|
42
|
+
icon ? /* @__PURE__ */ jsx3("div", { className: "busiverse-marketing-card-icon", "aria-hidden": "true", children: icon }) : null,
|
|
43
|
+
kicker ? /* @__PURE__ */ jsx3("span", { children: kicker }) : null
|
|
44
|
+
] }),
|
|
45
|
+
/* @__PURE__ */ jsx3("h3", { children: title }),
|
|
46
|
+
/* @__PURE__ */ jsx3("p", { children: description }),
|
|
47
|
+
children ? /* @__PURE__ */ jsx3("div", { className: "busiverse-marketing-card-body", children }) : null
|
|
48
|
+
] });
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// src/components/marketing/MarketingPricingCard.tsx
|
|
52
|
+
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
53
|
+
function MarketingPricingCard({ name, eyebrow, price, cadence, description, features, action, featured, className }) {
|
|
54
|
+
return /* @__PURE__ */ jsxs4("article", { className: ["busiverse-marketing-pricing-card", featured ? "is-featured" : "", className].filter(Boolean).join(" "), children: [
|
|
55
|
+
eyebrow ? /* @__PURE__ */ jsx4("span", { className: "busiverse-marketing-price-eyebrow", children: eyebrow }) : null,
|
|
56
|
+
/* @__PURE__ */ jsx4("h3", { children: name }),
|
|
57
|
+
/* @__PURE__ */ jsxs4("div", { className: "busiverse-marketing-price-line", children: [
|
|
58
|
+
/* @__PURE__ */ jsx4("strong", { children: price }),
|
|
59
|
+
cadence ? /* @__PURE__ */ jsx4("span", { children: cadence }) : null
|
|
60
|
+
] }),
|
|
61
|
+
/* @__PURE__ */ jsx4("p", { children: description }),
|
|
62
|
+
/* @__PURE__ */ jsx4("ul", { children: features.map((feature, index) => /* @__PURE__ */ jsx4("li", { children: feature }, index)) }),
|
|
63
|
+
action ? /* @__PURE__ */ jsx4("div", { className: "busiverse-marketing-price-action", children: action }) : null
|
|
64
|
+
] });
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export {
|
|
68
|
+
HeroSection,
|
|
69
|
+
MarketingSectionHeader,
|
|
70
|
+
MarketingFeatureCard,
|
|
71
|
+
MarketingPricingCard
|
|
72
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BusiverseBrandHead.d.ts","sourceRoot":"","sources":["../../../src/components/brand/BusiverseBrandHead.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BusiverseBrandHead.d.ts","sourceRoot":"","sources":["../../../src/components/brand/BusiverseBrandHead.tsx"],"names":[],"mappings":"AAGA,MAAM,WAAW,uBAAuB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AA6CD,wBAAgB,uBAAuB,CAAC,EACtC,KAAqB,EACrB,WAAiC,EACjC,QAAsB,EACtB,GAAG,EACH,KAAsC,EACtC,WAA2B,EAC3B,QAA8H,EAC9H,MAAgB,EAChB,UAAgC,EAChC,sBAAoC,EACpC,eAA6B,GAC9B,GAAE,uBAA4B,QAgC9B;AAED,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,uBAAuB,QAkBhE"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
export interface MarketingFeatureCardProps {
|
|
3
|
-
icon?: React.ReactNode;
|
|
4
|
-
label?: React.ReactNode;
|
|
5
3
|
title: React.ReactNode;
|
|
6
4
|
description: React.ReactNode;
|
|
7
|
-
|
|
5
|
+
icon?: React.ReactNode;
|
|
6
|
+
kicker?: React.ReactNode;
|
|
7
|
+
children?: React.ReactNode;
|
|
8
8
|
className?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare function MarketingFeatureCard({
|
|
10
|
+
export declare function MarketingFeatureCard({ title, description, icon, kicker, children, className }: MarketingFeatureCardProps): React.JSX.Element;
|
|
11
11
|
//# sourceMappingURL=MarketingFeatureCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarketingFeatureCard.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingFeatureCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MarketingFeatureCard.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingFeatureCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,WAAW,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,oBAAoB,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,yBAAyB,qBAYxH"}
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
export interface MarketingPricingCardProps {
|
|
3
3
|
name: string;
|
|
4
|
-
|
|
4
|
+
eyebrow?: string;
|
|
5
5
|
price: string;
|
|
6
6
|
cadence?: string;
|
|
7
|
-
description:
|
|
8
|
-
features:
|
|
9
|
-
|
|
10
|
-
ctaHref?: string;
|
|
7
|
+
description: React.ReactNode;
|
|
8
|
+
features: React.ReactNode[];
|
|
9
|
+
action?: React.ReactNode;
|
|
11
10
|
featured?: boolean;
|
|
12
|
-
note?: string;
|
|
13
11
|
className?: string;
|
|
14
12
|
}
|
|
15
|
-
export declare function MarketingPricingCard({ name,
|
|
13
|
+
export declare function MarketingPricingCard({ name, eyebrow, price, cadence, description, features, action, featured, className }: MarketingPricingCardProps): React.JSX.Element;
|
|
16
14
|
//# sourceMappingURL=MarketingPricingCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarketingPricingCard.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingPricingCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MarketingPricingCard.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingPricingCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,KAAK,CAAC,SAAS,CAAC;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,EAAE,CAAC;IAC5B,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,oBAAoB,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE,yBAAyB,qBAkBpJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarketingSectionHeader.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingSectionHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MarketingSectionHeader.d.ts","sourceRoot":"","sources":["../../../src/components/marketing/MarketingSectionHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,2BAA2B;IAC1C,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,sBAAsB,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,KAAgB,EAAE,SAAS,EAAE,EAAE,2BAA2B,qBAQ/H"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i18n-public.d.ts","sourceRoot":"","sources":["../src/i18n-public.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import "../chunk-NZ65VTKR.js";
|
|
2
1
|
import {
|
|
3
2
|
BusiverseI18nProvider,
|
|
4
3
|
RegionSelector,
|
|
@@ -7,8 +6,8 @@ import {
|
|
|
7
6
|
formatNumber,
|
|
8
7
|
toRegionHeaders,
|
|
9
8
|
useBusiverseI18n
|
|
10
|
-
} from "
|
|
11
|
-
import "
|
|
9
|
+
} from "./chunk-WDOMYE77.js";
|
|
10
|
+
import "./chunk-PYZVP4NI.js";
|
|
12
11
|
export {
|
|
13
12
|
BusiverseI18nProvider,
|
|
14
13
|
RegionSelector,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
export * from "./tokens";
|
|
2
|
+
export * from "./assets/assets";
|
|
1
3
|
export * from "./components";
|
|
4
|
+
export * from "./registry/services";
|
|
5
|
+
export * from "./pricing";
|
|
2
6
|
export * from "./api";
|
|
3
7
|
export * from "./auth";
|
|
4
8
|
export * from "./i18n";
|
|
5
|
-
export * from "./pricing";
|
|
6
|
-
export * from "./registry/services";
|
|
7
|
-
export * from "./tokens";
|
|
8
9
|
export * from "./utils/cn";
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,OAAO,CAAC;AACtB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import "./chunk-NZ65VTKR.js";
|
|
2
|
-
import {
|
|
3
|
-
busiverseColors,
|
|
4
|
-
busiverseContainers,
|
|
5
|
-
busiverseRadius,
|
|
6
|
-
busiverseSpacing,
|
|
7
|
-
busiverseTypography
|
|
8
|
-
} from "./chunk-SXD6EH2C.js";
|
|
9
1
|
import {
|
|
10
2
|
Badge,
|
|
3
|
+
Card,
|
|
4
|
+
CardContent,
|
|
5
|
+
CardDescription,
|
|
6
|
+
CardHeader,
|
|
7
|
+
CardTitle,
|
|
11
8
|
CurrencyAmount,
|
|
12
9
|
DataTable,
|
|
13
10
|
ServicePricingExplorer,
|
|
@@ -28,7 +25,14 @@ import {
|
|
|
28
25
|
getServicePricingSummaries,
|
|
29
26
|
getServicePricingSummary,
|
|
30
27
|
labelCadence
|
|
31
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-MPBOCUY4.js";
|
|
29
|
+
import {
|
|
30
|
+
BusiverseBrandHead,
|
|
31
|
+
applyBusiverseBrandHead
|
|
32
|
+
} from "./chunk-NN24XQYI.js";
|
|
33
|
+
import {
|
|
34
|
+
busiverseAssets
|
|
35
|
+
} from "./chunk-QK6O2RHQ.js";
|
|
32
36
|
import {
|
|
33
37
|
BusiverseI18nProvider,
|
|
34
38
|
RegionSelector,
|
|
@@ -45,19 +49,10 @@ import {
|
|
|
45
49
|
MarketingFeatureCard,
|
|
46
50
|
MarketingPricingCard,
|
|
47
51
|
MarketingSectionHeader
|
|
48
|
-
} from "./chunk-
|
|
49
|
-
import {
|
|
50
|
-
Button,
|
|
51
|
-
Card,
|
|
52
|
-
CardContent,
|
|
53
|
-
CardDescription,
|
|
54
|
-
CardHeader,
|
|
55
|
-
CardTitle
|
|
56
|
-
} from "./chunk-GRZVAWCA.js";
|
|
52
|
+
} from "./chunk-NUGBTLBK.js";
|
|
57
53
|
import {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
} from "./chunk-SZVGFEJG.js";
|
|
54
|
+
Button
|
|
55
|
+
} from "./chunk-IVTESKF4.js";
|
|
61
56
|
import {
|
|
62
57
|
BusiverseLogo
|
|
63
58
|
} from "./chunk-32FPZZH2.js";
|
|
@@ -71,6 +66,21 @@ import {
|
|
|
71
66
|
import {
|
|
72
67
|
cn
|
|
73
68
|
} from "./chunk-PYZVP4NI.js";
|
|
69
|
+
import {
|
|
70
|
+
busiverseColors,
|
|
71
|
+
busiverseContainers,
|
|
72
|
+
busiverseRadius,
|
|
73
|
+
busiverseSpacing,
|
|
74
|
+
busiverseTypography
|
|
75
|
+
} from "./chunk-SXD6EH2C.js";
|
|
76
|
+
|
|
77
|
+
// src/tokens/motion.ts
|
|
78
|
+
var busiverseMotion = {
|
|
79
|
+
fast: "150ms",
|
|
80
|
+
default: "200ms",
|
|
81
|
+
slow: "300ms",
|
|
82
|
+
easeStandard: "cubic-bezier(0.16, 1, 0.3, 1)"
|
|
83
|
+
};
|
|
74
84
|
|
|
75
85
|
// src/components/primitives/Input.tsx
|
|
76
86
|
import * as React from "react";
|
|
@@ -332,14 +342,6 @@ function UserMenu() {
|
|
|
332
342
|
/* @__PURE__ */ jsx16(Button, { size: "sm", variant: "ghost", onClick: () => void auth.signOut(), children: "Sign out" })
|
|
333
343
|
] });
|
|
334
344
|
}
|
|
335
|
-
|
|
336
|
-
// src/tokens/motion.ts
|
|
337
|
-
var busiverseMotion = {
|
|
338
|
-
fast: "150ms",
|
|
339
|
-
default: "200ms",
|
|
340
|
-
slow: "300ms",
|
|
341
|
-
easeStandard: "cubic-bezier(0.16, 1, 0.3, 1)"
|
|
342
|
-
};
|
|
343
345
|
export {
|
|
344
346
|
AppShell,
|
|
345
347
|
AuthSessionProvider,
|
|
@@ -385,6 +387,7 @@ export {
|
|
|
385
387
|
UsageQuotaBar,
|
|
386
388
|
UserMenu,
|
|
387
389
|
applyBusiverseBrandHead,
|
|
390
|
+
busiverseAssets,
|
|
388
391
|
busiverseColors,
|
|
389
392
|
busiverseContainers,
|
|
390
393
|
busiverseMotion,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marketing.d.ts","sourceRoot":"","sources":["../src/marketing.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC"}
|