markora-ui 0.1.0 → 0.1.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/README.md +4 -4
- package/dist/index.d.mts +1124 -0
- package/dist/index.d.ts +1124 -0
- package/dist/index.js +225 -217
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +225 -217
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -182,7 +182,7 @@ var buttonVariants = cva(
|
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
);
|
|
185
|
-
var
|
|
185
|
+
var Button = forwardRef(
|
|
186
186
|
({
|
|
187
187
|
children,
|
|
188
188
|
className,
|
|
@@ -222,7 +222,7 @@ var Button2 = forwardRef(
|
|
|
222
222
|
);
|
|
223
223
|
}
|
|
224
224
|
);
|
|
225
|
-
|
|
225
|
+
Button.displayName = "Button";
|
|
226
226
|
function LoadingSpinner({ className }) {
|
|
227
227
|
return /* @__PURE__ */ jsxs("svg", { className: cn("size-4 animate-spin", className), viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true", children: [
|
|
228
228
|
/* @__PURE__ */ jsx("circle", { className: "opacity-25", cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeWidth: "4" }),
|
|
@@ -245,7 +245,7 @@ function ActionBar({ actions, className, description, open = true, title, ...pro
|
|
|
245
245
|
title ? /* @__PURE__ */ jsx("p", { className: "text-sm font-semibold text-foreground", children: title }) : null,
|
|
246
246
|
description ? /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: description }) : null
|
|
247
247
|
] }),
|
|
248
|
-
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-2", children: actions.map((action, index) => /* @__PURE__ */ jsx(
|
|
248
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-2", children: actions.map((action, index) => /* @__PURE__ */ jsx(Button, { variant: action.variant ?? "primary", size: "sm", onClick: action.onClick, children: action.label }, index)) })
|
|
249
249
|
] })
|
|
250
250
|
}
|
|
251
251
|
) : null });
|
|
@@ -528,9 +528,9 @@ function AlertDialog({
|
|
|
528
528
|
...props,
|
|
529
529
|
onClose,
|
|
530
530
|
footer: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
531
|
-
/* @__PURE__ */ jsx(
|
|
531
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", onClick: onClose, children: cancelLabel }),
|
|
532
532
|
/* @__PURE__ */ jsx(
|
|
533
|
-
|
|
533
|
+
Button,
|
|
534
534
|
{
|
|
535
535
|
variant: actionVariant,
|
|
536
536
|
onClick: () => {
|
|
@@ -612,7 +612,7 @@ function Banner({ actionLabel, className, description, onAction, title, ...props
|
|
|
612
612
|
/* @__PURE__ */ jsx("p", { className: "text-sm font-semibold text-foreground", children: title }),
|
|
613
613
|
description ? /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: description }) : null
|
|
614
614
|
] }),
|
|
615
|
-
actionLabel ? /* @__PURE__ */ jsx(
|
|
615
|
+
actionLabel ? /* @__PURE__ */ jsx(Button, { size: "sm", onClick: onAction, children: actionLabel }) : null
|
|
616
616
|
] }) });
|
|
617
617
|
}
|
|
618
618
|
function Breadcrumb({ className, items, ...props }) {
|
|
@@ -639,9 +639,9 @@ function Calendar({ className, defaultValue, onValueChange, value, ...props }) {
|
|
|
639
639
|
};
|
|
640
640
|
return /* @__PURE__ */ jsxs("div", { className: cn("ui-surface w-full max-w-sm p-4", className), ...props, children: [
|
|
641
641
|
/* @__PURE__ */ jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
642
|
-
/* @__PURE__ */ jsx(
|
|
642
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", onClick: () => setViewDate(new Date(viewDate.getFullYear(), viewDate.getMonth() - 1, 1)), children: "Prev" }),
|
|
643
643
|
/* @__PURE__ */ jsx("div", { className: "text-sm font-semibold", children: monthLabel }),
|
|
644
|
-
/* @__PURE__ */ jsx(
|
|
644
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", onClick: () => setViewDate(new Date(viewDate.getFullYear(), viewDate.getMonth() + 1, 1)), children: "Next" })
|
|
645
645
|
] }),
|
|
646
646
|
/* @__PURE__ */ jsx("div", { className: "grid grid-cols-7 gap-1 text-center text-xs font-medium text-muted-foreground", children: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"].map((day) => /* @__PURE__ */ jsx("div", { className: "py-2", children: day }, day)) }),
|
|
647
647
|
/* @__PURE__ */ jsx("div", { className: "grid grid-cols-7 gap-1", children: days.map((day) => {
|
|
@@ -808,8 +808,8 @@ function Carousel({ ariaLabel = "Carousel", className, initialIndex = 0, items,
|
|
|
808
808
|
items.length
|
|
809
809
|
] }),
|
|
810
810
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
811
|
-
/* @__PURE__ */ jsx(
|
|
812
|
-
/* @__PURE__ */ jsx(
|
|
811
|
+
/* @__PURE__ */ jsx(Button, { size: "sm", variant: "outline", onClick: () => scrollToIndex(activeIndex - 1), disabled: !canGoPrev, children: "Prev" }),
|
|
812
|
+
/* @__PURE__ */ jsx(Button, { size: "sm", variant: "outline", onClick: () => scrollToIndex(activeIndex + 1), disabled: !canGoNext, children: "Next" })
|
|
813
813
|
] })
|
|
814
814
|
] }),
|
|
815
815
|
/* @__PURE__ */ jsx(
|
|
@@ -1128,7 +1128,7 @@ function Clipboard({ buttonLabel = "Copy", buttonVariant = "outline", label, onC
|
|
|
1128
1128
|
/* @__PURE__ */ jsx("p", { className: "truncate font-mono text-sm text-muted-foreground", children: value })
|
|
1129
1129
|
] }),
|
|
1130
1130
|
/* @__PURE__ */ jsx(
|
|
1131
|
-
|
|
1131
|
+
Button,
|
|
1132
1132
|
{
|
|
1133
1133
|
size: "sm",
|
|
1134
1134
|
variant: buttonVariant,
|
|
@@ -1719,16 +1719,16 @@ function DatePicker({ className, clearable = true, defaultValue, footer, onValue
|
|
|
1719
1719
|
Popover,
|
|
1720
1720
|
{
|
|
1721
1721
|
align: "start",
|
|
1722
|
-
trigger: /* @__PURE__ */ jsxs(
|
|
1722
|
+
trigger: /* @__PURE__ */ jsxs(Button, { variant: "outline", className: "min-w-56 justify-between", children: [
|
|
1723
1723
|
/* @__PURE__ */ jsx("span", { className: selectedDate ? "text-foreground" : "text-muted-foreground", children: formattedDate }),
|
|
1724
1724
|
/* @__PURE__ */ jsx("span", { "aria-hidden": "true", children: "??" })
|
|
1725
1725
|
] }),
|
|
1726
1726
|
content: /* @__PURE__ */ jsxs("div", { className: "space-y-3", children: [
|
|
1727
1727
|
/* @__PURE__ */ jsx(Calendar, { value: selectedDate, onValueChange: (date) => setDate(date) }),
|
|
1728
1728
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-3 px-1", children: [
|
|
1729
|
-
/* @__PURE__ */ jsx(
|
|
1729
|
+
/* @__PURE__ */ jsx(Button, { size: "sm", variant: "outline", onClick: () => setDate(/* @__PURE__ */ new Date()), children: "Today" }),
|
|
1730
1730
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
1731
|
-
clearable ? /* @__PURE__ */ jsx(
|
|
1731
|
+
clearable ? /* @__PURE__ */ jsx(Button, { size: "sm", variant: "outline", onClick: () => setDate(void 0), children: "Clear" }) : null,
|
|
1732
1732
|
footer
|
|
1733
1733
|
] })
|
|
1734
1734
|
] })
|
|
@@ -1916,7 +1916,7 @@ function EmptyState({ action, className, description, icon, title, ...props }) {
|
|
|
1916
1916
|
/* @__PURE__ */ jsx("h3", { className: "text-lg font-semibold tracking-tight", children: title }),
|
|
1917
1917
|
description ? /* @__PURE__ */ jsx("p", { className: "max-w-md text-sm leading-6 text-muted-foreground", children: description }) : null
|
|
1918
1918
|
] }),
|
|
1919
|
-
action ?? /* @__PURE__ */ jsx(
|
|
1919
|
+
action ?? /* @__PURE__ */ jsx(Button, { size: "sm", children: "Create item" })
|
|
1920
1920
|
] });
|
|
1921
1921
|
}
|
|
1922
1922
|
function FeatureCard({ actionLabel, className, description, icon, title, ...props }) {
|
|
@@ -1926,7 +1926,7 @@ function FeatureCard({ actionLabel, className, description, icon, title, ...prop
|
|
|
1926
1926
|
/* @__PURE__ */ jsx("h3", { className: "text-lg font-semibold tracking-tight text-foreground", children: title }),
|
|
1927
1927
|
/* @__PURE__ */ jsx("p", { className: "text-sm leading-6 text-muted-foreground", children: description })
|
|
1928
1928
|
] }),
|
|
1929
|
-
actionLabel ? /* @__PURE__ */ jsx(
|
|
1929
|
+
actionLabel ? /* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", children: actionLabel }) : null
|
|
1930
1930
|
] });
|
|
1931
1931
|
}
|
|
1932
1932
|
function Field({ children, className, error, hint, label, ...props }) {
|
|
@@ -1970,7 +1970,7 @@ var IconButton = forwardRef(
|
|
|
1970
1970
|
({ className, icon, isRound = false, size = "md", variant = "outline", ...props }, ref) => {
|
|
1971
1971
|
const sizeClass = size === "sm" ? "w-9" : size === "lg" ? "w-11" : "w-10";
|
|
1972
1972
|
return /* @__PURE__ */ jsx(
|
|
1973
|
-
|
|
1973
|
+
Button,
|
|
1974
1974
|
{
|
|
1975
1975
|
ref,
|
|
1976
1976
|
size,
|
|
@@ -2309,9 +2309,9 @@ function NavigationMenu({ className, defaultValue, items, onValueChange, value,
|
|
|
2309
2309
|
function Pagination({ className, currentPage, onPageChange, totalPages, ...props }) {
|
|
2310
2310
|
const pages = Array.from({ length: totalPages }, (_, index) => index + 1);
|
|
2311
2311
|
return /* @__PURE__ */ jsxs("nav", { "aria-label": "Pagination", className: cn("flex items-center gap-2", className), ...props, children: [
|
|
2312
|
-
/* @__PURE__ */ jsx(
|
|
2312
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", disabled: currentPage <= 1, onClick: () => onPageChange?.(currentPage - 1), children: "Previous" }),
|
|
2313
2313
|
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-2", children: pages.map((page) => /* @__PURE__ */ jsx(
|
|
2314
|
-
|
|
2314
|
+
Button,
|
|
2315
2315
|
{
|
|
2316
2316
|
variant: page === currentPage ? "primary" : "outline",
|
|
2317
2317
|
size: "sm",
|
|
@@ -2321,7 +2321,7 @@ function Pagination({ className, currentPage, onPageChange, totalPages, ...props
|
|
|
2321
2321
|
},
|
|
2322
2322
|
page
|
|
2323
2323
|
)) }),
|
|
2324
|
-
/* @__PURE__ */ jsx(
|
|
2324
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", disabled: currentPage >= totalPages, onClick: () => onPageChange?.(currentPage + 1), children: "Next" })
|
|
2325
2325
|
] });
|
|
2326
2326
|
}
|
|
2327
2327
|
function PricingCard({ className, ctaLabel, description, features, highlighted = false, name, price, ...props }) {
|
|
@@ -2338,7 +2338,7 @@ function PricingCard({ className, ctaLabel, description, features, highlighted =
|
|
|
2338
2338
|
/* @__PURE__ */ jsx("span", { className: "mt-1 text-primary", children: "\uFFFD" }),
|
|
2339
2339
|
/* @__PURE__ */ jsx("span", { children: feature })
|
|
2340
2340
|
] }, index)) }),
|
|
2341
|
-
/* @__PURE__ */ jsx(
|
|
2341
|
+
/* @__PURE__ */ jsx(Button, { variant: highlighted ? "primary" : "outline", fullWidth: true, children: ctaLabel })
|
|
2342
2342
|
] });
|
|
2343
2343
|
}
|
|
2344
2344
|
var trackVariants = cva("relative w-full overflow-hidden rounded-full bg-muted", {
|
|
@@ -2750,7 +2750,7 @@ function Sidebar({
|
|
|
2750
2750
|
children: [
|
|
2751
2751
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-2", children: [
|
|
2752
2752
|
/* @__PURE__ */ jsx("div", { className: "min-w-0 flex-1", children: header }),
|
|
2753
|
-
/* @__PURE__ */ jsx(
|
|
2753
|
+
/* @__PURE__ */ jsx(Button, { size: "sm", variant: "outline", "aria-label": isCollapsed ? "Expand sidebar" : "Collapse sidebar", onClick: () => setCollapsed(!isCollapsed), children: isCollapsed ? "Open" : "Close" })
|
|
2754
2754
|
] }),
|
|
2755
2755
|
/* @__PURE__ */ jsx("nav", { className: "flex-1 space-y-4", "aria-label": "Sidebar navigation", children: resolvedSections.map((section, sectionIndex) => /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
2756
2756
|
section.title && !isCollapsed ? /* @__PURE__ */ jsx("p", { className: "px-2 text-xs font-semibold uppercase tracking-[0.16em] text-muted-foreground", children: section.title }) : null,
|
|
@@ -3329,7 +3329,7 @@ function ThemeToggle({ className, ...props }) {
|
|
|
3329
3329
|
}
|
|
3330
3330
|
return theme === "dark" ? "Switch to light mode" : "Switch to dark mode";
|
|
3331
3331
|
}, [theme, themePreference]);
|
|
3332
|
-
return /* @__PURE__ */ jsx(
|
|
3332
|
+
return /* @__PURE__ */ jsx(Button, { variant: "outline", size: "sm", className: cn("h-9 gap-2", className), onClick: toggleTheme, ...props, children: buttonLabel });
|
|
3333
3333
|
}
|
|
3334
3334
|
function easeOutExpo(t) {
|
|
3335
3335
|
return t === 1 ? 1 : 1 - Math.pow(2, -10 * t);
|
|
@@ -3672,7 +3672,7 @@ function FileUpload({
|
|
|
3672
3672
|
maxFiles = 1,
|
|
3673
3673
|
maxSizeBytes,
|
|
3674
3674
|
icon,
|
|
3675
|
-
|
|
3675
|
+
label = "Drop files here or click to upload",
|
|
3676
3676
|
description,
|
|
3677
3677
|
disabled,
|
|
3678
3678
|
invalid,
|
|
@@ -3744,7 +3744,7 @@ function FileUpload({
|
|
|
3744
3744
|
),
|
|
3745
3745
|
/* @__PURE__ */ jsx("div", { className: "flex size-12 items-center justify-center rounded-full bg-muted text-muted-foreground", children: icon ?? /* @__PURE__ */ jsx("svg", { className: "size-6", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: 1.5, children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" }) }) }),
|
|
3746
3746
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
3747
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm font-medium text-foreground", children:
|
|
3747
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm font-medium text-foreground", children: label }),
|
|
3748
3748
|
description && /* @__PURE__ */ jsx("p", { className: "mt-1 text-xs text-muted-foreground", children: description }),
|
|
3749
3749
|
!description && maxSizeBytes && /* @__PURE__ */ jsxs("p", { className: "mt-1 text-xs text-muted-foreground", children: [
|
|
3750
3750
|
"Max file size: ",
|
|
@@ -4908,7 +4908,7 @@ function AugmentedProgressRing({ progress = 72, className, ...props }) {
|
|
|
4908
4908
|
}
|
|
4909
4909
|
function ProductShowcaseCarousel({
|
|
4910
4910
|
items = [
|
|
4911
|
-
{ title: "
|
|
4911
|
+
{ title: "MarkoraLens", tag: "AI" },
|
|
4912
4912
|
{ title: "Nova Suite", tag: "Cloud" },
|
|
4913
4913
|
{ title: "Pulse Flow", tag: "Design" }
|
|
4914
4914
|
],
|
|
@@ -5239,7 +5239,7 @@ function AuthFlipCard({ initialMode = "login" }) {
|
|
|
5239
5239
|
" user"
|
|
5240
5240
|
] }),
|
|
5241
5241
|
/* @__PURE__ */ jsx(
|
|
5242
|
-
|
|
5242
|
+
Button,
|
|
5243
5243
|
{
|
|
5244
5244
|
variant: "outline",
|
|
5245
5245
|
size: "sm",
|
|
@@ -5262,9 +5262,9 @@ function AuthFlipCard({ initialMode = "login" }) {
|
|
|
5262
5262
|
/* @__PURE__ */ jsxs("div", { className: "mt-6 flex items-center justify-between gap-4", children: [
|
|
5263
5263
|
/* @__PURE__ */ jsx(Checkbox, { id: "remember", className: "size-5 rounded-lg border-white/10 text-primary" }),
|
|
5264
5264
|
/* @__PURE__ */ jsx("label", { htmlFor: "remember", className: "text-sm font-medium text-muted-foreground", children: "Remember me" }),
|
|
5265
|
-
/* @__PURE__ */ jsx(
|
|
5265
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", className: "text-primary font-black p-0 h-auto", children: "Forgot password?" })
|
|
5266
5266
|
] }),
|
|
5267
|
-
/* @__PURE__ */ jsx(
|
|
5267
|
+
/* @__PURE__ */ jsx(Button, { size: "lg", className: "mt-8 w-full rounded-2xl bg-primary text-background font-black shadow-glow", children: "Continue to dashboard" }),
|
|
5268
5268
|
/* @__PURE__ */ jsx("div", { className: "mt-8 border-t border-white/10 pt-6 text-center text-sm text-muted-foreground", children: "Sign in with your organization" })
|
|
5269
5269
|
] }),
|
|
5270
5270
|
/* @__PURE__ */ jsxs(
|
|
@@ -5285,7 +5285,7 @@ function AuthFlipCard({ initialMode = "login" }) {
|
|
|
5285
5285
|
/* @__PURE__ */ jsx(Checkbox, { id: "agree", className: "size-5 rounded-lg border-white/10 text-primary" }),
|
|
5286
5286
|
/* @__PURE__ */ jsx("label", { htmlFor: "agree", className: "text-sm font-medium text-muted-foreground", children: "I agree to terms and privacy." })
|
|
5287
5287
|
] }),
|
|
5288
|
-
/* @__PURE__ */ jsx(
|
|
5288
|
+
/* @__PURE__ */ jsx(Button, { size: "lg", className: "mt-8 w-full rounded-2xl bg-cyan-500 text-slate-950 font-black shadow-glow", children: "Create account" }),
|
|
5289
5289
|
/* @__PURE__ */ jsx("div", { className: "mt-8 grid gap-3 text-center text-sm text-muted-foreground", children: /* @__PURE__ */ jsx("p", { children: "Instant setup with secure workspace onboarding." }) })
|
|
5290
5290
|
]
|
|
5291
5291
|
}
|
|
@@ -5494,7 +5494,7 @@ function MarketingNavbar() {
|
|
|
5494
5494
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 group cursor-pointer", children: [
|
|
5495
5495
|
/* @__PURE__ */ jsx("div", { className: "size-10 flex items-center justify-center rounded-xl bg-primary text-primary-foreground font-black shadow-glow group-hover:scale-110 transition-transform", children: "A" }),
|
|
5496
5496
|
/* @__PURE__ */ jsxs("div", { className: "hidden sm:block text-left", children: [
|
|
5497
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground", children: "
|
|
5497
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground", children: "MarkoraUI" }),
|
|
5498
5498
|
/* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground uppercase tracking-widest font-medium", children: "Design System" })
|
|
5499
5499
|
] })
|
|
5500
5500
|
] }),
|
|
@@ -5512,7 +5512,7 @@ function MarketingNavbar() {
|
|
|
5512
5512
|
)) }),
|
|
5513
5513
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
5514
5514
|
/* @__PURE__ */ jsx(
|
|
5515
|
-
|
|
5515
|
+
Button,
|
|
5516
5516
|
{
|
|
5517
5517
|
variant: "ghost",
|
|
5518
5518
|
size: "sm",
|
|
@@ -5522,8 +5522,8 @@ function MarketingNavbar() {
|
|
|
5522
5522
|
}
|
|
5523
5523
|
),
|
|
5524
5524
|
/* @__PURE__ */ jsx("div", { className: "hidden sm:block h-6 w-px bg-border/50 mx-1" }),
|
|
5525
|
-
/* @__PURE__ */ jsx(
|
|
5526
|
-
/* @__PURE__ */ jsx(
|
|
5525
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", className: "hidden sm:inline-flex", children: "Log in" }),
|
|
5526
|
+
/* @__PURE__ */ jsx(Button, { variant: "gradient", size: "sm", className: "shadow-glow-sm", children: "Get Started" })
|
|
5527
5527
|
] })
|
|
5528
5528
|
] })
|
|
5529
5529
|
}
|
|
@@ -5570,7 +5570,7 @@ function MarketingFooter() {
|
|
|
5570
5570
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
5571
5571
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 mb-4", children: [
|
|
5572
5572
|
/* @__PURE__ */ jsx("div", { className: "size-10 flex items-center justify-center rounded-xl bg-primary text-primary-foreground font-black shadow-glow", children: "A" }),
|
|
5573
|
-
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-xl font-bold font-display tracking-tight text-foreground", children: "
|
|
5573
|
+
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-xl font-bold font-display tracking-tight text-foreground", children: "MarkoraUI" })
|
|
5574
5574
|
] }),
|
|
5575
5575
|
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground leading-relaxed", children: "The definitive UI library for product teams that demand polish and power without overhead. Designed in London, built for the world." })
|
|
5576
5576
|
] }),
|
|
@@ -5578,7 +5578,7 @@ function MarketingFooter() {
|
|
|
5578
5578
|
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "font-bold text-sm", children: "Subscribe to core engineering updates" }),
|
|
5579
5579
|
/* @__PURE__ */ jsxs("div", { className: "flex gap-2 items-end", children: [
|
|
5580
5580
|
/* @__PURE__ */ jsx(InputField, { label: "Email Address", placeholder: "Email Address", className: "bg-background/50 h-10" }),
|
|
5581
|
-
/* @__PURE__ */ jsx(
|
|
5581
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-10 px-6 font-bold shadow-glow-sm", children: "Join Beta" })
|
|
5582
5582
|
] }),
|
|
5583
5583
|
/* @__PURE__ */ jsx("p", { className: "text-[10px] text-muted-foreground", children: "No spam. Only product announcements and ecosystem logs." })
|
|
5584
5584
|
] })
|
|
@@ -5603,7 +5603,7 @@ function MarketingFooter() {
|
|
|
5603
5603
|
] }),
|
|
5604
5604
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
5605
5605
|
/* @__PURE__ */ jsx(Badge, { variant: "outline", className: "text-[9px] uppercase font-black py-0.5 tracking-widest bg-muted/40 opacity-70", children: "Region: Europe/London" }),
|
|
5606
|
-
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground opacity-60", children: "\xA9 2026
|
|
5606
|
+
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground opacity-60", children: "\xA9 2026 MarkoraFoundation. Built with intent." })
|
|
5607
5607
|
] })
|
|
5608
5608
|
] })
|
|
5609
5609
|
] })
|
|
@@ -5634,18 +5634,18 @@ function SaaSHero() {
|
|
|
5634
5634
|
] }),
|
|
5635
5635
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground text-lg md:text-2xl max-w-2xl mx-auto font-medium opacity-80 decoration-primary/20 decoration-2 italic", children: "Architecture for high-stakes platforms. From sub-millisecond peering to sensory motion primitives, built on top of our regional mesh." }),
|
|
5636
5636
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row items-center justify-center gap-6 pt-10 animate-fade-up", style: { animationDelay: "300ms" }, children: [
|
|
5637
|
-
/* @__PURE__ */ jsxs(
|
|
5637
|
+
/* @__PURE__ */ jsxs(Button, { variant: "primary", size: "lg", className: "h-18 px-14 text-xl font-black shadow-glow bg-foreground text-background rounded-3xl hover:scale-105 transition-all group overflow-hidden", children: [
|
|
5638
5638
|
"Initialize Protocol",
|
|
5639
5639
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-x-0 bottom-0 h-0.5 bg-primary/40 group-hover:h-full transition-all duration-500 opacity-20" })
|
|
5640
5640
|
] }),
|
|
5641
|
-
/* @__PURE__ */ jsx(
|
|
5641
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-18 px-12 text-lg font-bold border-2 border-border/40 rounded-3xl hover:bg-muted/30 hover:border-primary/40 transition-all font-mono", children: "--read docs" })
|
|
5642
5642
|
] })
|
|
5643
5643
|
] }),
|
|
5644
5644
|
/* @__PURE__ */ jsxs("div", { className: "mt-40 w-full max-w-6xl px-6 relative group animate-fade-up", style: { animationDelay: "600ms" }, children: [
|
|
5645
5645
|
/* @__PURE__ */ jsxs("div", { className: "relative rounded-[4.5rem] border border-border/60 bg-muted/10 backdrop-blur-3xl aspect-video overflow-hidden shadow-2xl scale-95 group-hover:scale-100 transition-transform duration-1000", children: [
|
|
5646
5646
|
/* @__PURE__ */ jsx(BorderBeam, { duration: 15, delay: 10, size: 500, className: "opacity-40" }),
|
|
5647
5647
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 bg-gradient-to-br from-primary/[0.03] to-transparent opacity-60" }),
|
|
5648
|
-
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center text-muted-foreground/10 italic font-black text-3xl select-none group-hover:text-primary/10 transition-colors", children: "
|
|
5648
|
+
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center text-muted-foreground/10 italic font-black text-3xl select-none group-hover:text-primary/10 transition-colors", children: "MarkoraWorkspace Console v2.0" }),
|
|
5649
5649
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-x-20 inset-y-20 border-2 border-dashed border-border/20 rounded-[3rem] opacity-40 group-hover:opacity-80 transition-opacity" })
|
|
5650
5650
|
] }),
|
|
5651
5651
|
/* @__PURE__ */ jsx("div", { className: "absolute -top-12 -right-12 size-64 rounded-full bg-primary/10 blur-[100px] opacity-0 group-hover:opacity-100 transition-opacity duration-[2000ms]" }),
|
|
@@ -5697,7 +5697,7 @@ function AetherPulseHero() {
|
|
|
5697
5697
|
] })
|
|
5698
5698
|
] }),
|
|
5699
5699
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row items-center justify-center gap-6 pt-8 animate-fade-up", style: { animationDelay: "300ms" }, children: [
|
|
5700
|
-
/* @__PURE__ */ jsxs(
|
|
5700
|
+
/* @__PURE__ */ jsxs(Button, { variant: "primary", size: "lg", className: "h-18 px-14 text-xl font-black shadow-glow bg-foreground text-background rounded-[2rem] hover:scale-105 transition-transform group overflow-hidden", children: [
|
|
5701
5701
|
/* @__PURE__ */ jsx("span", { className: "relative z-10", children: "Deploy Infrastructure" }),
|
|
5702
5702
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-x-0 bottom-0 h-1 bg-primary/40 group-hover:h-full transition-all duration-500 opacity-20" })
|
|
5703
5703
|
] }),
|
|
@@ -5742,7 +5742,7 @@ function AetherPulseHero() {
|
|
|
5742
5742
|
"Peering."
|
|
5743
5743
|
] }),
|
|
5744
5744
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-xl", children: "Deploy nodes globally with integrated p99 monitoring. Our sensory engine adapts in real-time to network congestion." }),
|
|
5745
|
-
/* @__PURE__ */ jsx(
|
|
5745
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-14 px-10 rounded-2xl font-bold border-2 border-border/60", children: "Explore the Protocol" })
|
|
5746
5746
|
] }),
|
|
5747
5747
|
/* @__PURE__ */ jsxs("div", { className: "relative h-[500px] rounded-[3.5rem] border-2 border-border/40 bg-muted/20 overflow-hidden group", children: [
|
|
5748
5748
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 bg-[radial-gradient(circle_at_center,hsl(var(--primary)/0.1),transparent)] group-hover:scale-150 transition-transform duration-1000" }),
|
|
@@ -5777,8 +5777,8 @@ function NeonAgencyGrid() {
|
|
|
5777
5777
|
] }),
|
|
5778
5778
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-white/60 text-xl font-medium max-w-2xl mx-auto px-6", children: "We design and build the world's most performant digital interfaces for the AI-first era." }),
|
|
5779
5779
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center gap-6 pt-4", children: [
|
|
5780
|
-
/* @__PURE__ */ jsx(
|
|
5781
|
-
/* @__PURE__ */ jsx(
|
|
5780
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-16 px-12 rounded-2xl font-black text-lg bg-success hover:bg-success/80 text-background shadow-[0_0_30px_rgba(34,197,94,0.3)]", children: "Partner with us" }),
|
|
5781
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-16 px-10 rounded-2xl font-bold border-white/20 text-white hover:bg-white/5", children: "View Latest Work" })
|
|
5782
5782
|
] })
|
|
5783
5783
|
] }) }),
|
|
5784
5784
|
/* @__PURE__ */ jsx("div", { className: "w-full py-16 opacity-30 group hover:opacity-60 transition-opacity border-y border-white/10 bg-white/[0.02]", children: /* @__PURE__ */ jsx(Marquee, { className: "[--duration:30s]", children: ["NETLIFY", "VERCEL", "LINEAR", "STRIPE", "UBER", "REPLIT", "RAILWAY", "SUPABASE"].map((client) => /* @__PURE__ */ jsx("span", { className: "mx-16 text-3xl font-black tracking-tighter italic", children: client }, client)) }) }),
|
|
@@ -5828,8 +5828,8 @@ function NeonAgencyGrid() {
|
|
|
5828
5828
|
] }),
|
|
5829
5829
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-black/60 max-w-2xl mx-auto font-medium text-lg md:text-2xl", children: "Partner with our engineering group to design the next era of your sensory platform." }),
|
|
5830
5830
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row gap-4 pt-4", children: [
|
|
5831
|
-
/* @__PURE__ */ jsx(
|
|
5832
|
-
/* @__PURE__ */ jsx(
|
|
5831
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-20 px-16 text-xl font-black bg-black text-white rounded-[2rem] hover:scale-105 transition-transform shadow-[0_20px_50px_rgba(0,0,0,0.2)]", children: "Schedule Call" }),
|
|
5832
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-20 px-12 text-xl font-bold border-black/10 text-black hover:bg-black/5 rounded-[2rem]", children: "Download Catalog" })
|
|
5833
5833
|
] })
|
|
5834
5834
|
] })
|
|
5835
5835
|
] }),
|
|
@@ -5865,12 +5865,12 @@ function DevNexusLanding() {
|
|
|
5865
5865
|
{
|
|
5866
5866
|
label: "",
|
|
5867
5867
|
placeholder: "npm install aether-nexus-core",
|
|
5868
|
-
defaultValue: "npx
|
|
5868
|
+
defaultValue: "npx Markoracreate ./my-platform",
|
|
5869
5869
|
className: "flex-1 border-none bg-transparent outline-none text-slate-900 font-mono font-bold text-lg h-14"
|
|
5870
5870
|
}
|
|
5871
5871
|
)
|
|
5872
5872
|
] }),
|
|
5873
|
-
/* @__PURE__ */ jsx(
|
|
5873
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-14 px-10 rounded-2xl font-black text-base bg-indigo-600 hover:bg-indigo-700 text-white shadow-lg shadow-indigo-600/20 active:scale-95 transition-transform group-hover:px-12 duration-500", children: "Run Command" })
|
|
5874
5874
|
] }),
|
|
5875
5875
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-center gap-8 mt-8 text-[11px] font-black uppercase tracking-widest text-slate-400", children: [
|
|
5876
5876
|
/* @__PURE__ */ jsxs("span", { className: "flex items-center gap-2 group-hover:text-indigo-500 transition-colors cursor-pointer", children: [
|
|
@@ -5924,7 +5924,7 @@ function DevNexusLanding() {
|
|
|
5924
5924
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-slate-500 font-medium leading-relaxed", children: f.d })
|
|
5925
5925
|
] })
|
|
5926
5926
|
] }, f.t)) }),
|
|
5927
|
-
/* @__PURE__ */ jsx(
|
|
5927
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-16 px-10 rounded-2xl font-black text-base border-slate-200 hover:border-indigo-600 hover:text-indigo-600 bg-white transition-all", children: "Technical Protocol Manifest" })
|
|
5928
5928
|
] })
|
|
5929
5929
|
] }) }),
|
|
5930
5930
|
/* @__PURE__ */ jsxs("section", { className: "w-full py-24 bg-white border-y border-slate-100", children: [
|
|
@@ -5971,7 +5971,7 @@ function BlogMagazineLayout() {
|
|
|
5971
5971
|
/* @__PURE__ */ jsx(MarketingNavbar, {}),
|
|
5972
5972
|
/* @__PURE__ */ jsxs("main", { className: "relative z-10 w-full pt-16", children: [
|
|
5973
5973
|
/* @__PURE__ */ jsxs("section", { className: "px-6 pt-24 pb-16 max-w-7xl mx-auto text-center space-y-8 border-b border-border/40", children: [
|
|
5974
|
-
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full px-5 py-1.5 font-black uppercase text-[10px] tracking-[0.25em] border-primary/20", children: "The
|
|
5974
|
+
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full px-5 py-1.5 font-black uppercase text-[10px] tracking-[0.25em] border-primary/20", children: "The MarkoraJournal" }),
|
|
5975
5975
|
/* @__PURE__ */ jsxs(Typography, { variant: "display", className: "text-6xl md:text-9xl font-black tracking-tighter leading-none italic lowercase", children: [
|
|
5976
5976
|
"think ",
|
|
5977
5977
|
/* @__PURE__ */ jsx("span", { className: "ui-gradient-text font-black not-italic underline decoration-2 underline-offset-[20px] decoration-primary/40", children: "deeper." })
|
|
@@ -5979,7 +5979,7 @@ function BlogMagazineLayout() {
|
|
|
5979
5979
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground max-w-2xl mx-auto font-medium text-lg opacity-80", children: "Dispatches from the frontier of engineering, design, and the machines that think alongside us." }),
|
|
5980
5980
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row items-center justify-center gap-3 max-w-md mx-auto pt-4", children: [
|
|
5981
5981
|
/* @__PURE__ */ jsx(InputField, { label: "", placeholder: "your@dispatch.io", className: "flex-1 h-12 rounded-2xl bg-background border-border/60 text-sm" }),
|
|
5982
|
-
/* @__PURE__ */ jsx(
|
|
5982
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-12 px-6 rounded-2xl font-black bg-foreground text-background whitespace-nowrap", children: "Subscribe Free" })
|
|
5983
5983
|
] }),
|
|
5984
5984
|
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap items-center justify-center gap-3 pt-4", children: categories.map((cat) => /* @__PURE__ */ jsx(
|
|
5985
5985
|
"button",
|
|
@@ -6016,7 +6016,7 @@ function BlogMagazineLayout() {
|
|
|
6016
6016
|
featuredPost.readTime
|
|
6017
6017
|
] })
|
|
6018
6018
|
] }),
|
|
6019
|
-
/* @__PURE__ */ jsx(
|
|
6019
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "ml-auto h-10 px-6 rounded-2xl font-black text-xs uppercase tracking-widest border-border/60 group-hover:border-primary group-hover:text-primary transition-all", children: "Read Now \u2192" })
|
|
6020
6020
|
] })
|
|
6021
6021
|
] })
|
|
6022
6022
|
] }) }),
|
|
@@ -6034,7 +6034,7 @@ function BlogMagazineLayout() {
|
|
|
6034
6034
|
")"
|
|
6035
6035
|
] })
|
|
6036
6036
|
] }),
|
|
6037
|
-
/* @__PURE__ */ jsx(
|
|
6037
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", className: "font-black text-xs uppercase tracking-widest text-primary", children: "View Archive \u2192" })
|
|
6038
6038
|
] }),
|
|
6039
6039
|
/* @__PURE__ */ jsx("div", { className: "grid gap-6 md:grid-cols-2 lg:grid-cols-3", children: filtered.map((post, i) => /* @__PURE__ */ jsxs(
|
|
6040
6040
|
Card,
|
|
@@ -6059,7 +6059,7 @@ function BlogMagazineLayout() {
|
|
|
6059
6059
|
},
|
|
6060
6060
|
post.title
|
|
6061
6061
|
)) }),
|
|
6062
|
-
/* @__PURE__ */ jsx("div", { className: "flex justify-center mt-16", children: /* @__PURE__ */ jsx(
|
|
6062
|
+
/* @__PURE__ */ jsx("div", { className: "flex justify-center mt-16", children: /* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-14 px-12 rounded-2xl font-black text-sm uppercase tracking-widest border-border/60 hover:border-primary/40 transition-all", children: "Load More Dispatches" }) })
|
|
6063
6063
|
] })
|
|
6064
6064
|
] }),
|
|
6065
6065
|
/* @__PURE__ */ jsx(MarketingFooter, {})
|
|
@@ -6103,7 +6103,7 @@ function FeatureBentoGrid() {
|
|
|
6103
6103
|
/* @__PURE__ */ jsx("span", { className: "italic underline underline-offset-[20px] decoration-primary/40 font-black", children: "power" }),
|
|
6104
6104
|
" in every primitive."
|
|
6105
6105
|
] }),
|
|
6106
|
-
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-lg md:text-2xl tracking-tight max-w-2xl mx-auto", children: "
|
|
6106
|
+
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-lg md:text-2xl tracking-tight max-w-2xl mx-auto", children: "MarkoraUI surfaces are built to handle high-density data while maintaining a premium, high-fidelity aesthetic." })
|
|
6107
6107
|
] }),
|
|
6108
6108
|
/* @__PURE__ */ jsx("div", { className: "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 w-full animate-fade-up", style: { animationDelay: "200ms" }, children: features.map((feature, i) => /* @__PURE__ */ jsxs(
|
|
6109
6109
|
Card,
|
|
@@ -6124,7 +6124,7 @@ function FeatureBentoGrid() {
|
|
|
6124
6124
|
},
|
|
6125
6125
|
i
|
|
6126
6126
|
)) }),
|
|
6127
|
-
/* @__PURE__ */ jsx("div", { className: "pt-8 text-center animate-fade-in [animation-delay:400ms]", children: /* @__PURE__ */ jsx(
|
|
6127
|
+
/* @__PURE__ */ jsx("div", { className: "pt-8 text-center animate-fade-in [animation-delay:400ms]", children: /* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-20 px-16 rounded-[2.5rem] text-xl font-black italic shadow-glow-sm border-border/60", children: "Explore API Component Map" }) })
|
|
6128
6128
|
] }),
|
|
6129
6129
|
/* @__PURE__ */ jsx(MarketingFooter, {})
|
|
6130
6130
|
] });
|
|
@@ -6168,7 +6168,7 @@ function PremiumPricing() {
|
|
|
6168
6168
|
/* @__PURE__ */ jsx("div", { className: "size-5 rounded-full bg-success/10 border border-success/40 flex items-center justify-center text-success group-hover/item:bg-success group-hover/item:text-white transition-all", children: /* @__PURE__ */ jsx("svg", { className: "size-3.5", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, children: /* @__PURE__ */ jsx("path", { d: "m20 6-11 11-5-5" }) }) }),
|
|
6169
6169
|
/* @__PURE__ */ jsx("p", { className: "text-sm font-medium text-foreground/80", children: f })
|
|
6170
6170
|
] }, f)) }),
|
|
6171
|
-
/* @__PURE__ */ jsx(
|
|
6171
|
+
/* @__PURE__ */ jsx(Button, { variant: tier.active ? "primary" : "outline", size: "lg", className: `h-16 w-full rounded-2xl font-black text-lg ${tier.active ? "shadow-glow bg-foreground text-background" : "border-border/60"} transition-all`, children: "Get Started Now" })
|
|
6172
6172
|
] }, tier.name)) }) })
|
|
6173
6173
|
] }),
|
|
6174
6174
|
/* @__PURE__ */ jsx(MarketingFooter, {})
|
|
@@ -6179,13 +6179,13 @@ function WallOfLove() {
|
|
|
6179
6179
|
{
|
|
6180
6180
|
name: "Sarah Drasner",
|
|
6181
6181
|
role: "VP Engineering, Netlify",
|
|
6182
|
-
content: "The depth of the
|
|
6182
|
+
content: "The depth of the MarkoraUI system is unparalleled. We were able to ship our new dashboard 4 weeks ahead of schedule with better fidelity than we could have built manually.",
|
|
6183
6183
|
avatar: "SD"
|
|
6184
6184
|
},
|
|
6185
6185
|
{
|
|
6186
6186
|
name: "Guillermo Rauch",
|
|
6187
6187
|
role: "CEO, Vercel",
|
|
6188
|
-
content: "
|
|
6188
|
+
content: "MarkoraUI represents the next generation of sensory web design. It is not just a component library; it is a framework for high-performance visual storytelling.",
|
|
6189
6189
|
avatar: "GR"
|
|
6190
6190
|
},
|
|
6191
6191
|
{
|
|
@@ -6197,7 +6197,7 @@ function WallOfLove() {
|
|
|
6197
6197
|
{
|
|
6198
6198
|
name: "Rauno Freiberg",
|
|
6199
6199
|
role: "Design Engineer, Linear",
|
|
6200
|
-
content: "Finally, a library that understands the nuances of light, depth, and micro-interactions. The
|
|
6200
|
+
content: "Finally, a library that understands the nuances of light, depth, and micro-interactions. The Markorateam has set a new bar for the industry.",
|
|
6201
6201
|
avatar: "RF"
|
|
6202
6202
|
}
|
|
6203
6203
|
];
|
|
@@ -6233,7 +6233,7 @@ function WallOfLove() {
|
|
|
6233
6233
|
] }, i)) }),
|
|
6234
6234
|
/* @__PURE__ */ jsxs("div", { className: "mt-32 p-20 rounded-[4rem] bg-foreground text-background text-center space-y-12 animate-fade-up", children: [
|
|
6235
6235
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-4xl md:text-6xl font-black tracking-tighter italic", children: "Ready to join the leaders?" }),
|
|
6236
|
-
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-16 px-12 rounded-3xl font-black text-lg border-background/20 hover:bg-background hover:text-foreground transition-all", children: "Start your
|
|
6236
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-16 px-12 rounded-3xl font-black text-lg border-background/20 hover:bg-background hover:text-foreground transition-all", children: "Start your Markorajourney" })
|
|
6237
6237
|
] })
|
|
6238
6238
|
] })
|
|
6239
6239
|
] }),
|
|
@@ -6260,8 +6260,8 @@ function CosmicLaunchPage() {
|
|
|
6260
6260
|
/* @__PURE__ */ jsx(Typography, { className: "mx-auto max-w-3xl text-lg text-slate-300 leading-8", children: "CosmicLaunch is a premium marketing surface built for modern SaaS and digital products. Use it to showcase feature-rich offerings, design systems, and experiential brand launches." })
|
|
6261
6261
|
] }),
|
|
6262
6262
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center gap-4 sm:flex-row", children: [
|
|
6263
|
-
/* @__PURE__ */ jsx(
|
|
6264
|
-
/* @__PURE__ */ jsx(
|
|
6263
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-10 py-4 text-lg font-black shadow-[0_24px_80px_rgba(59,130,246,0.22)]", children: "Activate Launch Mode" }),
|
|
6264
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "rounded-full px-10 py-4 text-lg text-white/80 border-white/20 hover:border-primary/40", children: "View Demo Kit" })
|
|
6265
6265
|
] }),
|
|
6266
6266
|
/* @__PURE__ */ jsx("div", { className: "grid gap-6 lg:grid-cols-3", children: [
|
|
6267
6267
|
{ label: "Realtime visuals", value: "3D motion-ready UI", tone: "text-primary" },
|
|
@@ -6284,7 +6284,7 @@ function CosmicLaunchPage() {
|
|
|
6284
6284
|
] }),
|
|
6285
6285
|
/* @__PURE__ */ jsxs("div", { className: "space-y-6 rounded-[2.5rem] border border-white/10 bg-slate-950/80 p-8 shadow-glow", children: [
|
|
6286
6286
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-4", children: [
|
|
6287
|
-
/* @__PURE__ */ jsx(Badge, { variant: "soft", className: "rounded-full px-4 py-2 uppercase tracking-[0.24em] text-xs font-semibold bg-slate-800/70 text-slate-200", children: "Featured launch" }),
|
|
6287
|
+
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full px-4 py-2 uppercase tracking-[0.24em] text-xs font-semibold bg-slate-800/70 text-slate-200", children: "Featured launch" }),
|
|
6288
6288
|
/* @__PURE__ */ jsx("p", { className: "text-sm uppercase tracking-[0.2em] text-slate-400", children: "Live preview" })
|
|
6289
6289
|
] }),
|
|
6290
6290
|
/* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
@@ -6298,7 +6298,7 @@ function CosmicLaunchPage() {
|
|
|
6298
6298
|
/* @__PURE__ */ jsx("p", { children: "\u2713 Premium composable layouts" }),
|
|
6299
6299
|
/* @__PURE__ */ jsx("p", { children: "\u2713 Motion-ready theme tokens" })
|
|
6300
6300
|
] }),
|
|
6301
|
-
/* @__PURE__ */ jsx(
|
|
6301
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "mt-8 w-full rounded-full py-4 font-black", children: "Start with Cosmic" })
|
|
6302
6302
|
] })
|
|
6303
6303
|
] })
|
|
6304
6304
|
] })
|
|
@@ -6321,8 +6321,8 @@ function VertexStudioShowcase() {
|
|
|
6321
6321
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-5xl md:text-7xl font-black tracking-tight leading-[0.92]", children: "A polished showcase for motion-driven creative brands." }),
|
|
6322
6322
|
/* @__PURE__ */ jsx(Typography, { className: "mx-auto max-w-3xl text-lg text-slate-300 leading-8", children: "Vertex Studio brings together immersive swatches, case study cards, and product highlights with premium spacing and glass-like surfaces." }),
|
|
6323
6323
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center gap-4 sm:flex-row", children: [
|
|
6324
|
-
/* @__PURE__ */ jsx(
|
|
6325
|
-
/* @__PURE__ */ jsx(
|
|
6324
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-12 py-4 text-lg font-black shadow-glow", children: "Start the studio tour" }),
|
|
6325
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "rounded-full px-12 py-4 text-lg text-white/80 border-white/20 hover:border-info/40", children: "Explore case study" })
|
|
6326
6326
|
] })
|
|
6327
6327
|
] }),
|
|
6328
6328
|
/* @__PURE__ */ jsxs("section", { className: "mt-20 grid gap-6 lg:grid-cols-[1fr_0.9fr]", children: [
|
|
@@ -6375,7 +6375,7 @@ function VertexStudioShowcase() {
|
|
|
6375
6375
|
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-4xl font-black text-white", children: "Design systems with intentional motion." }),
|
|
6376
6376
|
/* @__PURE__ */ jsx(Divider, { className: "border-slate-700/70" }),
|
|
6377
6377
|
/* @__PURE__ */ jsx(Typography, { className: "text-base leading-7 text-slate-300", children: "Bring your creative presentation into a modern product surface with layered cards, hover states, and a spacious hero grid ready for real marketing content." }),
|
|
6378
|
-
/* @__PURE__ */ jsx(
|
|
6378
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "w-full rounded-full py-4 text-lg font-black", children: "Open the studio" })
|
|
6379
6379
|
] }) })
|
|
6380
6380
|
] }),
|
|
6381
6381
|
/* @__PURE__ */ jsx("section", { className: "mx-auto mt-16 max-w-6xl space-y-6", children: /* @__PURE__ */ jsx("div", { className: "grid gap-4 md:grid-cols-3", children: ["Creative systems", "3D accent layers", "Motion-ready blocks"].map((label) => /* @__PURE__ */ jsxs(Card, { className: "rounded-[2rem] border border-white/10 bg-white/5 p-6 text-slate-300", children: [
|
|
@@ -6396,8 +6396,8 @@ function OrbitalCommerceSuite() {
|
|
|
6396
6396
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-5xl md:text-7xl font-black tracking-tight leading-[0.92]", children: "Orbital commerce surfaces with premium product storytelling." }),
|
|
6397
6397
|
/* @__PURE__ */ jsx(Typography, { className: "mx-auto max-w-3xl text-lg text-slate-300 leading-8", children: "Present premium products with layered exploration panels, interactive specs, and a high-impact buy funnel that feels like a next-generation commerce experience." }),
|
|
6398
6398
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center gap-4 sm:flex-row", children: [
|
|
6399
|
-
/* @__PURE__ */ jsx(
|
|
6400
|
-
/* @__PURE__ */ jsx(
|
|
6399
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-12 py-4 text-lg font-black shadow-glow", children: "Launch store page" }),
|
|
6400
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "rounded-full px-12 py-4 text-lg text-white/80 border-white/20 hover:border-emerald/40", children: "View product detail" })
|
|
6401
6401
|
] })
|
|
6402
6402
|
] }),
|
|
6403
6403
|
/* @__PURE__ */ jsxs("section", { className: "mx-auto mt-20 grid gap-8 lg:grid-cols-[1.05fr_0.95fr]", children: [
|
|
@@ -6429,7 +6429,7 @@ function OrbitalCommerceSuite() {
|
|
|
6429
6429
|
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-5xl font-black text-white", children: "$249" }),
|
|
6430
6430
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-slate-500", children: "One-time purchase with lifetime firmware updates." })
|
|
6431
6431
|
] }),
|
|
6432
|
-
/* @__PURE__ */ jsx(
|
|
6432
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-8 py-4 font-black", children: "Preorder" })
|
|
6433
6433
|
] }),
|
|
6434
6434
|
/* @__PURE__ */ jsx(Divider, { className: "my-6 border-slate-700/70" }),
|
|
6435
6435
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-3 sm:grid-cols-3", children: [
|
|
@@ -6472,8 +6472,8 @@ function LuminousWorkspace() {
|
|
|
6472
6472
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-5xl md:text-7xl font-black tracking-tight leading-[0.92]", children: "Luminous dashboards built for immersive status monitoring." }),
|
|
6473
6473
|
/* @__PURE__ */ jsx(Typography, { className: "mx-auto max-w-3xl text-lg text-slate-300 leading-8", children: "The Luminous Workspace template brings together command panels, high-contrast charts, and layered metric surfaces for teams that need instant clarity and premium polish." }),
|
|
6474
6474
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-center gap-4 sm:flex-row", children: [
|
|
6475
|
-
/* @__PURE__ */ jsx(
|
|
6476
|
-
/* @__PURE__ */ jsx(
|
|
6475
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-12 py-4 text-lg font-black shadow-glow", children: "Enter Workspace" }),
|
|
6476
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "rounded-full px-12 py-4 text-lg text-white/80 border-white/20 hover:border-primary/40", children: "View analytics" })
|
|
6477
6477
|
] })
|
|
6478
6478
|
] }),
|
|
6479
6479
|
/* @__PURE__ */ jsxs("section", { className: "mx-auto mt-20 grid gap-8 lg:grid-cols-[1fr_0.9fr]", children: [
|
|
@@ -6515,7 +6515,7 @@ function LuminousWorkspace() {
|
|
|
6515
6515
|
/* @__PURE__ */ jsx("p", { className: "text-xs uppercase tracking-[0.18em] text-slate-400", children: "Next step" }),
|
|
6516
6516
|
/* @__PURE__ */ jsx("p", { className: "text-lg font-black text-white", children: "Sync release artifacts" })
|
|
6517
6517
|
] }),
|
|
6518
|
-
/* @__PURE__ */ jsx(
|
|
6518
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-6 py-3 font-black", children: "Sync" })
|
|
6519
6519
|
] }),
|
|
6520
6520
|
/* @__PURE__ */ jsxs("div", { className: "rounded-3xl border border-white/10 bg-slate-950/70 p-5", children: [
|
|
6521
6521
|
/* @__PURE__ */ jsx("p", { className: "text-xs uppercase tracking-[0.18em] text-slate-400", children: "Workspace note" }),
|
|
@@ -6538,7 +6538,7 @@ function NebulaDashboard() {
|
|
|
6538
6538
|
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full px-5 py-2 text-xs uppercase tracking-[0.32em] font-black text-primary-foreground bg-primary/10 shadow-glow", children: "Analytics portal" }),
|
|
6539
6539
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-5xl md:text-7xl font-black tracking-tight leading-[0.92]", children: "Nebula Dashboard brings 3D metrics and executive signals into one premium surface." }),
|
|
6540
6540
|
/* @__PURE__ */ jsx(Typography, { className: "mx-auto max-w-3xl text-lg text-slate-300 leading-8", children: "This dashboard page is perfect for data products, operations centers, and strategy reviews that need polished hierarchy and expressive motion-ready panels." }),
|
|
6541
|
-
/* @__PURE__ */ jsx(
|
|
6541
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "rounded-full px-12 py-4 text-lg font-black shadow-glow", children: "Explore analytics" })
|
|
6542
6542
|
] }),
|
|
6543
6543
|
/* @__PURE__ */ jsxs("section", { className: "mx-auto mt-20 grid gap-8 lg:grid-cols-[0.65fr_0.35fr]", children: [
|
|
6544
6544
|
/* @__PURE__ */ jsxs("div", { className: "space-y-8", children: [
|
|
@@ -6579,9 +6579,9 @@ function NebulaDashboard() {
|
|
|
6579
6579
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-slate-400 leading-6", children: "Revenue, engagement, and retention signals all surface in a single glance." })
|
|
6580
6580
|
] }),
|
|
6581
6581
|
/* @__PURE__ */ jsxs(Timeline, { className: "space-y-4", children: [
|
|
6582
|
-
/* @__PURE__ */ jsx(TimelineItem, { title: "Launch experiment",
|
|
6583
|
-
/* @__PURE__ */ jsx(TimelineItem, { title: "Design review",
|
|
6584
|
-
/* @__PURE__ */ jsx(TimelineItem, { title: "Ops sync",
|
|
6582
|
+
/* @__PURE__ */ jsx(TimelineItem, { title: "Launch experiment", timestamp: "Today", status: "success", children: "Campaign A/B now live with high-velocity leads." }),
|
|
6583
|
+
/* @__PURE__ */ jsx(TimelineItem, { title: "Design review", timestamp: "Tomorrow", status: "default", children: "Stakeholder evaluation for the next sprint board." }),
|
|
6584
|
+
/* @__PURE__ */ jsx(TimelineItem, { title: "Ops sync", timestamp: "This week", status: "warning", children: "Prepared incident loop and throughput dashboard." })
|
|
6585
6585
|
] })
|
|
6586
6586
|
] })
|
|
6587
6587
|
] })
|
|
@@ -6602,7 +6602,7 @@ function FullLandingPage() {
|
|
|
6602
6602
|
/* @__PURE__ */ jsxs("section", { className: "px-6 py-32 md:py-48 flex flex-col items-center text-center max-w-5xl mx-auto", children: [
|
|
6603
6603
|
/* @__PURE__ */ jsxs("div", { className: "space-y-12 w-full animate-fade-down", children: [
|
|
6604
6604
|
/* @__PURE__ */ jsx("div", { className: "flex justify-center group cursor-pointer", children: /* @__PURE__ */ jsxs(Badge, { variant: "soft-primary", className: "rounded-full px-6 py-1.5 font-black uppercase text-[10px] tracking-[0.25em] border border-primary/20 bg-primary/5 shadow-glow relative overflow-hidden transition-all group-hover:scale-110", children: [
|
|
6605
|
-
/* @__PURE__ */ jsx("span", { className: "relative z-10 italic", children: "
|
|
6605
|
+
/* @__PURE__ */ jsx("span", { className: "relative z-10 italic", children: "MarkoraEngine v4.8 Beta" }),
|
|
6606
6606
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 bg-primary/20 blur-xl opacity-0 group-hover:opacity-100 transition-opacity" })
|
|
6607
6607
|
] }) }),
|
|
6608
6608
|
/* @__PURE__ */ jsxs("div", { className: "space-y-6 relative group", children: [
|
|
@@ -6618,7 +6618,7 @@ function FullLandingPage() {
|
|
|
6618
6618
|
] }),
|
|
6619
6619
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground text-xl md:text-3xl max-w-2xl mx-auto font-medium opacity-80 decoration-primary/20 decoration-2 italic", children: "Architecture for high-stakes platform engineering. From sub-millisecond peering to sensory motion primitives." }),
|
|
6620
6620
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row items-center justify-center gap-6 pt-10 animate-fade-up", style: { animationDelay: "300ms" }, children: [
|
|
6621
|
-
/* @__PURE__ */ jsxs(
|
|
6621
|
+
/* @__PURE__ */ jsxs(Button, { variant: "primary", className: "h-18 px-14 text-xl font-black shadow-glow bg-foreground text-background rounded-3xl hover:scale-105 transition-all group overflow-hidden", children: [
|
|
6622
6622
|
"Initialize Workspace",
|
|
6623
6623
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-x-0 bottom-0 h-1 bg-primary/40 group-hover:h-full transition-all duration-500 opacity-20" })
|
|
6624
6624
|
] }),
|
|
@@ -6705,10 +6705,10 @@ function FullLandingPage() {
|
|
|
6705
6705
|
/* @__PURE__ */ jsx("br", {}),
|
|
6706
6706
|
/* @__PURE__ */ jsx("span", { className: "text-primary italic", children: "Hyperscale." })
|
|
6707
6707
|
] }),
|
|
6708
|
-
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-background/60 max-w-2xl mx-auto font-medium text-xl md:text-3xl italic", children: "
|
|
6708
|
+
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-background/60 max-w-2xl mx-auto font-medium text-xl md:text-3xl italic", children: "MarkoraEngine v4.8 is now available for production peer groups. Start building the next decade of sensory interfaces today." }),
|
|
6709
6709
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col sm:flex-row gap-6 pt-8", children: [
|
|
6710
|
-
/* @__PURE__ */ jsx(
|
|
6711
|
-
/* @__PURE__ */ jsx(
|
|
6710
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-20 px-16 text-2xl font-black bg-primary text-primary-foreground rounded-[2rem] hover:scale-105 transition-transform shadow-[0_20px_50px_rgba(var(--primary-rgb),0.3)]", children: "Get Implementation Spec" }),
|
|
6711
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-20 px-14 text-2xl font-bold border-background/10 text-background hover:bg-background hover:text-background transition-all rounded-[2rem] font-mono", children: "--view repo" })
|
|
6712
6712
|
] }),
|
|
6713
6713
|
/* @__PURE__ */ jsx("div", { className: "pt-20 opacity-20 hover:opacity-100 transition-opacity duration-1000", children: /* @__PURE__ */ jsx(Marquee, { className: "[--duration:20s] [--gap:8rem]", children: ["RUST", "V0", "AWS", "GO", "K8S", "MODAL"].map((tech) => /* @__PURE__ */ jsx("span", { className: "text-xl font-black tracking-widest italic", children: tech }, tech)) }) })
|
|
6714
6714
|
] })
|
|
@@ -6745,7 +6745,7 @@ function AppPageWrapper({ children, activePage, onPageChange, title }) {
|
|
|
6745
6745
|
header: /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3 px-2 group cursor-pointer", children: [
|
|
6746
6746
|
/* @__PURE__ */ jsx("div", { className: "size-10 rounded-xl bg-primary text-primary-foreground flex items-center justify-center font-black shadow-glow transform group-hover:scale-105 transition-transform", children: "A" }),
|
|
6747
6747
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col text-left", children: [
|
|
6748
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground leading-none", children: "
|
|
6748
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground leading-none", children: "MarkoraShell" }),
|
|
6749
6749
|
/* @__PURE__ */ jsx("p", { className: "text-[10px] uppercase tracking-widest text-muted-foreground mt-1", children: "V0.4.2 Production" })
|
|
6750
6750
|
] })
|
|
6751
6751
|
] }),
|
|
@@ -6782,7 +6782,7 @@ function AppPageWrapper({ children, activePage, onPageChange, title }) {
|
|
|
6782
6782
|
/* @__PURE__ */ jsx("span", { className: "text-xs font-bold text-muted-foreground", children: "Search logs (Cmd+K)" })
|
|
6783
6783
|
] }),
|
|
6784
6784
|
/* @__PURE__ */ jsx(
|
|
6785
|
-
|
|
6785
|
+
Button,
|
|
6786
6786
|
{
|
|
6787
6787
|
variant: "ghost",
|
|
6788
6788
|
size: "sm",
|
|
@@ -6791,7 +6791,7 @@ function AppPageWrapper({ children, activePage, onPageChange, title }) {
|
|
|
6791
6791
|
children: theme === "dark" ? /* @__PURE__ */ jsx("svg", { className: "size-4", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, children: /* @__PURE__ */ jsx("path", { d: "M12 3v1m0 16v1m9-9h-1M4 12H3m15.364-6.364l-.707.707M6.343 17.657l-.707.707m0-11.314l.707.707m11.314 11.314l.707.707", strokeLinecap: "round" }) }) : /* @__PURE__ */ jsx("svg", { className: "size-4", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, children: /* @__PURE__ */ jsx("path", { d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z", strokeLinecap: "round" }) })
|
|
6792
6792
|
}
|
|
6793
6793
|
),
|
|
6794
|
-
/* @__PURE__ */ jsx(
|
|
6794
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", size: "sm", className: "h-10 px-6 font-bold shadow-glow text-xs rounded-2xl", children: "New Command" })
|
|
6795
6795
|
] })
|
|
6796
6796
|
] }),
|
|
6797
6797
|
/* @__PURE__ */ jsx("div", { className: "flex-1 overflow-y-auto w-full", children: /* @__PURE__ */ jsx("div", { className: "max-w-[1600px] mx-auto", children }) })
|
|
@@ -6820,7 +6820,7 @@ function AnalyticsDashboardShell() {
|
|
|
6820
6820
|
] })
|
|
6821
6821
|
] })
|
|
6822
6822
|
] }),
|
|
6823
|
-
/* @__PURE__ */ jsx(
|
|
6823
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "relative z-10 bg-indigo-500 hover:bg-indigo-600 text-white font-black shadow-glow px-8 h-12 rounded-2xl", children: "Upgrade Infrastructure" })
|
|
6824
6824
|
] }),
|
|
6825
6825
|
/* @__PURE__ */ jsxs("div", { className: "grid gap-6 md:grid-cols-2 lg:grid-cols-4 animate-fade-up", children: [
|
|
6826
6826
|
/* @__PURE__ */ jsx(Stat, { label: "Total Revenue", value: "$42,481", trend: 12.4, helpText: "vs last month" }),
|
|
@@ -6865,7 +6865,7 @@ function AnalyticsDashboardShell() {
|
|
|
6865
6865
|
] }),
|
|
6866
6866
|
/* @__PURE__ */ jsx("span", { className: "text-[10px] font-black text-muted-foreground uppercase tracking-widest", children: item.time })
|
|
6867
6867
|
] }, i)) }) }),
|
|
6868
|
-
/* @__PURE__ */ jsx("div", { className: "mt-auto border-t border-border/40 p-6 bg-muted/10", children: /* @__PURE__ */ jsx(
|
|
6868
|
+
/* @__PURE__ */ jsx("div", { className: "mt-auto border-t border-border/40 p-6 bg-muted/10", children: /* @__PURE__ */ jsx(Button, { variant: "ghost", fullWidth: true, size: "lg", className: "rounded-2xl font-black text-sm text-primary", children: "Browse Global Activity Feed" }) })
|
|
6869
6869
|
] })
|
|
6870
6870
|
] }),
|
|
6871
6871
|
/* @__PURE__ */ jsxs("div", { className: "relative min-h-[320px] rounded-[3.5rem] border-2 border-dashed border-border/80 bg-muted/30 p-12 flex flex-col items-center justify-center text-center space-y-6 animate-fade-up", style: { animationDelay: "400ms" }, children: [
|
|
@@ -6879,8 +6879,8 @@ function AnalyticsDashboardShell() {
|
|
|
6879
6879
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground max-w-xl mx-auto font-medium", children: "Your engineering workspace is ready for specialized data visualizations. Connect your first data source to begin." })
|
|
6880
6880
|
] }),
|
|
6881
6881
|
/* @__PURE__ */ jsxs("div", { className: "flex gap-4", children: [
|
|
6882
|
-
/* @__PURE__ */ jsx(
|
|
6883
|
-
/* @__PURE__ */ jsx(
|
|
6882
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", size: "lg", className: "h-14 px-10 text-base font-black shadow-glow rounded-2xl", children: "Connect Data Source" }),
|
|
6883
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-14 px-10 text-base font-bold rounded-2xl border-border/60", children: "View Documentation" })
|
|
6884
6884
|
] })
|
|
6885
6885
|
] })
|
|
6886
6886
|
] })
|
|
@@ -6953,8 +6953,8 @@ function ManagementConsole() {
|
|
|
6953
6953
|
/* @__PURE__ */ jsx("p", { className: "text-base text-muted-foreground font-medium", children: "Manage and monitor all production entities from a single command interface." })
|
|
6954
6954
|
] }),
|
|
6955
6955
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
6956
|
-
/* @__PURE__ */ jsx(
|
|
6957
|
-
/* @__PURE__ */ jsx(
|
|
6956
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-12 px-6 rounded-2xl font-bold shadow-glow-sm", children: "Export Inventory" }),
|
|
6957
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-12 px-8 rounded-2xl font-black shadow-glow bg-foreground text-background", children: "Provision New Instance" })
|
|
6958
6958
|
] })
|
|
6959
6959
|
] }),
|
|
6960
6960
|
/* @__PURE__ */ jsx(CardContent, { className: "p-0", children: /* @__PURE__ */ jsxs("div", { className: "relative min-h-[400px]", children: [
|
|
@@ -7021,7 +7021,7 @@ function ProductSettingsLayout() {
|
|
|
7021
7021
|
] }),
|
|
7022
7022
|
/* @__PURE__ */ jsxs(CardContent, { className: "px-0 pt-10 space-y-8", children: [
|
|
7023
7023
|
/* @__PURE__ */ jsxs("div", { className: "grid md:grid-cols-2 gap-8", children: [
|
|
7024
|
-
/* @__PURE__ */ jsx(InputField, { label: "Project Name", placeholder: "My Enterprise Orbit", defaultValue: "
|
|
7024
|
+
/* @__PURE__ */ jsx(InputField, { label: "Project Name", placeholder: "My Enterprise Orbit", defaultValue: "MarkoraWorkspace", required: true, className: "bg-background/40" }),
|
|
7025
7025
|
/* @__PURE__ */ jsx(InputField, { label: "Shared URL", placeholder: "company.aether.com", defaultValue: "aether-main.orbit.app", className: "bg-background/40" })
|
|
7026
7026
|
] }),
|
|
7027
7027
|
/* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
@@ -7052,8 +7052,8 @@ function ProductSettingsLayout() {
|
|
|
7052
7052
|
] }, policy.label)) })
|
|
7053
7053
|
] }),
|
|
7054
7054
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-end gap-4 pt-4", children: [
|
|
7055
|
-
/* @__PURE__ */ jsx(
|
|
7056
|
-
/* @__PURE__ */ jsx(
|
|
7055
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-12 px-6 rounded-2xl font-bold shadow-glow-sm", children: "Discard Changes" }),
|
|
7056
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-12 px-10 rounded-2xl font-black shadow-glow bg-foreground text-background", children: "Save Workspace Configuration" })
|
|
7057
7057
|
] })
|
|
7058
7058
|
] }) })
|
|
7059
7059
|
] }) }) })
|
|
@@ -7103,7 +7103,7 @@ function KnowledgeBasePortal() {
|
|
|
7103
7103
|
}
|
|
7104
7104
|
)
|
|
7105
7105
|
] }),
|
|
7106
|
-
/* @__PURE__ */ jsx(
|
|
7106
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-12 px-8 rounded-2xl font-black shadow-glow", children: "Search Logs" })
|
|
7107
7107
|
] }),
|
|
7108
7108
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center justify-center gap-6 mt-6", children: [
|
|
7109
7109
|
/* @__PURE__ */ jsx("span", { className: "text-[11px] font-black uppercase tracking-widest text-muted-foreground", children: "Popular:" }),
|
|
@@ -7119,7 +7119,7 @@ function KnowledgeBasePortal() {
|
|
|
7119
7119
|
cat.items,
|
|
7120
7120
|
" technical guides and implementation patterns for this module."
|
|
7121
7121
|
] }),
|
|
7122
|
-
/* @__PURE__ */ jsxs(
|
|
7122
|
+
/* @__PURE__ */ jsxs(Button, { variant: "ghost", className: "p-0 h-auto font-black text-xs uppercase tracking-widest text-primary hover:bg-transparent hover:translate-x-1 transition-transform inline-flex items-center gap-2", children: [
|
|
7123
7123
|
"Learn More ",
|
|
7124
7124
|
/* @__PURE__ */ jsx("svg", { className: "size-3", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, children: /* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6" }) })
|
|
7125
7125
|
] })
|
|
@@ -7133,7 +7133,7 @@ function KnowledgeBasePortal() {
|
|
|
7133
7133
|
Accordion,
|
|
7134
7134
|
{
|
|
7135
7135
|
items: [
|
|
7136
|
-
{ id: "1", title: "Standard Infrastructure Provisioning", content: "Learn how to use
|
|
7136
|
+
{ id: "1", title: "Standard Infrastructure Provisioning", content: "Learn how to use MarkoraCLI to provision AWS nodes globally using our standardized Terraform primitives." },
|
|
7137
7137
|
{ id: "2", title: "Authentication Flow v0.4.2", content: "Details on the JWT/SAML integration strategy and how to customize the sensory auth background." },
|
|
7138
7138
|
{ id: "3", title: "Regional Data Sovereignty", content: "Guidelines for managing user data across EU/US/APAC regions while maintaining p95 compliance." }
|
|
7139
7139
|
]
|
|
@@ -7147,8 +7147,8 @@ function KnowledgeBasePortal() {
|
|
|
7147
7147
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium opacity-80", children: "Our engineering support team is available 24/7 for Enterprise customers in the Slack Connect channel." })
|
|
7148
7148
|
] }),
|
|
7149
7149
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap justify-center gap-4", children: [
|
|
7150
|
-
/* @__PURE__ */ jsx(
|
|
7151
|
-
/* @__PURE__ */ jsx(
|
|
7150
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", size: "lg", className: "h-16 px-10 rounded-2xl font-black shadow-glow bg-foreground text-background", children: "Open Support Ticket" }),
|
|
7151
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-16 px-10 rounded-2xl font-bold border-border/60", children: "Community Forum" })
|
|
7152
7152
|
] })
|
|
7153
7153
|
] })
|
|
7154
7154
|
] }),
|
|
@@ -7235,7 +7235,7 @@ function AIChatInterface() {
|
|
|
7235
7235
|
] }),
|
|
7236
7236
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-3", children: [
|
|
7237
7237
|
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full border-primary/20 font-black text-[10px] uppercase tracking-widest", children: "Engineering Mode" }),
|
|
7238
|
-
/* @__PURE__ */ jsx(
|
|
7238
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-8 px-4 rounded-xl text-xs font-black border-border/60", children: "New Thread" })
|
|
7239
7239
|
] })
|
|
7240
7240
|
] }),
|
|
7241
7241
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-1 min-h-0", children: [
|
|
@@ -7312,7 +7312,7 @@ function AIChatInterface() {
|
|
|
7312
7312
|
}
|
|
7313
7313
|
),
|
|
7314
7314
|
/* @__PURE__ */ jsx(
|
|
7315
|
-
|
|
7315
|
+
Button,
|
|
7316
7316
|
{
|
|
7317
7317
|
variant: "primary",
|
|
7318
7318
|
onClick: () => handleSend(),
|
|
@@ -7356,18 +7356,18 @@ function AIChatInterface() {
|
|
|
7356
7356
|
] })
|
|
7357
7357
|
] });
|
|
7358
7358
|
}
|
|
7359
|
-
function AuthPageWrapper({ children, title, description, showBackToSite = true }) {
|
|
7359
|
+
function AuthPageWrapper({ children, title, description, showBackToSite = true, showMeteors = false }) {
|
|
7360
7360
|
const { theme, toggleTheme } = useTheme();
|
|
7361
7361
|
return /* @__PURE__ */ jsxs("div", { className: "relative min-h-screen w-full flex flex-col items-center justify-center bg-background selection:bg-primary/30 selection:text-primary overflow-hidden", children: [
|
|
7362
7362
|
/* @__PURE__ */ jsx(TemplateMeshBackground, { variant: "mixed", className: "opacity-40" }),
|
|
7363
7363
|
/* @__PURE__ */ jsxs("div", { className: "fixed top-0 inset-x-0 z-50 p-6 flex items-center justify-between pointer-events-none", children: [
|
|
7364
7364
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 px-3 py-2 rounded-2xl bg-background/50 border border-border/40 backdrop-blur-md pointer-events-auto shadow-elevated group cursor-pointer", children: [
|
|
7365
7365
|
/* @__PURE__ */ jsx("div", { className: "size-8 rounded-lg bg-primary text-primary-foreground flex items-center justify-center font-black transition-transform group-hover:scale-105", children: "A" }),
|
|
7366
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground", children: "
|
|
7366
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold tracking-tight text-foreground", children: "MarkoraUI" })
|
|
7367
7367
|
] }),
|
|
7368
7368
|
/* @__PURE__ */ jsxs("div", { className: "pointer-events-auto flex items-center gap-3", children: [
|
|
7369
|
-
showBackToSite && /* @__PURE__ */ jsx(
|
|
7370
|
-
/* @__PURE__ */ jsx(
|
|
7369
|
+
showBackToSite && /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", className: "hidden sm:flex rounded-xl font-bold bg-background/50 hover:bg-background/80 transition-colors", children: "Back to main site" }),
|
|
7370
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", onClick: toggleTheme, className: "size-9 p-0 rounded-full bg-background/50 backdrop-blur-md border border-border/40", children: theme === "dark" ? /* @__PURE__ */ jsx("svg", { className: "size-4", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, children: /* @__PURE__ */ jsx("path", { d: "M12 3v1m0 16v1m9-9h-1M4 12H3m15.364-6.364l-.707.707M6.343 17.657l-.707.707m0-11.314l.707.707m11.314 11.314l.707.707", strokeLinecap: "round" }) }) : /* @__PURE__ */ jsx("svg", { className: "size-4", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, children: /* @__PURE__ */ jsx("path", { d: "M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z", strokeLinecap: "round" }) }) })
|
|
7371
7371
|
] })
|
|
7372
7372
|
] }),
|
|
7373
7373
|
/* @__PURE__ */ jsx("main", { className: "relative z-10 w-full max-w-7xl mx-auto px-6 py-20 flex items-center justify-center", children: /* @__PURE__ */ jsxs("div", { className: "grid lg:grid-cols-2 gap-20 items-center justify-center w-full", children: [
|
|
@@ -7379,7 +7379,7 @@ function AuthPageWrapper({ children, title, description, showBackToSite = true }
|
|
|
7379
7379
|
] }),
|
|
7380
7380
|
/* @__PURE__ */ jsxs("div", { className: "pt-8 space-y-8 border-t border-border/60", children: [
|
|
7381
7381
|
/* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
7382
|
-
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold text-foreground", children: "
|
|
7382
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm font-bold text-foreground", children: "MarkoraCore Platform" }),
|
|
7383
7383
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: `"The fastest deployment we've ever managed. The library is not only beautiful but incredibly powerful at its core."` })
|
|
7384
7384
|
] }),
|
|
7385
7385
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
@@ -7394,7 +7394,7 @@ function AuthPageWrapper({ children, title, description, showBackToSite = true }
|
|
|
7394
7394
|
/* @__PURE__ */ jsx("div", { className: "w-full flex justify-center animate-fade-in [animation-delay:200ms]", children })
|
|
7395
7395
|
] }) }),
|
|
7396
7396
|
/* @__PURE__ */ jsxs("footer", { className: "fixed bottom-0 inset-x-0 p-6 flex flex-col md:flex-row items-center justify-between text-muted-foreground font-medium pointer-events-none", children: [
|
|
7397
|
-
/* @__PURE__ */ jsx("p", { className: "text-[10px] uppercase tracking-[0.2em] pointer-events-auto", children: "
|
|
7397
|
+
/* @__PURE__ */ jsx("p", { className: "text-[10px] uppercase tracking-[0.2em] pointer-events-auto", children: "MarkoraFoundation \xA9 2026" }),
|
|
7398
7398
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-6 pointer-events-auto", children: [
|
|
7399
7399
|
/* @__PURE__ */ jsx("a", { href: "#", className: "text-[10px] uppercase tracking-widest hover:text-primary transition-colors", children: "Privacy Policy" }),
|
|
7400
7400
|
/* @__PURE__ */ jsx("a", { href: "#", className: "text-[10px] uppercase tracking-widest hover:text-primary transition-colors", children: "Terms of Service" })
|
|
@@ -7433,7 +7433,7 @@ function PremiumAuthLogin() {
|
|
|
7433
7433
|
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
7434
7434
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between px-1", children: [
|
|
7435
7435
|
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "text-muted-foreground font-bold uppercase tracking-widest text-[10px]", children: "Password" }),
|
|
7436
|
-
/* @__PURE__ */ jsx(
|
|
7436
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", className: "h-auto p-0 text-primary hover:text-primary-foreground text-xs font-bold", children: "Forgot?" })
|
|
7437
7437
|
] }),
|
|
7438
7438
|
/* @__PURE__ */ jsx(
|
|
7439
7439
|
InputField,
|
|
@@ -7447,15 +7447,15 @@ function PremiumAuthLogin() {
|
|
|
7447
7447
|
)
|
|
7448
7448
|
] })
|
|
7449
7449
|
] }),
|
|
7450
|
-
/* @__PURE__ */ jsx(
|
|
7450
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "w-full h-14 text-base font-black shadow-glow rounded-2xl", children: "Sign in to Aether" }),
|
|
7451
7451
|
/* @__PURE__ */ jsxs("div", { className: "relative border-t border-border/60 pt-8 mt-4 text-center", children: [
|
|
7452
7452
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-x-0 -top-3 flex justify-center", children: /* @__PURE__ */ jsx("span", { className: "bg-background px-3 text-[10px] font-black uppercase tracking-widest text-muted-foreground", children: "Or continue with" }) }),
|
|
7453
7453
|
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-2 gap-4", children: [
|
|
7454
|
-
/* @__PURE__ */ jsxs(
|
|
7454
|
+
/* @__PURE__ */ jsxs(Button, { variant: "outline", className: "h-12 rounded-xl bg-background/40 hover:bg-background/60 transition-all font-bold", children: [
|
|
7455
7455
|
/* @__PURE__ */ jsx("svg", { className: "size-4 mr-2", viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M12.48 10.92v3.28h7.84c-.24 1.84-.92 3.32-2.12 4.52-1.32 1.32-3.4 2.76-7.72 2.76-6.68 0-12.16-5.4-12.16-12.08s5.48-12.08 12.16-12.08c3.6 0 6.16 1.44 8.08 3.28l2.32-2.32c-2.6-2.48-5.92-3.96-10.4-3.96-8.28 0-15 6.72-15 15s6.72 15 15 15c4.48 0 7.88-1.48 10.44-4.12 2.68-2.68 3.52-6.44 3.52-9.36 0-.92-.08-1.8-.24-2.68h-13.72z" }) }),
|
|
7456
7456
|
"Google"
|
|
7457
7457
|
] }),
|
|
7458
|
-
/* @__PURE__ */ jsxs(
|
|
7458
|
+
/* @__PURE__ */ jsxs(Button, { variant: "outline", className: "h-12 rounded-xl bg-background/40 hover:bg-background/60 transition-all font-bold", children: [
|
|
7459
7459
|
/* @__PURE__ */ jsx("svg", { className: "size-4 mr-2", viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M12 0c-6.626 0-12 5.373-12 12c0 5.302 3.438 9.8 8.207 11.387c.6.113.82-.258.82-.577c0-.285-.011-1.04-.015-2.04c-3.338.724-4.042-1.61-4.042-1.61c-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729c1.205.084 1.838 1.236 1.838 1.236c1.07 1.835 2.809 1.305 3.495.998c.108-.776.417-1.305.76-1.605c-2.665-.3-5.466-1.332-5.466-5.93c0-1.31.465-2.38 1.235-3.22c-.135-.303-.54-1.523.105-3.176c0 0 1.005-.322 3.3 1.23c.96-.267 1.98-.399 3-.405c1.02.006 2.04.138 3 .405c2.28-1.552 3.285-1.23 3.285-1.23c.645 1.653.24 2.873.12 3.176c.765.84 1.23 1.91 1.23 3.22c0 4.61-2.805 5.625-5.475 5.92c.42.36.81 1.096.81 2.22c0 1.606-.015 2.896-.015 3.286c0 .315.21.69.825.57C20.565 21.795 24 17.298 24 12c0-6.627-5.373-12-12-12" }) }),
|
|
7460
7460
|
"GitHub"
|
|
7461
7461
|
] })
|
|
@@ -7464,7 +7464,7 @@ function PremiumAuthLogin() {
|
|
|
7464
7464
|
] }),
|
|
7465
7465
|
/* @__PURE__ */ jsx("div", { className: "mt-8 text-center", children: /* @__PURE__ */ jsxs(Typography, { variant: "caption", className: "text-muted-foreground font-medium", children: [
|
|
7466
7466
|
"Don't have an account? ",
|
|
7467
|
-
/* @__PURE__ */ jsx(
|
|
7467
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", size: "sm", className: "text-primary hover:text-primary-foreground p-0 h-auto font-black italic", children: "Create an account" })
|
|
7468
7468
|
] }) })
|
|
7469
7469
|
] })
|
|
7470
7470
|
}
|
|
@@ -7477,97 +7477,105 @@ function InteractiveSignupStepper() {
|
|
|
7477
7477
|
{ id: "2", title: "Network", description: "Regional node selection." },
|
|
7478
7478
|
{ id: "3", title: "Protocol", description: "Engineering policy agreement." }
|
|
7479
7479
|
];
|
|
7480
|
-
return /* @__PURE__ */ jsx(
|
|
7481
|
-
|
|
7482
|
-
|
|
7483
|
-
|
|
7484
|
-
|
|
7485
|
-
|
|
7486
|
-
|
|
7487
|
-
|
|
7488
|
-
|
|
7489
|
-
|
|
7490
|
-
|
|
7491
|
-
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
7492
|
-
/* @__PURE__ */ jsxs(CardTitle, { className: "text-3xl font-black tracking-tight", children: [
|
|
7493
|
-
currentStep === 1 && "Initialize Identity",
|
|
7494
|
-
currentStep === 2 && "Node Allocation",
|
|
7495
|
-
currentStep === 3 && "Finalize Protocol"
|
|
7496
|
-
] }),
|
|
7497
|
-
/* @__PURE__ */ jsxs("p", { className: "text-base text-muted-foreground font-medium", children: [
|
|
7498
|
-
"Step ",
|
|
7480
|
+
return /* @__PURE__ */ jsx(
|
|
7481
|
+
AuthPageWrapper,
|
|
7482
|
+
{
|
|
7483
|
+
title: "Initialize Your Identity",
|
|
7484
|
+
description: "Secure your Markora workspace and connect to the global node network.",
|
|
7485
|
+
showMeteors: false,
|
|
7486
|
+
children: /* @__PURE__ */ jsxs("div", { className: "w-full max-w-2xl mx-auto space-y-12 animate-fade-up text-left", children: [
|
|
7487
|
+
/* @__PURE__ */ jsx("div", { className: "px-4", children: /* @__PURE__ */ jsx(
|
|
7488
|
+
Stepper,
|
|
7489
|
+
{
|
|
7490
|
+
steps,
|
|
7499
7491
|
currentStep,
|
|
7500
|
-
|
|
7501
|
-
|
|
7502
|
-
|
|
7503
|
-
/* @__PURE__ */ jsxs(
|
|
7504
|
-
"
|
|
7505
|
-
currentStep
|
|
7506
|
-
] })
|
|
7507
|
-
] }) }),
|
|
7508
|
-
/* @__PURE__ */ jsxs(CardContent, { className: "p-10", children: [
|
|
7509
|
-
currentStep === 1 && /* @__PURE__ */ jsxs("div", { className: "space-y-8 animate-fade-in", children: [
|
|
7510
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-6 p-6 rounded-3xl bg-primary/5 border border-primary/20", children: [
|
|
7511
|
-
/* @__PURE__ */ jsx(Avatar, { className: "size-20 rounded-2xl border-2 border-background shadow-glow", children: /* @__PURE__ */ jsx(AvatarFallback, { children: "U" }) }),
|
|
7492
|
+
className: "w-full"
|
|
7493
|
+
}
|
|
7494
|
+
) }),
|
|
7495
|
+
/* @__PURE__ */ jsxs(Card, { className: "rounded-[3rem] border-border/40 bg-background/40 backdrop-blur-xl shadow-elevated overflow-hidden", children: [
|
|
7496
|
+
/* @__PURE__ */ jsx(CardHeader, { className: "p-10 border-b border-border/40 bg-muted/20", children: /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
|
|
7512
7497
|
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
7513
|
-
/* @__PURE__ */
|
|
7514
|
-
|
|
7498
|
+
/* @__PURE__ */ jsxs(CardTitle, { className: "text-3xl font-black tracking-tight", children: [
|
|
7499
|
+
currentStep === 1 && "Initialize Identity",
|
|
7500
|
+
currentStep === 2 && "Node Allocation",
|
|
7501
|
+
currentStep === 3 && "Finalize Protocol"
|
|
7502
|
+
] }),
|
|
7503
|
+
/* @__PURE__ */ jsxs("p", { className: "text-base text-muted-foreground font-medium", children: [
|
|
7504
|
+
"Step ",
|
|
7505
|
+
currentStep,
|
|
7506
|
+
" of 3: Secure your Markoraworkspace primitives."
|
|
7507
|
+
] })
|
|
7508
|
+
] }),
|
|
7509
|
+
/* @__PURE__ */ jsxs(Badge, { variant: "soft-primary", className: "rounded-full px-4 py-1 font-black uppercase text-[10px] tracking-widest shadow-glow-sm border-primary/20", children: [
|
|
7510
|
+
"Phase ",
|
|
7511
|
+
currentStep
|
|
7515
7512
|
] })
|
|
7516
|
-
] }),
|
|
7517
|
-
/* @__PURE__ */ jsxs(
|
|
7518
|
-
/* @__PURE__ */
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7528
|
-
|
|
7513
|
+
] }) }),
|
|
7514
|
+
/* @__PURE__ */ jsxs(CardContent, { className: "p-10", children: [
|
|
7515
|
+
currentStep === 1 && /* @__PURE__ */ jsxs("div", { className: "space-y-8 animate-fade-in", children: [
|
|
7516
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-6 p-6 rounded-3xl bg-primary/5 border border-primary/20", children: [
|
|
7517
|
+
/* @__PURE__ */ jsx(Avatar, { className: "size-20 rounded-2xl border-2 border-background shadow-glow", children: /* @__PURE__ */ jsx(AvatarFallback, { children: "U" }) }),
|
|
7518
|
+
/* @__PURE__ */ jsxs("div", { className: "space-y-1", children: [
|
|
7519
|
+
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-xl font-bold", children: "New Architect Profile" }),
|
|
7520
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground font-medium leading-tight", children: "Your sensory persona across the global node network." })
|
|
7521
|
+
] })
|
|
7522
|
+
] }),
|
|
7523
|
+
/* @__PURE__ */ jsxs("div", { className: "grid md:grid-cols-2 gap-6", children: [
|
|
7524
|
+
/* @__PURE__ */ jsx(InputField, { label: "Full Name", placeholder: "Alex Rivera", defaultValue: "Alex Rivera", className: "bg-background/40" }),
|
|
7525
|
+
/* @__PURE__ */ jsx(InputField, { label: "Username", placeholder: "alex_orbit", defaultValue: "alex_orbit", className: "bg-background/40" })
|
|
7526
|
+
] }),
|
|
7527
|
+
/* @__PURE__ */ jsx(InputField, { label: "Professional Domain", placeholder: "platform_engineering", defaultValue: "infrastructure", className: "bg-background/40" })
|
|
7529
7528
|
] }),
|
|
7530
|
-
/* @__PURE__ */
|
|
7531
|
-
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7529
|
+
currentStep === 2 && /* @__PURE__ */ jsxs("div", { className: "space-y-8 animate-fade-in", children: [
|
|
7530
|
+
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium italic", children: '"Latency is the enemy of presence. Selective node peering ensures p99 stability."' }),
|
|
7531
|
+
/* @__PURE__ */ jsx("div", { className: "grid gap-4", children: ["US-East-1 (Primary)", "EU-Central-1", "AP-South-1 (Edge)"].map((region, i) => /* @__PURE__ */ jsxs("div", { className: `flex items-center justify-between p-6 rounded-[2rem] border-2 transition-all cursor-pointer ${i === 0 ? "border-primary bg-primary/5" : "border-border/40 hover:border-primary/20"}`, children: [
|
|
7532
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4", children: [
|
|
7533
|
+
/* @__PURE__ */ jsx("div", { className: `size-4 rounded-full border-2 ${i === 0 ? "border-primary bg-primary" : "border-muted-foreground/40"}` }),
|
|
7534
|
+
/* @__PURE__ */ jsx("span", { className: "font-bold text-foreground", children: region })
|
|
7535
|
+
] }),
|
|
7536
|
+
/* @__PURE__ */ jsx(Badge, { variant: "outline", className: "text-[10px] font-black uppercase tracking-widest", children: "Active" })
|
|
7537
|
+
] }, region)) })
|
|
7538
|
+
] }),
|
|
7539
|
+
currentStep === 3 && /* @__PURE__ */ jsxs("div", { className: "space-y-8 animate-fade-in text-left", children: [
|
|
7540
|
+
/* @__PURE__ */ jsxs("div", { className: "p-8 rounded-[2.5rem] bg-muted/30 border border-border/40 space-y-6", children: [
|
|
7541
|
+
/* @__PURE__ */ jsx(Typography, { variant: "title", className: "text-xl font-bold tracking-tight", children: "Foundation Agreement" }),
|
|
7542
|
+
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground font-medium leading-relaxed", children: "By finalizing this protocol, you agree to the global MarkoraSLA and data sovereignty policies for all regional clusters." }),
|
|
7543
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-3 group", children: [
|
|
7544
|
+
/* @__PURE__ */ jsx(Checkbox, { id: "terms", defaultChecked: true, className: "size-6 rounded-lg shadow-glow-sm" }),
|
|
7545
|
+
/* @__PURE__ */ jsx("label", { htmlFor: "terms", className: "text-sm font-bold text-foreground/80 group-hover:text-primary transition-colors cursor-pointer leading-none", children: "I accept all engineering and sensory policies." })
|
|
7546
|
+
] })
|
|
7547
|
+
] }),
|
|
7548
|
+
/* @__PURE__ */ jsx(Card, { className: "rounded-[2.5rem] border-border/40 bg-success/5 p-6 border-dashed", children: /* @__PURE__ */ jsx("p", { className: "text-xs font-medium text-success text-center italic", children: "Encryption keys have been generated and synced with US-East-1 Primary." }) })
|
|
7540
7549
|
] })
|
|
7541
7550
|
] }),
|
|
7542
|
-
/* @__PURE__ */
|
|
7551
|
+
/* @__PURE__ */ jsxs(CardContent, { className: "p-10 pt-0 flex items-center justify-between gap-4", children: [
|
|
7552
|
+
/* @__PURE__ */ jsx(
|
|
7553
|
+
Button,
|
|
7554
|
+
{
|
|
7555
|
+
variant: "ghost",
|
|
7556
|
+
className: "h-14 px-8 rounded-2xl font-bold text-muted-foreground hover:text-foreground",
|
|
7557
|
+
onClick: () => setCurrentStep((prev) => Math.max(1, prev - 1)),
|
|
7558
|
+
disabled: currentStep === 1,
|
|
7559
|
+
children: "Previous Phase"
|
|
7560
|
+
}
|
|
7561
|
+
),
|
|
7562
|
+
/* @__PURE__ */ jsx(
|
|
7563
|
+
Button,
|
|
7564
|
+
{
|
|
7565
|
+
variant: "primary",
|
|
7566
|
+
className: "h-14 px-12 rounded-2xl font-black shadow-glow bg-foreground text-background",
|
|
7567
|
+
onClick: () => {
|
|
7568
|
+
if (currentStep < 3) setCurrentStep((prev) => prev + 1);
|
|
7569
|
+
else alert("Protocol Finalized.");
|
|
7570
|
+
},
|
|
7571
|
+
children: currentStep < 3 ? "Proceed to Next Phase" : "Finalize Initialization"
|
|
7572
|
+
}
|
|
7573
|
+
)
|
|
7574
|
+
] })
|
|
7543
7575
|
] })
|
|
7544
|
-
] }),
|
|
7545
|
-
/* @__PURE__ */ jsxs(CardContent, { className: "p-10 pt-0 flex items-center justify-between gap-4", children: [
|
|
7546
|
-
/* @__PURE__ */ jsx(
|
|
7547
|
-
Button2,
|
|
7548
|
-
{
|
|
7549
|
-
variant: "ghost",
|
|
7550
|
-
className: "h-14 px-8 rounded-2xl font-bold text-muted-foreground hover:text-foreground",
|
|
7551
|
-
onClick: () => setCurrentStep((prev) => Math.max(1, prev - 1)),
|
|
7552
|
-
disabled: currentStep === 1,
|
|
7553
|
-
children: "Previous Phase"
|
|
7554
|
-
}
|
|
7555
|
-
),
|
|
7556
|
-
/* @__PURE__ */ jsx(
|
|
7557
|
-
Button2,
|
|
7558
|
-
{
|
|
7559
|
-
variant: "primary",
|
|
7560
|
-
className: "h-14 px-12 rounded-2xl font-black shadow-glow bg-foreground text-background",
|
|
7561
|
-
onClick: () => {
|
|
7562
|
-
if (currentStep < 3) setCurrentStep((prev) => prev + 1);
|
|
7563
|
-
else alert("Protocol Finalized.");
|
|
7564
|
-
},
|
|
7565
|
-
children: currentStep < 3 ? "Proceed to Next Phase" : "Finalize Initialization"
|
|
7566
|
-
}
|
|
7567
|
-
)
|
|
7568
7576
|
] })
|
|
7569
|
-
|
|
7570
|
-
|
|
7577
|
+
}
|
|
7578
|
+
);
|
|
7571
7579
|
}
|
|
7572
7580
|
function FlipAuthPortal() {
|
|
7573
7581
|
return /* @__PURE__ */ jsx(
|
|
@@ -7603,11 +7611,11 @@ function UserProfileDashboard() {
|
|
|
7603
7611
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-4xl md:text-5xl font-black tracking-tight leading-none", children: "Sarah Kohen" }),
|
|
7604
7612
|
/* @__PURE__ */ jsx(Badge, { variant: "soft-primary", className: "rounded-full px-4 py-1 font-black uppercase text-[10px] tracking-[0.2em] shadow-glow-sm border-primary/20", children: "Lead Architect" })
|
|
7605
7613
|
] }),
|
|
7606
|
-
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-lg", children: "Platform Engineering & Distributed Systems at
|
|
7614
|
+
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-lg", children: "Platform Engineering & Distributed Systems at MarkoraLabs" })
|
|
7607
7615
|
] }),
|
|
7608
7616
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap justify-center md:justify-start gap-3", children: [
|
|
7609
|
-
/* @__PURE__ */ jsx(
|
|
7610
|
-
/* @__PURE__ */ jsx(
|
|
7617
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-10 px-6 rounded-xl font-bold shadow-glow bg-foreground text-background", children: "Edit Identity" }),
|
|
7618
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-10 px-6 rounded-xl font-bold border-border/60", children: "Public Profile" })
|
|
7611
7619
|
] })
|
|
7612
7620
|
] })
|
|
7613
7621
|
] })
|
|
@@ -7652,7 +7660,7 @@ function UserProfileDashboard() {
|
|
|
7652
7660
|
] }),
|
|
7653
7661
|
/* @__PURE__ */ jsx(Badge, { variant: "outline", className: "text-[10px] font-black uppercase tracking-widest", children: item.status })
|
|
7654
7662
|
] }, item.label)),
|
|
7655
|
-
/* @__PURE__ */ jsx(
|
|
7663
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", fullWidth: true, className: "h-12 rounded-2xl border-border/60 font-black text-xs uppercase tracking-widest hover:border-primary/40 transition-all", children: "Manage Keys & Access" })
|
|
7656
7664
|
] })
|
|
7657
7665
|
] })
|
|
7658
7666
|
] }),
|
|
@@ -7662,7 +7670,7 @@ function UserProfileDashboard() {
|
|
|
7662
7670
|
/* @__PURE__ */ jsx(CardTitle, { className: "text-2xl font-black tracking-tight", children: "Access History" }),
|
|
7663
7671
|
/* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground font-medium", children: "Recent login events and administrative sessions." })
|
|
7664
7672
|
] }),
|
|
7665
|
-
/* @__PURE__ */ jsx(
|
|
7673
|
+
/* @__PURE__ */ jsx(Button, { variant: "ghost", className: "text-primary font-black uppercase text-[10px] tracking-widest shadow-glow-sm", children: "View full audit" })
|
|
7666
7674
|
] }),
|
|
7667
7675
|
/* @__PURE__ */ jsx(CardContent, { className: "p-0 pt-10", children: /* @__PURE__ */ jsx("div", { className: "space-y-8", children: [
|
|
7668
7676
|
{ action: "Production Deployment Successful", cluster: "AWS-East-1", time: "14 min ago", status: "Success" },
|
|
@@ -7762,8 +7770,8 @@ function DarkPortfolioShowcase() {
|
|
|
7762
7770
|
] }),
|
|
7763
7771
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-white/50 font-medium text-xl max-w-xl leading-relaxed", children: "I build platforms that serve millions \u2014 from distributed infrastructure to the design systems that sit on top of them." }),
|
|
7764
7772
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-4 pt-4", children: [
|
|
7765
|
-
/* @__PURE__ */ jsx(
|
|
7766
|
-
/* @__PURE__ */ jsx(
|
|
7773
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-14 px-10 rounded-2xl font-black bg-white text-black hover:bg-white/90 shadow-[0_0_40px_rgba(255,255,255,0.15)]", children: "View Work" }),
|
|
7774
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-14 px-8 rounded-2xl font-bold border-white/20 text-white hover:bg-white/5", children: "Get in Touch" }),
|
|
7767
7775
|
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-3 pl-4 border-l border-white/10", children: ["GH", "X", "LI"].map((s) => /* @__PURE__ */ jsx("button", { className: "size-10 rounded-xl border border-white/10 bg-white/5 hover:bg-white/10 hover:border-white/20 transition-all flex items-center justify-center text-xs font-black text-white/40", children: s }, s)) })
|
|
7768
7776
|
] })
|
|
7769
7777
|
] }),
|
|
@@ -7834,7 +7842,7 @@ function DarkPortfolioShowcase() {
|
|
|
7834
7842
|
/* @__PURE__ */ jsx("p", { className: "font-black text-xl text-white", children: "kai@hyperion.build" }),
|
|
7835
7843
|
/* @__PURE__ */ jsx("p", { className: "text-white/30 text-xs font-medium mt-1", children: "Replies within 24 hours, usually much faster." })
|
|
7836
7844
|
] }),
|
|
7837
|
-
/* @__PURE__ */ jsx(
|
|
7845
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-14 px-12 rounded-2xl font-black bg-white text-black hover:scale-105 transition-transform whitespace-nowrap", children: "Send a Message \u2192" })
|
|
7838
7846
|
] })
|
|
7839
7847
|
] })
|
|
7840
7848
|
] })
|
|
@@ -7888,11 +7896,11 @@ function ProductMerchandisingDetail() {
|
|
|
7888
7896
|
] })
|
|
7889
7897
|
] }),
|
|
7890
7898
|
/* @__PURE__ */ jsxs("div", { className: "space-y-4 pt-4", children: [
|
|
7891
|
-
/* @__PURE__ */ jsxs(
|
|
7899
|
+
/* @__PURE__ */ jsxs(Button, { variant: "primary", size: "lg", className: "w-full h-16 rounded-[2rem] text-xl font-black shadow-glow group relative overflow-hidden", children: [
|
|
7892
7900
|
/* @__PURE__ */ jsx("span", { className: "relative z-10", children: "Initialize Acquisition" }),
|
|
7893
7901
|
/* @__PURE__ */ jsx("div", { className: "absolute inset-0 bg-white/20 -translate-x-full group-hover:translate-x-full transition-transform duration-1000 skew-x-12" })
|
|
7894
7902
|
] }),
|
|
7895
|
-
/* @__PURE__ */ jsx(
|
|
7903
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "w-full h-16 rounded-[2rem] text-xl font-bold border-border/60", children: "Compare Model Specifications" })
|
|
7896
7904
|
] }),
|
|
7897
7905
|
/* @__PURE__ */ jsxs("div", { className: "pt-10 border-t border-border/60", children: [
|
|
7898
7906
|
/* @__PURE__ */ jsx(Typography, { variant: "caption", className: "font-black uppercase tracking-[0.2em] text-[10px] mb-6 block text-muted-foreground", children: "Technical Specifications" }),
|
|
@@ -7919,7 +7927,7 @@ function ProductMerchandisingDetail() {
|
|
|
7919
7927
|
/* @__PURE__ */ jsx("div", { className: "grid gap-8 md:grid-cols-2 lg:grid-cols-3", children: [
|
|
7920
7928
|
{ title: "Cold-Steel Chassis", desc: "CNC-machined from single-source aerospace aluminum for zero thermal resonance." },
|
|
7921
7929
|
{ title: "Zero-Lag Telemetry", desc: "Integrated e-ink display for p95 dashboard monitoring with zero active refresh power." },
|
|
7922
|
-
{ title: "Mesh Integrated", desc: "Native support for
|
|
7930
|
+
{ title: "Mesh Integrated", desc: "Native support for MarkoraMesh background systems via secondary light channels." }
|
|
7923
7931
|
].map((feature, i) => /* @__PURE__ */ jsxs(Card, { className: "rounded-[2.5rem] border-border/60 bg-muted/10 p-10 text-left space-y-4 shadow-glow-sm hover:border-primary/40 transition-all cursor-pointer", children: [
|
|
7924
7932
|
/* @__PURE__ */ jsxs("div", { className: "size-14 rounded-2xl bg-foreground text-background flex items-center justify-center font-black text-xl italic shadow-glow", children: [
|
|
7925
7933
|
"0",
|
|
@@ -7974,10 +7982,10 @@ function ReleaseTimelineChangelog() {
|
|
|
7974
7982
|
/* @__PURE__ */ jsx("br", {}),
|
|
7975
7983
|
/* @__PURE__ */ jsx("span", { className: "ui-gradient-text italic font-black underline", children: "Changes." })
|
|
7976
7984
|
] }),
|
|
7977
|
-
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground max-w-2xl font-medium text-lg md:text-2xl px-4", children: "Tracking every primitive, system, and sensory enhancement in the
|
|
7985
|
+
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground max-w-2xl font-medium text-lg md:text-2xl px-4", children: "Tracking every primitive, system, and sensory enhancement in the Markoraecosystem." }),
|
|
7978
7986
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-4 px-4 pt-4", children: [
|
|
7979
|
-
/* @__PURE__ */ jsx(
|
|
7980
|
-
/* @__PURE__ */ jsx(
|
|
7987
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-14 px-10 rounded-2xl font-black shadow-glow", children: "Subscribe to Feed" }),
|
|
7988
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", className: "h-14 px-10 rounded-2xl font-bold border-border/60", children: "RSS Integration" })
|
|
7981
7989
|
] })
|
|
7982
7990
|
] }) }),
|
|
7983
7991
|
/* @__PURE__ */ jsxs("section", { className: "px-6 py-24 max-w-7xl mx-auto grid gap-16 lg:grid-cols-[1fr,320px]", children: [
|
|
@@ -8004,7 +8012,7 @@ function ReleaseTimelineChangelog() {
|
|
|
8004
8012
|
] }),
|
|
8005
8013
|
/* @__PURE__ */ jsxs("div", { className: "p-10 space-y-6", children: [
|
|
8006
8014
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-muted-foreground font-medium text-lg leading-relaxed", children: update.description }),
|
|
8007
|
-
/* @__PURE__ */ jsxs(
|
|
8015
|
+
/* @__PURE__ */ jsxs(Button, { variant: "ghost", className: "p-0 h-auto font-black text-xs uppercase tracking-widest text-primary hover:bg-transparent hover:translate-x-1 transition-transform inline-flex items-center gap-2", children: [
|
|
8008
8016
|
"Read Full Technical Specs ",
|
|
8009
8017
|
/* @__PURE__ */ jsx("svg", { className: "size-3", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, children: /* @__PURE__ */ jsx("path", { d: "m9 18 6-6-6-6" }) })
|
|
8010
8018
|
] })
|
|
@@ -8034,7 +8042,7 @@ function ReleaseTimelineChangelog() {
|
|
|
8034
8042
|
/* @__PURE__ */ jsx(Typography, { variant: "display", className: "text-4xl md:text-7xl font-black tracking-tighter italic", children: "Stay synced." }),
|
|
8035
8043
|
/* @__PURE__ */ jsx(Typography, { variant: "lead", className: "text-background/60 max-w-2xl mx-auto font-medium", children: "Get technical release notes delivered to your inbox as they happen." })
|
|
8036
8044
|
] }),
|
|
8037
|
-
/* @__PURE__ */ jsx(
|
|
8045
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-16 px-12 rounded-3xl font-black text-lg border-background/20 hover:bg-background hover:text-foreground transition-all", children: "Join the Newsletter" })
|
|
8038
8046
|
] })
|
|
8039
8047
|
] }),
|
|
8040
8048
|
/* @__PURE__ */ jsx(MarketingFooter, {})
|
|
@@ -8059,8 +8067,8 @@ function StatusErrorCanvas404() {
|
|
|
8059
8067
|
] }) })
|
|
8060
8068
|
] }),
|
|
8061
8069
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center justify-center gap-6", children: [
|
|
8062
|
-
/* @__PURE__ */ jsx(
|
|
8063
|
-
/* @__PURE__ */ jsx(
|
|
8070
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", size: "lg", className: "h-14 px-10 rounded-2xl font-black shadow-glow bg-foreground text-background", children: "Force Return to Root" }),
|
|
8071
|
+
/* @__PURE__ */ jsx(Button, { variant: "outline", size: "lg", className: "h-14 px-10 rounded-2xl font-bold border-border/60", children: "Search Knowledge Base" })
|
|
8064
8072
|
] }),
|
|
8065
8073
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-8 text-[11px] font-black uppercase tracking-widest text-muted-foreground/60 select-none", children: [
|
|
8066
8074
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -8071,7 +8079,7 @@ function StatusErrorCanvas404() {
|
|
|
8071
8079
|
/* @__PURE__ */ jsx("div", { className: "size-2 rounded-full bg-warning animate-pulse" }),
|
|
8072
8080
|
/* @__PURE__ */ jsx("span", { children: "Route: Unmapped" })
|
|
8073
8081
|
] }),
|
|
8074
|
-
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-2 border-l border-border/40 pl-8 italic", children: /* @__PURE__ */ jsx("span", { children: "
|
|
8082
|
+
/* @__PURE__ */ jsx("div", { className: "flex items-center gap-2 border-l border-border/40 pl-8 italic", children: /* @__PURE__ */ jsx("span", { children: "Markorav2.0.4" }) })
|
|
8075
8083
|
] })
|
|
8076
8084
|
] })
|
|
8077
8085
|
] });
|
|
@@ -8103,7 +8111,7 @@ function WaitlistCapturePage() {
|
|
|
8103
8111
|
className: "flex-1 h-16 rounded-3xl bg-background/60 backdrop-blur-md border-border/60 hover:bg-background transition-all text-lg font-bold px-8 shadow-elevated"
|
|
8104
8112
|
}
|
|
8105
8113
|
),
|
|
8106
|
-
/* @__PURE__ */ jsx(
|
|
8114
|
+
/* @__PURE__ */ jsx(Button, { variant: "primary", className: "h-16 px-10 rounded-3xl font-black text-lg bg-foreground text-background shadow-glow whitespace-nowrap", children: "Request Access" })
|
|
8107
8115
|
] }),
|
|
8108
8116
|
/* @__PURE__ */ jsx("div", { className: "grid gap-8 md:grid-cols-3 pt-12 animate-fade-up", style: { animationDelay: "600ms" }, children: [
|
|
8109
8117
|
{ label: "Developer Waitlist", value: "14,284" },
|
|
@@ -8123,6 +8131,6 @@ function WaitlistCapturePage() {
|
|
|
8123
8131
|
] });
|
|
8124
8132
|
}
|
|
8125
8133
|
|
|
8126
|
-
export { AIChatInterface, Accordion, ActionBar, AetherPulseHero, Alert, AlertDialog, AnalyticsDashboardShell, AnimatedCounter, AnimatedGlowButton, AspectRatio, AugmentedProgressRing, AuthFlipCard, Avatar, AvatarFallback, AvatarGroup, AvatarImage, BackgroundGradient, Badge, Banner, BlogMagazineLayout, BorderBeam, Breadcrumb,
|
|
8134
|
+
export { AIChatInterface, Accordion, ActionBar, AetherPulseHero, Alert, AlertDialog, AnalyticsDashboardShell, AnimatedCounter, AnimatedGlowButton, AspectRatio, AugmentedProgressRing, AuthFlipCard, Avatar, AvatarFallback, AvatarGroup, AvatarImage, BackgroundGradient, Badge, Banner, BlogMagazineLayout, BorderBeam, Breadcrumb, Button, ButtonGroup, Calendar, Callout, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CelestialPulse, Chart, Checkbox, Chip, Clipboard, CodeBlock, Collapsible, Combobox, Command, ContextMenu, CosmicLaunchPage, DarkPortfolioShowcase, DataTable, TableBody as DataTableBody, TableCell as DataTableCell, TableHead as DataTableHead, TableHeader as DataTableHeader, TableRow as DataTableRow, DatePicker, DevNexusLanding, Dialog, DirectionProvider, DirectionRoot, Divider, Dock, DockIcon, Drawer, Dropdown, DropdownMenu, EmptyState as Empty, EmptyState, FeatureBentoGrid, FeatureCard, Field, FileUpload, FlipAuthPortal, FloatingCommandPalette, FluidShape, FullLandingPage, GlitchText, GradientText, HolographicCard, HolographicDataDeck, HoverBorderGradient, HoverCard, IconButton, Input, InputField, InputGroup, InputOtp, InteractiveOrbNavigation, InteractiveSignupStepper, Item, Kbd, KnowledgeBasePortal, Label, LiquidFormBuilder, LuminousWorkspace, ManagementConsole, MarketingFooter, MarketingNavbar, Marquee, Menubar, Meteors, Modal, NativeSelect, NativeSelectField, NavigationMenu, NebulaDashboard, NeonAgencyGrid, NumberInput, OrbitalCommerceSuite, OrbitingCircles, Pagination, Popover, PremiumAuthLogin, PremiumPricing, PricingCard, ProductMerchandisingDetail, ProductSettingsLayout, ProductShowcaseCarousel, Progress, ProgressCircle, RadioGroup, RadioGroupItem, Rating, ReleaseTimelineChangelog, Resizable, SaaSHero, ScrollArea, SegmentedControl, Select, Separator, Sheet, Sidebar, Skeleton, Slider, SocialPulseWidget, ToastProvider as SonnerProvider, SpatialTabs, Spinner, SpotlightCard, Stat, StatusErrorCanvas404, Stepper, Switch, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TerrainInsightsPanel, Textarea, TextareaField, ThemeProvider, ThemeToggle, Timeline, TimelineItem, ToastProvider, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TreeView, TypewriterEffect, TypewriterEffectSmooth, Typography, UserProfileDashboard, VertexStudioShowcase, VoxelGridHeatmap, WaitlistCapturePage, WallOfLove, alertVariants, badgeVariants, buttonVariants, chipVariants, cn, useDirection, useToast as useSonner, useTheme, useToast };
|
|
8127
8135
|
//# sourceMappingURL=index.mjs.map
|
|
8128
8136
|
//# sourceMappingURL=index.mjs.map
|