@rizom/site-rizom-ai 0.2.0-alpha.242 → 0.2.0-alpha.243
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1141 -1141
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4347,11 +4347,11 @@ var require_extend = __commonJS(function(exports, module) {
|
|
|
4347
4347
|
});
|
|
4348
4348
|
|
|
4349
4349
|
// src/rizom/ui/frame.tsx
|
|
4350
|
-
import {
|
|
4351
|
-
var RizomFrame = ({ children }) => /* @__PURE__ */
|
|
4350
|
+
import { jsx } from "react/jsx-runtime";
|
|
4351
|
+
var RizomFrame = ({ children }) => /* @__PURE__ */ jsx("div", {
|
|
4352
4352
|
className: "max-w-[1440px] mx-auto relative overflow-x-clip",
|
|
4353
4353
|
children
|
|
4354
|
-
}
|
|
4354
|
+
});
|
|
4355
4355
|
// src/rizom/ui/external-link.ts
|
|
4356
4356
|
function externalLinkProps(link) {
|
|
4357
4357
|
return link.external ? { target: "_blank", rel: "noopener noreferrer" } : {};
|
|
@@ -4393,7 +4393,7 @@ function cn(...inputs) {
|
|
|
4393
4393
|
}
|
|
4394
4394
|
|
|
4395
4395
|
// src/rizom/ui/Wordmark.tsx
|
|
4396
|
-
import {
|
|
4396
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
4397
4397
|
var DOT_BY_SUFFIX = new Map([
|
|
4398
4398
|
["work", "text-accent"],
|
|
4399
4399
|
["foundation", "text-secondary"],
|
|
@@ -4407,74 +4407,74 @@ var Wordmark = ({
|
|
|
4407
4407
|
suffixClassName
|
|
4408
4408
|
}) => {
|
|
4409
4409
|
const knownDotClass = DOT_BY_SUFFIX.get(brandSuffix);
|
|
4410
|
-
return /* @__PURE__ */
|
|
4410
|
+
return /* @__PURE__ */ jsxs("span", {
|
|
4411
4411
|
className: cn("inline-flex items-baseline gap-0 font-display font-medium tracking-[-0.015em] [font-variation-settings:'opsz'_24]", className),
|
|
4412
4412
|
children: [
|
|
4413
|
-
/* @__PURE__ */
|
|
4413
|
+
/* @__PURE__ */ jsx2("span", {
|
|
4414
4414
|
className: "text-theme",
|
|
4415
4415
|
children: name
|
|
4416
|
-
}
|
|
4417
|
-
/* @__PURE__ */
|
|
4416
|
+
}),
|
|
4417
|
+
/* @__PURE__ */ jsx2("span", {
|
|
4418
4418
|
className: cn(knownDotClass ?? "text-accent", dotClassName),
|
|
4419
4419
|
children: "."
|
|
4420
|
-
}
|
|
4421
|
-
/* @__PURE__ */
|
|
4420
|
+
}),
|
|
4421
|
+
/* @__PURE__ */ jsx2("span", {
|
|
4422
4422
|
className: cn("italic font-normal text-theme-muted", suffixClassName),
|
|
4423
4423
|
children: brandSuffix
|
|
4424
|
-
}
|
|
4424
|
+
})
|
|
4425
4425
|
]
|
|
4426
|
-
}
|
|
4426
|
+
});
|
|
4427
4427
|
};
|
|
4428
4428
|
|
|
4429
4429
|
// src/rizom/ui/Header.tsx
|
|
4430
|
-
import {
|
|
4430
|
+
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
4431
4431
|
var LINK_CLS = "hidden md:inline-block font-body text-[15px] text-theme-muted hover:text-theme transition-colors relative py-1 after:content-[''] after:absolute after:left-0 after:bottom-0 after:h-px after:w-0 after:bg-accent after:transition-all after:duration-300 hover:after:w-full";
|
|
4432
4432
|
var Header = ({
|
|
4433
4433
|
brandSuffix,
|
|
4434
4434
|
navLinks,
|
|
4435
4435
|
primaryCta
|
|
4436
|
-
}) => /* @__PURE__ */
|
|
4436
|
+
}) => /* @__PURE__ */ jsxs2("nav", {
|
|
4437
4437
|
className: "fixed top-0 left-0 right-0 z-[100] flex items-center justify-between bg-nav-fade px-6 py-4 backdrop-blur-[8px] md:px-10 md:py-5 xl:px-20",
|
|
4438
4438
|
children: [
|
|
4439
|
-
/* @__PURE__ */
|
|
4439
|
+
/* @__PURE__ */ jsx3(Wordmark, {
|
|
4440
4440
|
brandSuffix,
|
|
4441
4441
|
className: "text-[22px]"
|
|
4442
|
-
}
|
|
4443
|
-
/* @__PURE__ */
|
|
4442
|
+
}),
|
|
4443
|
+
/* @__PURE__ */ jsxs2("div", {
|
|
4444
4444
|
className: "flex items-center gap-3 md:gap-8",
|
|
4445
4445
|
children: [
|
|
4446
|
-
navLinks.map((link) => /* @__PURE__ */
|
|
4446
|
+
navLinks.map((link) => /* @__PURE__ */ jsx3("a", {
|
|
4447
4447
|
href: link.href,
|
|
4448
4448
|
...externalLinkProps(link),
|
|
4449
4449
|
className: LINK_CLS,
|
|
4450
4450
|
children: link.label
|
|
4451
|
-
}, link.href
|
|
4452
|
-
/* @__PURE__ */
|
|
4451
|
+
}, link.href)),
|
|
4452
|
+
/* @__PURE__ */ jsx3("a", {
|
|
4453
4453
|
href: primaryCta.href,
|
|
4454
4454
|
...externalLinkProps(primaryCta),
|
|
4455
4455
|
className: "font-body text-[13px] font-semibold text-theme border border-theme rounded-[8px] px-4 py-2 transition-colors hover:border-accent hover:text-accent md:px-6 md:py-2.5 md:text-[15px]",
|
|
4456
4456
|
children: primaryCta.label
|
|
4457
|
-
}
|
|
4457
|
+
})
|
|
4458
4458
|
]
|
|
4459
|
-
}
|
|
4459
|
+
})
|
|
4460
4460
|
]
|
|
4461
|
-
}
|
|
4461
|
+
});
|
|
4462
4462
|
// src/rizom/ui/Section.tsx
|
|
4463
|
-
import {
|
|
4463
|
+
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
4464
4464
|
var GUTTER = "px-6 md:px-10 xl:px-20";
|
|
4465
4465
|
var BASE = `${GUTTER} relative z-[1]`;
|
|
4466
4466
|
var Section = ({
|
|
4467
4467
|
id,
|
|
4468
4468
|
className,
|
|
4469
4469
|
children
|
|
4470
|
-
}) => /* @__PURE__ */
|
|
4470
|
+
}) => /* @__PURE__ */ jsx4("section", {
|
|
4471
4471
|
id,
|
|
4472
4472
|
className: cn(BASE, className),
|
|
4473
4473
|
children
|
|
4474
|
-
}
|
|
4474
|
+
});
|
|
4475
4475
|
|
|
4476
4476
|
// src/rizom/ui/Footer.tsx
|
|
4477
|
-
import {
|
|
4477
|
+
import { jsx as jsx5, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
4478
4478
|
var LINK_CLS2 = "text-label-md text-theme-light hover:text-theme transition-colors";
|
|
4479
4479
|
var TOGGLE_CLS = "bg-transparent border border-theme-light rounded-md px-2.5 py-1.5 cursor-pointer text-theme-light text-label-md font-body transition-colors hover:text-theme hover:border-theme";
|
|
4480
4480
|
var Footer = ({
|
|
@@ -4483,71 +4483,71 @@ var Footer = ({
|
|
|
4483
4483
|
tagline,
|
|
4484
4484
|
links,
|
|
4485
4485
|
className
|
|
4486
|
-
}) => /* @__PURE__ */
|
|
4486
|
+
}) => /* @__PURE__ */ jsxs3("footer", {
|
|
4487
4487
|
className: cn(`flex flex-col gap-4 ${GUTTER} py-8 md:flex-row md:items-center md:justify-between md:gap-6 md:py-6 border-t border-theme-light text-center md:text-left`, className),
|
|
4488
4488
|
children: [
|
|
4489
|
-
/* @__PURE__ */
|
|
4489
|
+
/* @__PURE__ */ jsxs3("div", {
|
|
4490
4490
|
className: "flex flex-col items-center gap-1.5 md:items-start max-w-[560px]",
|
|
4491
4491
|
children: [
|
|
4492
|
-
/* @__PURE__ */
|
|
4492
|
+
/* @__PURE__ */ jsxs3("div", {
|
|
4493
4493
|
className: "flex flex-col items-center gap-1.5 md:flex-row md:items-center md:gap-3",
|
|
4494
4494
|
children: [
|
|
4495
|
-
/* @__PURE__ */
|
|
4495
|
+
/* @__PURE__ */ jsx5(Wordmark, {
|
|
4496
4496
|
brandSuffix,
|
|
4497
4497
|
className: "text-[16px]"
|
|
4498
|
-
}
|
|
4499
|
-
/* @__PURE__ */
|
|
4498
|
+
}),
|
|
4499
|
+
/* @__PURE__ */ jsx5("span", {
|
|
4500
4500
|
className: "text-label-md text-theme-light",
|
|
4501
4501
|
children: metaLabel
|
|
4502
|
-
}
|
|
4502
|
+
})
|
|
4503
4503
|
]
|
|
4504
|
-
}
|
|
4505
|
-
tagline ? /* @__PURE__ */
|
|
4504
|
+
}),
|
|
4505
|
+
tagline ? /* @__PURE__ */ jsxs3("p", {
|
|
4506
4506
|
className: "text-label-md leading-[1.6] text-theme-light",
|
|
4507
4507
|
children: [
|
|
4508
4508
|
tagline.prefix ?? "",
|
|
4509
|
-
/* @__PURE__ */
|
|
4509
|
+
/* @__PURE__ */ jsx5("a", {
|
|
4510
4510
|
href: tagline.link.href,
|
|
4511
4511
|
className: "text-accent hover:opacity-75 transition-opacity",
|
|
4512
4512
|
children: tagline.link.label
|
|
4513
|
-
}
|
|
4513
|
+
}),
|
|
4514
4514
|
tagline.suffix ?? ""
|
|
4515
4515
|
]
|
|
4516
|
-
}
|
|
4516
|
+
}) : null
|
|
4517
4517
|
]
|
|
4518
|
-
}
|
|
4519
|
-
/* @__PURE__ */
|
|
4518
|
+
}),
|
|
4519
|
+
/* @__PURE__ */ jsxs3("div", {
|
|
4520
4520
|
className: "flex flex-wrap items-center justify-center gap-4 md:justify-end md:gap-6",
|
|
4521
4521
|
children: [
|
|
4522
|
-
links.map((link) => /* @__PURE__ */
|
|
4522
|
+
links.map((link) => /* @__PURE__ */ jsx5("a", {
|
|
4523
4523
|
href: link.href,
|
|
4524
4524
|
...externalLinkProps(link),
|
|
4525
4525
|
className: LINK_CLS2,
|
|
4526
4526
|
children: link.label
|
|
4527
|
-
}, link.href + link.label
|
|
4528
|
-
/* @__PURE__ */
|
|
4527
|
+
}, link.href + link.label)),
|
|
4528
|
+
/* @__PURE__ */ jsx5("button", {
|
|
4529
4529
|
id: "themeToggle",
|
|
4530
4530
|
"aria-label": "Toggle light mode",
|
|
4531
4531
|
className: TOGGLE_CLS,
|
|
4532
4532
|
children: "\u2600 Light"
|
|
4533
|
-
}
|
|
4533
|
+
})
|
|
4534
4534
|
]
|
|
4535
|
-
}
|
|
4535
|
+
})
|
|
4536
4536
|
]
|
|
4537
|
-
}
|
|
4537
|
+
});
|
|
4538
4538
|
// src/rizom/ui/SideNav.tsx
|
|
4539
|
-
import {
|
|
4540
|
-
var SideNav = ({ items }) => /* @__PURE__ */
|
|
4539
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
4540
|
+
var SideNav = ({ items }) => /* @__PURE__ */ jsx6("aside", {
|
|
4541
4541
|
"aria-hidden": "true",
|
|
4542
4542
|
className: "fixed right-8 top-1/2 z-[90] hidden -translate-y-1/2 flex-col gap-[18px] px-2 py-4 xl:flex",
|
|
4543
|
-
children: items.map((dot) => /* @__PURE__ */
|
|
4543
|
+
children: items.map((dot) => /* @__PURE__ */ jsx6("a", {
|
|
4544
4544
|
href: dot.href,
|
|
4545
4545
|
className: "side-nav-dot",
|
|
4546
4546
|
"data-label": dot.label
|
|
4547
|
-
}, dot.href
|
|
4548
|
-
}
|
|
4547
|
+
}, dot.href))
|
|
4548
|
+
});
|
|
4549
4549
|
// src/rizom/ui/Button.tsx
|
|
4550
|
-
import {
|
|
4550
|
+
import { jsx as jsx7 } from "react/jsx-runtime";
|
|
4551
4551
|
var BASE2 = "inline-flex items-center justify-center cursor-pointer border border-solid transition-all [gap:var(--rizom-btn-gap)] [border-radius:var(--rizom-btn-radius)] [font-family:var(--rizom-btn-font-family)] [font-style:var(--rizom-btn-font-style)] [letter-spacing:var(--rizom-btn-letter-spacing)] [text-transform:var(--rizom-btn-text-transform)]";
|
|
4552
4552
|
var VARIANT = {
|
|
4553
4553
|
primary: "[font-weight:var(--rizom-btn-primary-font-weight)] [color:var(--rizom-btn-primary-color)] [background:var(--rizom-btn-primary-bg)] [border-color:var(--rizom-btn-primary-border-color)] [border-width:var(--rizom-btn-primary-border-width)] [box-shadow:var(--rizom-btn-primary-shadow)] hover:[color:var(--rizom-btn-primary-hover-color)] hover:[background:var(--rizom-btn-primary-hover-bg)] hover:[border-color:var(--rizom-btn-primary-hover-border-color)] hover:[border-width:var(--rizom-btn-primary-hover-border-width)] hover:[box-shadow:var(--rizom-btn-primary-hover-shadow)] hover:[transform:var(--rizom-btn-primary-hover-transform)]",
|
|
@@ -4566,49 +4566,49 @@ var Button = ({
|
|
|
4566
4566
|
block = false,
|
|
4567
4567
|
className,
|
|
4568
4568
|
children
|
|
4569
|
-
}) => /* @__PURE__ */
|
|
4569
|
+
}) => /* @__PURE__ */ jsx7("a", {
|
|
4570
4570
|
href,
|
|
4571
4571
|
className: cn("rizom-btn", `rizom-btn-${variant}`, `rizom-btn-${size}`, block && "rizom-btn-block", BASE2, VARIANT[variant], SIZE[size], block && BLOCK, className),
|
|
4572
4572
|
children
|
|
4573
|
-
}
|
|
4573
|
+
});
|
|
4574
4574
|
// src/rizom/ui/Badge.tsx
|
|
4575
|
-
import {
|
|
4575
|
+
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
4576
4576
|
var BASE3 = "inline-flex items-center px-5 py-2 border border-accent text-accent rounded-[20px] font-label text-label-md font-semibold tracking-[0.09375em] uppercase";
|
|
4577
|
-
var Badge = ({ children, className }) => /* @__PURE__ */
|
|
4577
|
+
var Badge = ({ children, className }) => /* @__PURE__ */ jsx8("span", {
|
|
4578
4578
|
className: cn(BASE3, className),
|
|
4579
4579
|
children
|
|
4580
|
-
}
|
|
4580
|
+
});
|
|
4581
4581
|
// src/rizom/ui/Divider.tsx
|
|
4582
|
-
import {
|
|
4582
|
+
import { jsx as jsx9 } from "react/jsx-runtime";
|
|
4583
4583
|
var BASE4 = "w-[60px] h-px bg-[var(--color-divider)] mx-auto";
|
|
4584
|
-
var Divider = ({ className }) => /* @__PURE__ */
|
|
4584
|
+
var Divider = ({ className }) => /* @__PURE__ */ jsx9("div", {
|
|
4585
4585
|
className: cn(BASE4, className)
|
|
4586
|
-
}
|
|
4586
|
+
});
|
|
4587
4587
|
// src/rizom/ui/highlighted-text.tsx
|
|
4588
4588
|
import { Fragment } from "react";
|
|
4589
|
-
import {
|
|
4589
|
+
import { jsx as jsx10, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
4590
4590
|
var EMPHASIS_PATTERN = /(\*[^*]+\*)/;
|
|
4591
4591
|
function renderHighlightedText(text, highlightClass) {
|
|
4592
4592
|
const lines = text.split(`
|
|
4593
4593
|
`);
|
|
4594
|
-
return /* @__PURE__ */
|
|
4595
|
-
children: lines.map((line, lineIdx) => /* @__PURE__ */
|
|
4594
|
+
return /* @__PURE__ */ jsx10(Fragment, {
|
|
4595
|
+
children: lines.map((line, lineIdx) => /* @__PURE__ */ jsxs4(Fragment, {
|
|
4596
4596
|
children: [
|
|
4597
|
-
lineIdx > 0 && /* @__PURE__ */
|
|
4597
|
+
lineIdx > 0 && /* @__PURE__ */ jsx10("br", {}),
|
|
4598
4598
|
line.split(EMPHASIS_PATTERN).map((part, partIdx) => {
|
|
4599
4599
|
if (part.length >= 3 && part.startsWith("*") && part.endsWith("*")) {
|
|
4600
|
-
return /* @__PURE__ */
|
|
4600
|
+
return /* @__PURE__ */ jsx10("span", {
|
|
4601
4601
|
className: highlightClass,
|
|
4602
4602
|
children: part.slice(1, -1)
|
|
4603
|
-
}, partIdx
|
|
4603
|
+
}, partIdx);
|
|
4604
4604
|
}
|
|
4605
|
-
return /* @__PURE__ */
|
|
4605
|
+
return /* @__PURE__ */ jsx10(Fragment, {
|
|
4606
4606
|
children: part
|
|
4607
|
-
}, partIdx
|
|
4607
|
+
}, partIdx);
|
|
4608
4608
|
})
|
|
4609
4609
|
]
|
|
4610
|
-
}, lineIdx
|
|
4611
|
-
}
|
|
4610
|
+
}, lineIdx))
|
|
4611
|
+
});
|
|
4612
4612
|
}
|
|
4613
4613
|
// src/rizom/ui/site-info-links.ts
|
|
4614
4614
|
var DEFAULT_LABELS = {
|
|
@@ -4626,7 +4626,7 @@ function socialLinksToRizomLinks(siteInfo, allowedPlatforms) {
|
|
|
4626
4626
|
}));
|
|
4627
4627
|
}
|
|
4628
4628
|
// src/rizom/ui/Ecosystem.tsx
|
|
4629
|
-
import {
|
|
4629
|
+
import { jsx as jsx11, jsxs as jsxs5, Fragment as Fragment2 } from "react/jsx-runtime";
|
|
4630
4630
|
var HIGHLIGHT_CLS = "italic text-accent font-normal";
|
|
4631
4631
|
var HERE_LABEL = "You are here";
|
|
4632
4632
|
var ROLE_COLOR = {
|
|
@@ -4651,68 +4651,68 @@ var HERE_CLS = "font-label text-[10.5px] uppercase tracking-[0.22em] text-accent
|
|
|
4651
4651
|
var Card = ({ card }) => {
|
|
4652
4652
|
const isHere = card.linkLabel === HERE_LABEL;
|
|
4653
4653
|
const isDisabled = card.linkHref.trim().length === 0;
|
|
4654
|
-
const inner = /* @__PURE__ */
|
|
4654
|
+
const inner = /* @__PURE__ */ jsxs5(Fragment2, {
|
|
4655
4655
|
children: [
|
|
4656
|
-
/* @__PURE__ */
|
|
4656
|
+
/* @__PURE__ */ jsx11(Wordmark, {
|
|
4657
4657
|
brandSuffix: card.suffix,
|
|
4658
4658
|
className: "text-[clamp(28px,3vw,40px)] [font-variation-settings:'opsz'_96]"
|
|
4659
|
-
}
|
|
4660
|
-
/* @__PURE__ */
|
|
4659
|
+
}),
|
|
4660
|
+
/* @__PURE__ */ jsx11("span", {
|
|
4661
4661
|
className: `${ROLE_CLS} ${ROLE_COLOR[card.suffix]}`,
|
|
4662
4662
|
children: card.title
|
|
4663
|
-
}
|
|
4664
|
-
/* @__PURE__ */
|
|
4663
|
+
}),
|
|
4664
|
+
/* @__PURE__ */ jsx11("p", {
|
|
4665
4665
|
className: TAGLINE_CLS,
|
|
4666
4666
|
children: card.body
|
|
4667
|
-
}
|
|
4668
|
-
isHere ? /* @__PURE__ */
|
|
4667
|
+
}),
|
|
4668
|
+
isHere ? /* @__PURE__ */ jsx11("span", {
|
|
4669
4669
|
className: HERE_CLS,
|
|
4670
4670
|
children: card.linkLabel
|
|
4671
|
-
}
|
|
4671
|
+
}) : /* @__PURE__ */ jsx11("span", {
|
|
4672
4672
|
className: LINK_CLS3,
|
|
4673
4673
|
children: card.linkLabel
|
|
4674
|
-
}
|
|
4674
|
+
})
|
|
4675
4675
|
]
|
|
4676
|
-
}
|
|
4676
|
+
});
|
|
4677
4677
|
const baseClass = `flex flex-col gap-[14px] border-t pt-7 ${isHere ? BORDER_COLOR[card.suffix] : "border-white/10"}`;
|
|
4678
|
-
return isHere || isDisabled ? /* @__PURE__ */
|
|
4678
|
+
return isHere || isDisabled ? /* @__PURE__ */ jsx11("div", {
|
|
4679
4679
|
className: baseClass,
|
|
4680
4680
|
children: inner
|
|
4681
|
-
}
|
|
4681
|
+
}) : /* @__PURE__ */ jsx11("a", {
|
|
4682
4682
|
href: card.linkHref,
|
|
4683
4683
|
className: `${baseClass} text-inherit no-underline transition-colors ${HOVER_BORDER[card.suffix]}`,
|
|
4684
4684
|
children: inner
|
|
4685
|
-
}
|
|
4685
|
+
});
|
|
4686
4686
|
};
|
|
4687
4687
|
var Ecosystem = ({
|
|
4688
4688
|
eyebrow,
|
|
4689
4689
|
headline,
|
|
4690
4690
|
cards
|
|
4691
|
-
}) => /* @__PURE__ */
|
|
4691
|
+
}) => /* @__PURE__ */ jsxs5(Section, {
|
|
4692
4692
|
id: "ecosystem",
|
|
4693
4693
|
className: "pt-[112px] pb-[144px] border-t border-white/5",
|
|
4694
4694
|
children: [
|
|
4695
|
-
/* @__PURE__ */
|
|
4695
|
+
/* @__PURE__ */ jsxs5("div", {
|
|
4696
4696
|
className: "mx-auto mb-[88px] max-w-[1180px] text-center",
|
|
4697
4697
|
children: [
|
|
4698
|
-
/* @__PURE__ */
|
|
4698
|
+
/* @__PURE__ */ jsx11("span", {
|
|
4699
4699
|
className: "font-label text-[11px] font-semibold uppercase tracking-[0.24em] text-accent",
|
|
4700
4700
|
children: eyebrow
|
|
4701
|
-
}
|
|
4702
|
-
/* @__PURE__ */
|
|
4701
|
+
}),
|
|
4702
|
+
/* @__PURE__ */ jsx11("h2", {
|
|
4703
4703
|
className: "mt-5 font-display text-[clamp(34px,4.4vw,60px)] font-[380] leading-[1.04] tracking-[-0.02em] text-heading [font-variation-settings:'opsz'_96]",
|
|
4704
4704
|
children: renderHighlightedText(headline, HIGHLIGHT_CLS)
|
|
4705
|
-
}
|
|
4705
|
+
})
|
|
4706
4706
|
]
|
|
4707
|
-
}
|
|
4708
|
-
/* @__PURE__ */
|
|
4707
|
+
}),
|
|
4708
|
+
/* @__PURE__ */ jsx11("div", {
|
|
4709
4709
|
className: "mx-auto grid max-w-[1180px] grid-cols-3 gap-16 max-[768px]:grid-cols-1 max-[768px]:gap-7",
|
|
4710
|
-
children: cards.map((card) => /* @__PURE__ */
|
|
4710
|
+
children: cards.map((card) => /* @__PURE__ */ jsx11(Card, {
|
|
4711
4711
|
card
|
|
4712
|
-
}, card.suffix
|
|
4713
|
-
}
|
|
4712
|
+
}, card.suffix))
|
|
4713
|
+
})
|
|
4714
4714
|
]
|
|
4715
|
-
}
|
|
4715
|
+
});
|
|
4716
4716
|
// src/rizom/ui/ecosystem-content.ts
|
|
4717
4717
|
var HERE_LABEL2 = "You are here";
|
|
4718
4718
|
var DEFAULT_CARDS = [
|
|
@@ -4747,14 +4747,14 @@ function getRizomEcosystemContent(current) {
|
|
|
4747
4747
|
}
|
|
4748
4748
|
var rizomEcosystemContent = getRizomEcosystemContent();
|
|
4749
4749
|
// src/rizom/runtime/default-layout.tsx
|
|
4750
|
-
import {
|
|
4750
|
+
import { jsx as jsx12 } from "react/jsx-runtime";
|
|
4751
4751
|
var DefaultRizomLayout = ({
|
|
4752
4752
|
sections
|
|
4753
|
-
}) => /* @__PURE__ */
|
|
4754
|
-
children: /* @__PURE__ */
|
|
4753
|
+
}) => /* @__PURE__ */ jsx12(RizomFrame, {
|
|
4754
|
+
children: /* @__PURE__ */ jsx12("main", {
|
|
4755
4755
|
children: sections
|
|
4756
|
-
}
|
|
4757
|
-
}
|
|
4756
|
+
})
|
|
4757
|
+
});
|
|
4758
4758
|
// ../../node_modules/zod/v4/classic/external.js
|
|
4759
4759
|
var exports_external = {};
|
|
4760
4760
|
__export(exports_external, {
|
|
@@ -33022,7 +33022,7 @@ function createRizomSite(options2) {
|
|
|
33022
33022
|
});
|
|
33023
33023
|
}
|
|
33024
33024
|
// src/layout.tsx
|
|
33025
|
-
import {
|
|
33025
|
+
import { jsx as jsx13, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
33026
33026
|
var FACES = [
|
|
33027
33027
|
{ key: "brain", label: "Brain", href: "/brain" },
|
|
33028
33028
|
{ key: "work", label: "Work", href: "/work" },
|
|
@@ -33092,57 +33092,57 @@ function FacesStrip({ path }) {
|
|
|
33092
33092
|
const face = activeFace(path);
|
|
33093
33093
|
const activeIndex = orgIndexActive(path);
|
|
33094
33094
|
const home = isHome(path);
|
|
33095
|
-
return /* @__PURE__ */
|
|
33095
|
+
return /* @__PURE__ */ jsxs6("div", {
|
|
33096
33096
|
className: "relative z-[2] flex flex-wrap items-baseline gap-x-4 gap-y-1.5 border-b border-theme-light px-4 py-3 font-label text-label-xs uppercase tracking-[0.12em] sm:gap-x-6 sm:px-6 sm:tracking-[0.14em] md:px-10 xl:px-20",
|
|
33097
33097
|
children: [
|
|
33098
|
-
/* @__PURE__ */
|
|
33098
|
+
/* @__PURE__ */ jsx13("a", {
|
|
33099
33099
|
href: "/",
|
|
33100
33100
|
className: "-my-2 inline-block py-2 text-theme-muted transition-colors hover:text-theme",
|
|
33101
33101
|
children: "rizom"
|
|
33102
|
-
}
|
|
33103
|
-
FACES.map((item) => item.key === face && !activeIndex && !home ? /* @__PURE__ */
|
|
33102
|
+
}),
|
|
33103
|
+
FACES.map((item) => item.key === face && !activeIndex && !home ? /* @__PURE__ */ jsx13("a", {
|
|
33104
33104
|
href: item.href,
|
|
33105
33105
|
className: "-my-2 inline-block py-2 text-accent",
|
|
33106
33106
|
"aria-current": "page",
|
|
33107
33107
|
children: item.label
|
|
33108
|
-
}, item.key
|
|
33108
|
+
}, item.key) : /* @__PURE__ */ jsx13("a", {
|
|
33109
33109
|
href: item.href,
|
|
33110
33110
|
className: "-my-2 inline-block py-2 text-theme-light transition-colors hover:text-theme",
|
|
33111
33111
|
children: item.label
|
|
33112
|
-
}, item.key
|
|
33113
|
-
/* @__PURE__ */
|
|
33112
|
+
}, item.key)),
|
|
33113
|
+
/* @__PURE__ */ jsx13("div", {
|
|
33114
33114
|
className: "ml-auto flex items-baseline",
|
|
33115
|
-
children: /* @__PURE__ */
|
|
33115
|
+
children: /* @__PURE__ */ jsx13("button", {
|
|
33116
33116
|
id: "themeToggle",
|
|
33117
33117
|
type: "button",
|
|
33118
33118
|
"aria-label": "Toggle color theme",
|
|
33119
33119
|
className: "-my-2 inline-block cursor-pointer py-2 uppercase text-theme-light transition-colors hover:text-theme",
|
|
33120
33120
|
children: "\u2600 Light"
|
|
33121
|
-
}
|
|
33122
|
-
}
|
|
33121
|
+
})
|
|
33122
|
+
})
|
|
33123
33123
|
]
|
|
33124
|
-
}
|
|
33124
|
+
});
|
|
33125
33125
|
}
|
|
33126
33126
|
function Wordmark2({ nameplate }) {
|
|
33127
|
-
return /* @__PURE__ */
|
|
33127
|
+
return /* @__PURE__ */ jsxs6("a", {
|
|
33128
33128
|
href: "/",
|
|
33129
33129
|
className: "font-display text-[clamp(22px,5.5vw,26px)] font-semibold tracking-[-0.01em] [font-variation-settings:'SOFT'_100]",
|
|
33130
33130
|
"aria-label": "Rizom home",
|
|
33131
33131
|
children: [
|
|
33132
|
-
/* @__PURE__ */
|
|
33132
|
+
/* @__PURE__ */ jsx13("span", {
|
|
33133
33133
|
className: "text-theme",
|
|
33134
33134
|
children: "rizom"
|
|
33135
|
-
}
|
|
33136
|
-
/* @__PURE__ */
|
|
33135
|
+
}),
|
|
33136
|
+
/* @__PURE__ */ jsx13("span", {
|
|
33137
33137
|
className: "text-accent",
|
|
33138
33138
|
children: "."
|
|
33139
|
-
}
|
|
33140
|
-
nameplate && /* @__PURE__ */
|
|
33139
|
+
}),
|
|
33140
|
+
nameplate && /* @__PURE__ */ jsx13("span", {
|
|
33141
33141
|
className: "text-[clamp(17px,4.3vw,20px)] font-normal text-theme-muted",
|
|
33142
33142
|
children: nameplate
|
|
33143
|
-
}
|
|
33143
|
+
})
|
|
33144
33144
|
]
|
|
33145
|
-
}
|
|
33145
|
+
});
|
|
33146
33146
|
}
|
|
33147
33147
|
function FaceNav({
|
|
33148
33148
|
face,
|
|
@@ -33150,30 +33150,30 @@ function FaceNav({
|
|
|
33150
33150
|
}) {
|
|
33151
33151
|
const chrome = umbrella ? HOME_CHROME : FACE_CHROME[face];
|
|
33152
33152
|
const links = chrome.links;
|
|
33153
|
-
return /* @__PURE__ */
|
|
33153
|
+
return /* @__PURE__ */ jsxs6("nav", {
|
|
33154
33154
|
className: "relative z-[2] flex items-baseline gap-4 px-4 py-5 sm:gap-8 sm:px-6 md:px-10 xl:px-20",
|
|
33155
33155
|
children: [
|
|
33156
|
-
/* @__PURE__ */
|
|
33156
|
+
/* @__PURE__ */ jsx13(Wordmark2, {
|
|
33157
33157
|
nameplate: chrome.nameplate
|
|
33158
|
-
}
|
|
33159
|
-
/* @__PURE__ */
|
|
33158
|
+
}),
|
|
33159
|
+
/* @__PURE__ */ jsx13("div", {
|
|
33160
33160
|
className: "hidden items-baseline gap-7 sm:flex",
|
|
33161
|
-
children: links.map((link2) => /* @__PURE__ */
|
|
33161
|
+
children: links.map((link2) => /* @__PURE__ */ jsx13("a", {
|
|
33162
33162
|
href: link2.href,
|
|
33163
33163
|
className: "font-body text-[16px] text-theme-light transition-colors hover:text-theme",
|
|
33164
33164
|
children: link2.label
|
|
33165
|
-
}, `${link2.href}-${link2.label}
|
|
33166
|
-
}
|
|
33167
|
-
/* @__PURE__ */
|
|
33165
|
+
}, `${link2.href}-${link2.label}`))
|
|
33166
|
+
}),
|
|
33167
|
+
/* @__PURE__ */ jsx13("div", {
|
|
33168
33168
|
className: "flex-1"
|
|
33169
|
-
}
|
|
33170
|
-
/* @__PURE__ */
|
|
33169
|
+
}),
|
|
33170
|
+
/* @__PURE__ */ jsx13("a", {
|
|
33171
33171
|
href: chrome.cta.href,
|
|
33172
33172
|
className: "self-center whitespace-nowrap rounded-[3px] bg-accent px-3.5 py-2 font-body text-[15px] font-medium text-theme-inverse transition-[filter,transform] hover:brightness-110 hover:-translate-y-px sm:px-[18px] sm:py-[9px] sm:text-[16px]",
|
|
33173
33173
|
children: chrome.cta.label
|
|
33174
|
-
}
|
|
33174
|
+
})
|
|
33175
33175
|
]
|
|
33176
|
-
}
|
|
33176
|
+
});
|
|
33177
33177
|
}
|
|
33178
33178
|
var COPYRIGHT_FALLBACK = "Powered by Rizom";
|
|
33179
33179
|
function signature(siteInfo) {
|
|
@@ -33211,113 +33211,113 @@ var FOOTER_COLUMNS = [
|
|
|
33211
33211
|
function SiteFooter({
|
|
33212
33212
|
siteInfo
|
|
33213
33213
|
}) {
|
|
33214
|
-
return /* @__PURE__ */
|
|
33214
|
+
return /* @__PURE__ */ jsxs6("footer", {
|
|
33215
33215
|
className: "relative z-[1] grid gap-10 border-t border-theme px-4 pt-11 pb-[38px] sm:grid-cols-2 sm:px-6 md:px-10 lg:grid-cols-[1.3fr_1fr_1fr_1fr] xl:px-20",
|
|
33216
33216
|
children: [
|
|
33217
|
-
/* @__PURE__ */
|
|
33217
|
+
/* @__PURE__ */ jsxs6("div", {
|
|
33218
33218
|
children: [
|
|
33219
|
-
/* @__PURE__ */
|
|
33219
|
+
/* @__PURE__ */ jsxs6("a", {
|
|
33220
33220
|
href: "/",
|
|
33221
33221
|
className: "font-display text-[30px] font-semibold tracking-[-0.01em] [font-variation-settings:'SOFT'_100]",
|
|
33222
33222
|
children: [
|
|
33223
|
-
/* @__PURE__ */
|
|
33223
|
+
/* @__PURE__ */ jsx13("span", {
|
|
33224
33224
|
className: "text-theme",
|
|
33225
33225
|
children: "rizom"
|
|
33226
|
-
}
|
|
33227
|
-
/* @__PURE__ */
|
|
33226
|
+
}),
|
|
33227
|
+
/* @__PURE__ */ jsx13("span", {
|
|
33228
33228
|
className: "text-accent",
|
|
33229
33229
|
children: "."
|
|
33230
|
-
}
|
|
33230
|
+
})
|
|
33231
33231
|
]
|
|
33232
|
-
}
|
|
33233
|
-
/* @__PURE__ */
|
|
33232
|
+
}),
|
|
33233
|
+
/* @__PURE__ */ jsx13("p", {
|
|
33234
33234
|
className: "mt-2.5 max-w-[26ch] font-body text-[13.5px] text-theme-light",
|
|
33235
33235
|
children: siteInfo.description
|
|
33236
|
-
}
|
|
33236
|
+
})
|
|
33237
33237
|
]
|
|
33238
|
-
}
|
|
33239
|
-
FOOTER_COLUMNS.map((column) => /* @__PURE__ */
|
|
33238
|
+
}),
|
|
33239
|
+
FOOTER_COLUMNS.map((column) => /* @__PURE__ */ jsxs6("div", {
|
|
33240
33240
|
children: [
|
|
33241
|
-
/* @__PURE__ */
|
|
33241
|
+
/* @__PURE__ */ jsx13("div", {
|
|
33242
33242
|
className: "mb-3 font-label text-[11px] uppercase tracking-[0.18em] text-theme-light",
|
|
33243
33243
|
children: column.heading
|
|
33244
|
-
}
|
|
33245
|
-
column.links.map((link2) => /* @__PURE__ */
|
|
33244
|
+
}),
|
|
33245
|
+
column.links.map((link2) => /* @__PURE__ */ jsx13("a", {
|
|
33246
33246
|
href: link2.href,
|
|
33247
33247
|
className: "block py-1.5 font-body text-[15.5px] text-theme-light no-underline transition-colors hover:text-theme",
|
|
33248
33248
|
children: link2.label
|
|
33249
|
-
}, link2.href + link2.label
|
|
33249
|
+
}, link2.href + link2.label))
|
|
33250
33250
|
]
|
|
33251
|
-
}, column.heading
|
|
33252
|
-
/* @__PURE__ */
|
|
33251
|
+
}, column.heading)),
|
|
33252
|
+
/* @__PURE__ */ jsx13("div", {
|
|
33253
33253
|
className: "col-span-full mt-2 flex flex-wrap items-center gap-x-[22px] gap-y-2 border-t border-theme-light pt-4 font-label text-[11.5px] text-theme-light",
|
|
33254
|
-
children: signature(siteInfo) && /* @__PURE__ */
|
|
33254
|
+
children: signature(siteInfo) && /* @__PURE__ */ jsx13("span", {
|
|
33255
33255
|
children: signature(siteInfo)
|
|
33256
|
-
}
|
|
33257
|
-
}
|
|
33256
|
+
})
|
|
33257
|
+
})
|
|
33258
33258
|
]
|
|
33259
|
-
}
|
|
33259
|
+
});
|
|
33260
33260
|
}
|
|
33261
33261
|
function MyceliumRail() {
|
|
33262
|
-
return /* @__PURE__ */
|
|
33262
|
+
return /* @__PURE__ */ jsxs6("svg", {
|
|
33263
33263
|
"aria-hidden": "true",
|
|
33264
33264
|
className: "pointer-events-none absolute top-0 -left-[18px] hidden h-full w-[210px] xl:block",
|
|
33265
33265
|
viewBox: "0 0 210 2400",
|
|
33266
33266
|
preserveAspectRatio: "xMidYMin slice",
|
|
33267
33267
|
children: [
|
|
33268
|
-
/* @__PURE__ */
|
|
33268
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33269
33269
|
className: "myc-root",
|
|
33270
33270
|
d: "M96,0 C74,180 120,320 98,500 C76,680 122,820 100,1040 C80,1230 116,1380 100,1580 C88,1760 112,1900 98,2100 C90,2250 104,2330 98,2400"
|
|
33271
|
-
}
|
|
33272
|
-
/* @__PURE__ */
|
|
33271
|
+
}),
|
|
33272
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33273
33273
|
className: "myc-twig",
|
|
33274
33274
|
d: "M98,500 C140,530 165,515 196,540"
|
|
33275
|
-
}
|
|
33276
|
-
/* @__PURE__ */
|
|
33275
|
+
}),
|
|
33276
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33277
33277
|
className: "myc-twig",
|
|
33278
33278
|
d: "M100,1040 C56,1080 44,1140 26,1160"
|
|
33279
|
-
}
|
|
33280
|
-
/* @__PURE__ */
|
|
33279
|
+
}),
|
|
33280
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33281
33281
|
className: "myc-twig",
|
|
33282
33282
|
d: "M100,1580 C146,1610 158,1665 190,1680"
|
|
33283
|
-
}
|
|
33284
|
-
/* @__PURE__ */
|
|
33283
|
+
}),
|
|
33284
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33285
33285
|
className: "myc-twig",
|
|
33286
33286
|
d: "M98,2100 C58,2140 50,2190 32,2205"
|
|
33287
|
-
}
|
|
33288
|
-
/* @__PURE__ */
|
|
33287
|
+
}),
|
|
33288
|
+
/* @__PURE__ */ jsx13("path", {
|
|
33289
33289
|
className: "myc-twig",
|
|
33290
33290
|
d: "M86,250 C52,272 46,310 28,320"
|
|
33291
|
-
}
|
|
33292
|
-
/* @__PURE__ */
|
|
33291
|
+
}),
|
|
33292
|
+
/* @__PURE__ */ jsx13("circle", {
|
|
33293
33293
|
className: "myc-node",
|
|
33294
33294
|
cx: "98",
|
|
33295
33295
|
cy: "500",
|
|
33296
33296
|
r: "4"
|
|
33297
|
-
}
|
|
33298
|
-
/* @__PURE__ */
|
|
33297
|
+
}),
|
|
33298
|
+
/* @__PURE__ */ jsx13("circle", {
|
|
33299
33299
|
className: "myc-node",
|
|
33300
33300
|
cx: "100",
|
|
33301
33301
|
cy: "1040",
|
|
33302
33302
|
r: "4",
|
|
33303
33303
|
style: { animationDelay: ".9s" }
|
|
33304
|
-
}
|
|
33305
|
-
/* @__PURE__ */
|
|
33304
|
+
}),
|
|
33305
|
+
/* @__PURE__ */ jsx13("circle", {
|
|
33306
33306
|
className: "myc-node",
|
|
33307
33307
|
cx: "100",
|
|
33308
33308
|
cy: "1580",
|
|
33309
33309
|
r: "4",
|
|
33310
33310
|
style: { animationDelay: "1.7s" }
|
|
33311
|
-
}
|
|
33312
|
-
/* @__PURE__ */
|
|
33311
|
+
}),
|
|
33312
|
+
/* @__PURE__ */ jsx13("circle", {
|
|
33313
33313
|
className: "myc-node",
|
|
33314
33314
|
cx: "98",
|
|
33315
33315
|
cy: "2100",
|
|
33316
33316
|
r: "4",
|
|
33317
33317
|
style: { animationDelay: "2.4s" }
|
|
33318
|
-
}
|
|
33318
|
+
})
|
|
33319
33319
|
]
|
|
33320
|
-
}
|
|
33320
|
+
});
|
|
33321
33321
|
}
|
|
33322
33322
|
function RizomAiChrome({
|
|
33323
33323
|
path,
|
|
@@ -33326,437 +33326,437 @@ function RizomAiChrome({
|
|
|
33326
33326
|
}) {
|
|
33327
33327
|
const face = activeFace(path);
|
|
33328
33328
|
const umbrella = isHome(path) || orgIndexActive(path) !== null;
|
|
33329
|
-
return /* @__PURE__ */
|
|
33330
|
-
children: /* @__PURE__ */
|
|
33329
|
+
return /* @__PURE__ */ jsx13(RizomFrame, {
|
|
33330
|
+
children: /* @__PURE__ */ jsxs6("div", {
|
|
33331
33331
|
"data-room": face,
|
|
33332
33332
|
className: "relative xl:pl-[68px]",
|
|
33333
33333
|
children: [
|
|
33334
|
-
/* @__PURE__ */
|
|
33335
|
-
/* @__PURE__ */
|
|
33334
|
+
/* @__PURE__ */ jsx13(MyceliumRail, {}),
|
|
33335
|
+
/* @__PURE__ */ jsxs6("header", {
|
|
33336
33336
|
className: "sticky top-0 z-[100] border-b border-theme-light bg-nav-fade backdrop-blur-[12px]",
|
|
33337
33337
|
children: [
|
|
33338
|
-
/* @__PURE__ */
|
|
33338
|
+
/* @__PURE__ */ jsx13(FacesStrip, {
|
|
33339
33339
|
path
|
|
33340
|
-
}
|
|
33341
|
-
/* @__PURE__ */
|
|
33340
|
+
}),
|
|
33341
|
+
/* @__PURE__ */ jsx13(FaceNav, {
|
|
33342
33342
|
face,
|
|
33343
33343
|
umbrella
|
|
33344
|
-
}
|
|
33344
|
+
})
|
|
33345
33345
|
]
|
|
33346
|
-
}
|
|
33347
|
-
/* @__PURE__ */
|
|
33346
|
+
}),
|
|
33347
|
+
/* @__PURE__ */ jsx13("main", {
|
|
33348
33348
|
children
|
|
33349
|
-
}
|
|
33350
|
-
/* @__PURE__ */
|
|
33349
|
+
}),
|
|
33350
|
+
/* @__PURE__ */ jsx13(SiteFooter, {
|
|
33351
33351
|
siteInfo
|
|
33352
|
-
}
|
|
33352
|
+
})
|
|
33353
33353
|
]
|
|
33354
|
-
}
|
|
33355
|
-
}
|
|
33354
|
+
})
|
|
33355
|
+
});
|
|
33356
33356
|
}
|
|
33357
33357
|
var AiLayout = ({
|
|
33358
33358
|
sections,
|
|
33359
33359
|
path,
|
|
33360
33360
|
siteInfo
|
|
33361
|
-
}) => /* @__PURE__ */
|
|
33361
|
+
}) => /* @__PURE__ */ jsx13(RizomAiChrome, {
|
|
33362
33362
|
path,
|
|
33363
33363
|
siteInfo,
|
|
33364
33364
|
children: sections
|
|
33365
|
-
}
|
|
33365
|
+
});
|
|
33366
33366
|
|
|
33367
33367
|
// src/growth-diagram.tsx
|
|
33368
|
-
import {
|
|
33368
|
+
import { jsx as jsx14, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
33369
33369
|
function growthDelay(delay) {
|
|
33370
33370
|
return { "--d": delay };
|
|
33371
33371
|
}
|
|
33372
33372
|
function GrowthDiagram() {
|
|
33373
|
-
return /* @__PURE__ */
|
|
33373
|
+
return /* @__PURE__ */ jsx14("div", {
|
|
33374
33374
|
className: "growth reveal reveal-delay-1 mt-5",
|
|
33375
|
-
children: /* @__PURE__ */
|
|
33375
|
+
children: /* @__PURE__ */ jsxs7("svg", {
|
|
33376
33376
|
viewBox: "0 0 980 274",
|
|
33377
33377
|
role: "img",
|
|
33378
33378
|
"aria-label": "One brain growing into a team, then a network",
|
|
33379
33379
|
children: [
|
|
33380
|
-
/* @__PURE__ */
|
|
33380
|
+
/* @__PURE__ */ jsxs7("defs", {
|
|
33381
33381
|
children: [
|
|
33382
|
-
/* @__PURE__ */
|
|
33382
|
+
/* @__PURE__ */ jsxs7("radialGradient", {
|
|
33383
33383
|
id: "zw-you",
|
|
33384
33384
|
cx: "50%",
|
|
33385
33385
|
cy: "50%",
|
|
33386
33386
|
r: "50%",
|
|
33387
33387
|
children: [
|
|
33388
|
-
/* @__PURE__ */
|
|
33388
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33389
33389
|
offset: "0%",
|
|
33390
33390
|
stopColor: "#d4af37",
|
|
33391
33391
|
stopOpacity: ".1"
|
|
33392
|
-
}
|
|
33393
|
-
/* @__PURE__ */
|
|
33392
|
+
}),
|
|
33393
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33394
33394
|
offset: "100%",
|
|
33395
33395
|
stopColor: "#d4af37",
|
|
33396
33396
|
stopOpacity: "0"
|
|
33397
|
-
}
|
|
33397
|
+
})
|
|
33398
33398
|
]
|
|
33399
|
-
}
|
|
33400
|
-
/* @__PURE__ */
|
|
33399
|
+
}),
|
|
33400
|
+
/* @__PURE__ */ jsxs7("radialGradient", {
|
|
33401
33401
|
id: "zw-team",
|
|
33402
33402
|
cx: "50%",
|
|
33403
33403
|
cy: "50%",
|
|
33404
33404
|
r: "50%",
|
|
33405
33405
|
children: [
|
|
33406
|
-
/* @__PURE__ */
|
|
33406
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33407
33407
|
offset: "0%",
|
|
33408
33408
|
stopColor: "#e07a6a",
|
|
33409
33409
|
stopOpacity: ".08"
|
|
33410
|
-
}
|
|
33411
|
-
/* @__PURE__ */
|
|
33410
|
+
}),
|
|
33411
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33412
33412
|
offset: "100%",
|
|
33413
33413
|
stopColor: "#e07a6a",
|
|
33414
33414
|
stopOpacity: "0"
|
|
33415
|
-
}
|
|
33415
|
+
})
|
|
33416
33416
|
]
|
|
33417
|
-
}
|
|
33418
|
-
/* @__PURE__ */
|
|
33417
|
+
}),
|
|
33418
|
+
/* @__PURE__ */ jsxs7("radialGradient", {
|
|
33419
33419
|
id: "zw-net",
|
|
33420
33420
|
cx: "50%",
|
|
33421
33421
|
cy: "50%",
|
|
33422
33422
|
r: "50%",
|
|
33423
33423
|
children: [
|
|
33424
|
-
/* @__PURE__ */
|
|
33424
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33425
33425
|
offset: "0%",
|
|
33426
33426
|
stopColor: "#9caf88",
|
|
33427
33427
|
stopOpacity: ".08"
|
|
33428
|
-
}
|
|
33429
|
-
/* @__PURE__ */
|
|
33428
|
+
}),
|
|
33429
|
+
/* @__PURE__ */ jsx14("stop", {
|
|
33430
33430
|
offset: "100%",
|
|
33431
33431
|
stopColor: "#9caf88",
|
|
33432
33432
|
stopOpacity: "0"
|
|
33433
|
-
}
|
|
33433
|
+
})
|
|
33434
33434
|
]
|
|
33435
|
-
}
|
|
33435
|
+
})
|
|
33436
33436
|
]
|
|
33437
|
-
}
|
|
33438
|
-
/* @__PURE__ */
|
|
33437
|
+
}),
|
|
33438
|
+
/* @__PURE__ */ jsx14("ellipse", {
|
|
33439
33439
|
cx: "110",
|
|
33440
33440
|
cy: "130",
|
|
33441
33441
|
rx: "110",
|
|
33442
33442
|
ry: "95",
|
|
33443
33443
|
fill: "url(#zw-you)"
|
|
33444
|
-
}
|
|
33445
|
-
/* @__PURE__ */
|
|
33444
|
+
}),
|
|
33445
|
+
/* @__PURE__ */ jsx14("ellipse", {
|
|
33446
33446
|
cx: "440",
|
|
33447
33447
|
cy: "128",
|
|
33448
33448
|
rx: "160",
|
|
33449
33449
|
ry: "110",
|
|
33450
33450
|
fill: "url(#zw-team)"
|
|
33451
|
-
}
|
|
33452
|
-
/* @__PURE__ */
|
|
33451
|
+
}),
|
|
33452
|
+
/* @__PURE__ */ jsx14("ellipse", {
|
|
33453
33453
|
cx: "790",
|
|
33454
33454
|
cy: "125",
|
|
33455
33455
|
rx: "190",
|
|
33456
33456
|
ry: "120",
|
|
33457
33457
|
fill: "url(#zw-net)"
|
|
33458
|
-
}
|
|
33459
|
-
/* @__PURE__ */
|
|
33458
|
+
}),
|
|
33459
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33460
33460
|
className: "fil hair draw",
|
|
33461
33461
|
pathLength: 1,
|
|
33462
33462
|
style: growthDelay("0s"),
|
|
33463
33463
|
d: "M-20,150 C20,146 60,140 96,134"
|
|
33464
|
-
}
|
|
33465
|
-
/* @__PURE__ */
|
|
33464
|
+
}),
|
|
33465
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33466
33466
|
className: "gn you",
|
|
33467
33467
|
cx: "110",
|
|
33468
33468
|
cy: "130",
|
|
33469
33469
|
r: "10",
|
|
33470
33470
|
style: growthDelay(".1s")
|
|
33471
|
-
}
|
|
33472
|
-
/* @__PURE__ */
|
|
33471
|
+
}),
|
|
33472
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33473
33473
|
className: "fil draw",
|
|
33474
33474
|
pathLength: 1,
|
|
33475
33475
|
style: growthDelay(".25s"),
|
|
33476
33476
|
d: "M121,125 C190,102 260,92 336,96 C360,97 380,99 398,103"
|
|
33477
|
-
}
|
|
33478
|
-
/* @__PURE__ */
|
|
33477
|
+
}),
|
|
33478
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33479
33479
|
className: "fil draw",
|
|
33480
33480
|
pathLength: 1,
|
|
33481
33481
|
style: growthDelay(".35s"),
|
|
33482
33482
|
d: "M122,133 C200,140 280,146 356,152 C372,153 384,156 396,160"
|
|
33483
|
-
}
|
|
33484
|
-
/* @__PURE__ */
|
|
33483
|
+
}),
|
|
33484
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33485
33485
|
className: "fil fine draw",
|
|
33486
33486
|
pathLength: 1,
|
|
33487
33487
|
style: growthDelay(".45s"),
|
|
33488
33488
|
d: "M118,140 C170,175 240,196 320,196 C350,196 380,190 404,180"
|
|
33489
|
-
}
|
|
33490
|
-
/* @__PURE__ */
|
|
33489
|
+
}),
|
|
33490
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33491
33491
|
className: "gn seed",
|
|
33492
33492
|
cx: "408",
|
|
33493
33493
|
cy: "104",
|
|
33494
33494
|
r: "7",
|
|
33495
33495
|
style: growthDelay(".55s")
|
|
33496
|
-
}
|
|
33497
|
-
/* @__PURE__ */
|
|
33496
|
+
}),
|
|
33497
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33498
33498
|
className: "gn peer",
|
|
33499
33499
|
cx: "472",
|
|
33500
33500
|
cy: "80",
|
|
33501
33501
|
r: "6",
|
|
33502
33502
|
style: growthDelay(".65s")
|
|
33503
|
-
}
|
|
33504
|
-
/* @__PURE__ */
|
|
33503
|
+
}),
|
|
33504
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33505
33505
|
className: "gn peer",
|
|
33506
33506
|
cx: "506",
|
|
33507
33507
|
cy: "132",
|
|
33508
33508
|
r: "6.5",
|
|
33509
33509
|
style: growthDelay(".72s")
|
|
33510
|
-
}
|
|
33511
|
-
/* @__PURE__ */
|
|
33510
|
+
}),
|
|
33511
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33512
33512
|
className: "gn peer",
|
|
33513
33513
|
cx: "462",
|
|
33514
33514
|
cy: "182",
|
|
33515
33515
|
r: "6",
|
|
33516
33516
|
style: growthDelay(".8s")
|
|
33517
|
-
}
|
|
33518
|
-
/* @__PURE__ */
|
|
33517
|
+
}),
|
|
33518
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33519
33519
|
className: "gn peer",
|
|
33520
33520
|
cx: "402",
|
|
33521
33521
|
cy: "163",
|
|
33522
33522
|
r: "5.5",
|
|
33523
33523
|
style: growthDelay(".87s")
|
|
33524
|
-
}
|
|
33525
|
-
/* @__PURE__ */
|
|
33524
|
+
}),
|
|
33525
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33526
33526
|
className: "fil fine w-team draw",
|
|
33527
33527
|
pathLength: 1,
|
|
33528
33528
|
style: growthDelay(".7s"),
|
|
33529
33529
|
d: "M414,100 C436,90 452,84 466,81"
|
|
33530
|
-
}
|
|
33531
|
-
/* @__PURE__ */
|
|
33530
|
+
}),
|
|
33531
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33532
33532
|
className: "fil fine w-team draw",
|
|
33533
33533
|
pathLength: 1,
|
|
33534
33534
|
style: growthDelay(".76s"),
|
|
33535
33535
|
d: "M477,85 C490,99 498,114 503,126"
|
|
33536
|
-
}
|
|
33537
|
-
/* @__PURE__ */
|
|
33536
|
+
}),
|
|
33537
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33538
33538
|
className: "fil fine w-team draw",
|
|
33539
33539
|
pathLength: 1,
|
|
33540
33540
|
style: growthDelay(".82s"),
|
|
33541
33541
|
d: "M503,138 C492,155 478,170 468,177"
|
|
33542
|
-
}
|
|
33543
|
-
/* @__PURE__ */
|
|
33542
|
+
}),
|
|
33543
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33544
33544
|
className: "fil fine w-team draw",
|
|
33545
33545
|
pathLength: 1,
|
|
33546
33546
|
style: growthDelay(".88s"),
|
|
33547
33547
|
d: "M456,181 C438,177 420,171 408,166"
|
|
33548
|
-
}
|
|
33549
|
-
/* @__PURE__ */
|
|
33548
|
+
}),
|
|
33549
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33550
33550
|
className: "fil fine w-team draw",
|
|
33551
33551
|
pathLength: 1,
|
|
33552
33552
|
style: growthDelay(".94s"),
|
|
33553
33553
|
d: "M404,158 C405,141 406,122 407,111"
|
|
33554
|
-
}
|
|
33555
|
-
/* @__PURE__ */
|
|
33554
|
+
}),
|
|
33555
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33556
33556
|
className: "fil hair w-team draw",
|
|
33557
33557
|
pathLength: 1,
|
|
33558
33558
|
style: growthDelay("1s"),
|
|
33559
33559
|
d: "M413,109 C443,132 470,152 460,177 M470,86 C450,118 430,146 407,160"
|
|
33560
|
-
}
|
|
33561
|
-
/* @__PURE__ */
|
|
33560
|
+
}),
|
|
33561
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33562
33562
|
className: "fil draw",
|
|
33563
33563
|
pathLength: 1,
|
|
33564
33564
|
style: growthDelay("1.05s"),
|
|
33565
33565
|
d: "M512,128 C570,116 630,104 688,96 C700,94 710,93 720,92"
|
|
33566
|
-
}
|
|
33567
|
-
/* @__PURE__ */
|
|
33566
|
+
}),
|
|
33567
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33568
33568
|
className: "fil fine draw",
|
|
33569
33569
|
pathLength: 1,
|
|
33570
33570
|
style: growthDelay("1.15s"),
|
|
33571
33571
|
d: "M478,76 C540,58 610,50 672,56 C690,58 706,62 718,66"
|
|
33572
|
-
}
|
|
33573
|
-
/* @__PURE__ */
|
|
33572
|
+
}),
|
|
33573
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33574
33574
|
className: "fil fine draw",
|
|
33575
33575
|
pathLength: 1,
|
|
33576
33576
|
style: growthDelay("1.25s"),
|
|
33577
33577
|
d: "M468,186 C530,196 600,198 660,188 C680,184 700,178 716,172"
|
|
33578
|
-
}
|
|
33579
|
-
/* @__PURE__ */
|
|
33578
|
+
}),
|
|
33579
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33580
33580
|
className: "gn seed",
|
|
33581
33581
|
cx: "726",
|
|
33582
33582
|
cy: "90",
|
|
33583
33583
|
r: "6",
|
|
33584
33584
|
style: growthDelay("1.35s")
|
|
33585
|
-
}
|
|
33586
|
-
/* @__PURE__ */
|
|
33585
|
+
}),
|
|
33586
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33587
33587
|
className: "gn peer",
|
|
33588
33588
|
cx: "782",
|
|
33589
33589
|
cy: "56",
|
|
33590
33590
|
r: "5.5",
|
|
33591
33591
|
style: growthDelay("1.42s")
|
|
33592
|
-
}
|
|
33593
|
-
/* @__PURE__ */
|
|
33592
|
+
}),
|
|
33593
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33594
33594
|
className: "gn peer",
|
|
33595
33595
|
cx: "838",
|
|
33596
33596
|
cy: "92",
|
|
33597
33597
|
r: "6",
|
|
33598
33598
|
style: growthDelay("1.5s")
|
|
33599
|
-
}
|
|
33600
|
-
/* @__PURE__ */
|
|
33599
|
+
}),
|
|
33600
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33601
33601
|
className: "gn peer",
|
|
33602
33602
|
cx: "864",
|
|
33603
33603
|
cy: "150",
|
|
33604
33604
|
r: "5.5",
|
|
33605
33605
|
style: growthDelay("1.58s")
|
|
33606
|
-
}
|
|
33607
|
-
/* @__PURE__ */
|
|
33606
|
+
}),
|
|
33607
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33608
33608
|
className: "gn peer",
|
|
33609
33609
|
cx: "796",
|
|
33610
33610
|
cy: "180",
|
|
33611
33611
|
r: "5",
|
|
33612
33612
|
style: growthDelay("1.65s")
|
|
33613
|
-
}
|
|
33614
|
-
/* @__PURE__ */
|
|
33613
|
+
}),
|
|
33614
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33615
33615
|
className: "gn peer",
|
|
33616
33616
|
cx: "726",
|
|
33617
33617
|
cy: "166",
|
|
33618
33618
|
r: "5",
|
|
33619
33619
|
style: growthDelay("1.72s")
|
|
33620
|
-
}
|
|
33621
|
-
/* @__PURE__ */
|
|
33620
|
+
}),
|
|
33621
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33622
33622
|
className: "fil fine w-net draw",
|
|
33623
33623
|
pathLength: 1,
|
|
33624
33624
|
style: growthDelay("1.45s"),
|
|
33625
33625
|
d: "M731,86 C749,74 764,64 776,59"
|
|
33626
|
-
}
|
|
33627
|
-
/* @__PURE__ */
|
|
33626
|
+
}),
|
|
33627
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33628
33628
|
className: "fil fine w-net draw",
|
|
33629
33629
|
pathLength: 1,
|
|
33630
33630
|
style: growthDelay("1.52s"),
|
|
33631
33631
|
d: "M788,59 C806,68 822,79 832,87"
|
|
33632
|
-
}
|
|
33633
|
-
/* @__PURE__ */
|
|
33632
|
+
}),
|
|
33633
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33634
33634
|
className: "fil fine w-net draw",
|
|
33635
33635
|
pathLength: 1,
|
|
33636
33636
|
style: growthDelay("1.6s"),
|
|
33637
33637
|
d: "M841,98 C851,114 858,132 862,144"
|
|
33638
|
-
}
|
|
33639
|
-
/* @__PURE__ */
|
|
33638
|
+
}),
|
|
33639
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33640
33640
|
className: "fil fine w-net draw",
|
|
33641
33641
|
pathLength: 1,
|
|
33642
33642
|
style: growthDelay("1.67s"),
|
|
33643
33643
|
d: "M858,155 C840,166 820,175 803,178"
|
|
33644
|
-
}
|
|
33645
|
-
/* @__PURE__ */
|
|
33644
|
+
}),
|
|
33645
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33646
33646
|
className: "fil fine w-net draw",
|
|
33647
33647
|
pathLength: 1,
|
|
33648
33648
|
style: growthDelay("1.74s"),
|
|
33649
33649
|
d: "M790,180 C768,177 746,172 732,169"
|
|
33650
|
-
}
|
|
33651
|
-
/* @__PURE__ */
|
|
33650
|
+
}),
|
|
33651
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33652
33652
|
className: "fil hair w-net draw",
|
|
33653
33653
|
pathLength: 1,
|
|
33654
33654
|
style: growthDelay("1.8s"),
|
|
33655
33655
|
d: "M727,161 C727,141 727,116 727,97 M733,93 C766,120 800,146 858,152 M780,62 C788,100 794,140 795,173"
|
|
33656
|
-
}
|
|
33657
|
-
/* @__PURE__ */
|
|
33656
|
+
}),
|
|
33657
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33658
33658
|
className: "gn faint",
|
|
33659
33659
|
cx: "912",
|
|
33660
33660
|
cy: "66",
|
|
33661
33661
|
r: "5",
|
|
33662
33662
|
style: growthDelay("1.9s")
|
|
33663
|
-
}
|
|
33664
|
-
/* @__PURE__ */
|
|
33663
|
+
}),
|
|
33664
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33665
33665
|
className: "gn faint",
|
|
33666
33666
|
cx: "936",
|
|
33667
33667
|
cy: "140",
|
|
33668
33668
|
r: "4.5",
|
|
33669
33669
|
style: growthDelay("2s")
|
|
33670
|
-
}
|
|
33671
|
-
/* @__PURE__ */
|
|
33670
|
+
}),
|
|
33671
|
+
/* @__PURE__ */ jsx14("circle", {
|
|
33672
33672
|
className: "gn faint",
|
|
33673
33673
|
cx: "886",
|
|
33674
33674
|
cy: "205",
|
|
33675
33675
|
r: "4",
|
|
33676
33676
|
style: growthDelay("2.1s")
|
|
33677
|
-
}
|
|
33678
|
-
/* @__PURE__ */
|
|
33677
|
+
}),
|
|
33678
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33679
33679
|
className: "fil hair draw",
|
|
33680
33680
|
pathLength: 1,
|
|
33681
33681
|
style: growthDelay("1.95s"),
|
|
33682
33682
|
d: "M843,88 C868,79 888,72 906,68"
|
|
33683
|
-
}
|
|
33684
|
-
/* @__PURE__ */
|
|
33683
|
+
}),
|
|
33684
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33685
33685
|
className: "fil hair draw",
|
|
33686
33686
|
pathLength: 1,
|
|
33687
33687
|
style: growthDelay("2.05s"),
|
|
33688
33688
|
d: "M869,146 C892,144 912,142 930,140"
|
|
33689
|
-
}
|
|
33690
|
-
/* @__PURE__ */
|
|
33689
|
+
}),
|
|
33690
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33691
33691
|
className: "fil hair draw",
|
|
33692
33692
|
pathLength: 1,
|
|
33693
33693
|
style: growthDelay("2.15s"),
|
|
33694
33694
|
d: "M801,184 C830,193 856,200 880,204"
|
|
33695
|
-
}
|
|
33696
|
-
/* @__PURE__ */
|
|
33695
|
+
}),
|
|
33696
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33697
33697
|
className: "fil hair draw",
|
|
33698
33698
|
pathLength: 1,
|
|
33699
33699
|
style: growthDelay("2.2s"),
|
|
33700
33700
|
d: "M917,64 C940,60 960,58 990,56"
|
|
33701
|
-
}
|
|
33702
|
-
/* @__PURE__ */
|
|
33701
|
+
}),
|
|
33702
|
+
/* @__PURE__ */ jsx14("path", {
|
|
33703
33703
|
className: "fil hair draw",
|
|
33704
33704
|
pathLength: 1,
|
|
33705
33705
|
style: growthDelay("2.3s"),
|
|
33706
33706
|
d: "M941,141 C958,141 972,140 995,139"
|
|
33707
|
-
}
|
|
33708
|
-
/* @__PURE__ */
|
|
33707
|
+
}),
|
|
33708
|
+
/* @__PURE__ */ jsx14("line", {
|
|
33709
33709
|
className: "tick",
|
|
33710
33710
|
x1: "110",
|
|
33711
33711
|
y1: "238",
|
|
33712
33712
|
x2: "110",
|
|
33713
33713
|
y2: "248"
|
|
33714
|
-
}
|
|
33715
|
-
/* @__PURE__ */
|
|
33714
|
+
}),
|
|
33715
|
+
/* @__PURE__ */ jsx14("text", {
|
|
33716
33716
|
className: "gt-you",
|
|
33717
33717
|
x: "110",
|
|
33718
33718
|
y: "264",
|
|
33719
33719
|
textAnchor: "middle",
|
|
33720
33720
|
style: growthDelay(".4s"),
|
|
33721
33721
|
children: "You"
|
|
33722
|
-
}
|
|
33723
|
-
/* @__PURE__ */
|
|
33722
|
+
}),
|
|
33723
|
+
/* @__PURE__ */ jsx14("line", {
|
|
33724
33724
|
className: "tick",
|
|
33725
33725
|
x1: "452",
|
|
33726
33726
|
y1: "238",
|
|
33727
33727
|
x2: "452",
|
|
33728
33728
|
y2: "248"
|
|
33729
|
-
}
|
|
33730
|
-
/* @__PURE__ */
|
|
33729
|
+
}),
|
|
33730
|
+
/* @__PURE__ */ jsx14("text", {
|
|
33731
33731
|
className: "gt-team",
|
|
33732
33732
|
x: "452",
|
|
33733
33733
|
y: "264",
|
|
33734
33734
|
textAnchor: "middle",
|
|
33735
33735
|
style: growthDelay("1s"),
|
|
33736
33736
|
children: "Team"
|
|
33737
|
-
}
|
|
33738
|
-
/* @__PURE__ */
|
|
33737
|
+
}),
|
|
33738
|
+
/* @__PURE__ */ jsx14("line", {
|
|
33739
33739
|
className: "tick",
|
|
33740
33740
|
x1: "795",
|
|
33741
33741
|
y1: "238",
|
|
33742
33742
|
x2: "795",
|
|
33743
33743
|
y2: "248"
|
|
33744
|
-
}
|
|
33745
|
-
/* @__PURE__ */
|
|
33744
|
+
}),
|
|
33745
|
+
/* @__PURE__ */ jsx14("text", {
|
|
33746
33746
|
className: "gt-net",
|
|
33747
33747
|
x: "795",
|
|
33748
33748
|
y: "264",
|
|
33749
33749
|
textAnchor: "middle",
|
|
33750
33750
|
style: growthDelay("1.7s"),
|
|
33751
33751
|
children: "Network"
|
|
33752
|
-
}
|
|
33752
|
+
})
|
|
33753
33753
|
]
|
|
33754
|
-
}
|
|
33755
|
-
}
|
|
33754
|
+
})
|
|
33755
|
+
});
|
|
33756
33756
|
}
|
|
33757
33757
|
|
|
33758
33758
|
// src/shared.tsx
|
|
33759
|
-
import {
|
|
33759
|
+
import { jsx as jsx15, jsxs as jsxs8, Fragment as Fragment3 } from "react/jsx-runtime";
|
|
33760
33760
|
var ctaSchema = exports_external.object({
|
|
33761
33761
|
label: exports_external.string(),
|
|
33762
33762
|
href: exports_external.string()
|
|
@@ -33769,141 +33769,141 @@ function SectCap({
|
|
|
33769
33769
|
className = ""
|
|
33770
33770
|
}) {
|
|
33771
33771
|
const cold = tone === "cold";
|
|
33772
|
-
return /* @__PURE__ */
|
|
33772
|
+
return /* @__PURE__ */ jsxs8("p", {
|
|
33773
33773
|
className: `reveal flex flex-wrap items-baseline gap-3.5 font-label text-label-xs uppercase tracking-[0.2em] ${className}`,
|
|
33774
33774
|
children: [
|
|
33775
|
-
/* @__PURE__ */
|
|
33775
|
+
/* @__PURE__ */ jsxs8("span", {
|
|
33776
33776
|
className: "flex items-baseline gap-3.5",
|
|
33777
33777
|
children: [
|
|
33778
|
-
/* @__PURE__ */
|
|
33778
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33779
33779
|
"aria-hidden": "true",
|
|
33780
33780
|
className: `h-px w-[26px] self-center opacity-80 ${cold ? "bg-[color:var(--color-text-light)]" : "bg-accent"}`
|
|
33781
|
-
}
|
|
33782
|
-
/* @__PURE__ */
|
|
33781
|
+
}),
|
|
33782
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33783
33783
|
className: `font-medium ${cold ? "text-theme-light" : "text-accent"}`,
|
|
33784
33784
|
children: lead
|
|
33785
|
-
}
|
|
33785
|
+
})
|
|
33786
33786
|
]
|
|
33787
|
-
}
|
|
33788
|
-
trail && /* @__PURE__ */
|
|
33787
|
+
}),
|
|
33788
|
+
trail && /* @__PURE__ */ jsx15("span", {
|
|
33789
33789
|
className: "normal-case tracking-[0.1em] text-theme-light",
|
|
33790
33790
|
children: trail
|
|
33791
|
-
}
|
|
33791
|
+
})
|
|
33792
33792
|
]
|
|
33793
|
-
}
|
|
33793
|
+
});
|
|
33794
33794
|
}
|
|
33795
33795
|
function CtaRow({
|
|
33796
33796
|
primaryCta,
|
|
33797
33797
|
secondaryCta,
|
|
33798
33798
|
className = ""
|
|
33799
33799
|
}) {
|
|
33800
|
-
return /* @__PURE__ */
|
|
33800
|
+
return /* @__PURE__ */ jsxs8("div", {
|
|
33801
33801
|
className: `flex flex-col gap-4 sm:flex-row sm:items-baseline sm:gap-[26px] ${className}`,
|
|
33802
33802
|
children: [
|
|
33803
|
-
/* @__PURE__ */
|
|
33803
|
+
/* @__PURE__ */ jsx15(Button, {
|
|
33804
33804
|
href: primaryCta.href,
|
|
33805
33805
|
variant: "primary",
|
|
33806
33806
|
children: primaryCta.label
|
|
33807
|
-
}
|
|
33808
|
-
/* @__PURE__ */
|
|
33807
|
+
}),
|
|
33808
|
+
/* @__PURE__ */ jsx15(Button, {
|
|
33809
33809
|
href: secondaryCta.href,
|
|
33810
33810
|
variant: "secondary",
|
|
33811
33811
|
children: secondaryCta.label
|
|
33812
|
-
}
|
|
33812
|
+
})
|
|
33813
33813
|
]
|
|
33814
|
-
}
|
|
33814
|
+
});
|
|
33815
33815
|
}
|
|
33816
33816
|
function Band({
|
|
33817
33817
|
quote,
|
|
33818
33818
|
children
|
|
33819
33819
|
}) {
|
|
33820
|
-
return /* @__PURE__ */
|
|
33820
|
+
return /* @__PURE__ */ jsxs8(Section, {
|
|
33821
33821
|
className: "relative overflow-hidden py-[74px]",
|
|
33822
33822
|
children: [
|
|
33823
|
-
/* @__PURE__ */
|
|
33823
|
+
/* @__PURE__ */ jsx15("div", {
|
|
33824
33824
|
"aria-hidden": "true",
|
|
33825
33825
|
className: "pointer-events-none absolute inset-0 bg-[radial-gradient(640px_300px_at_78%_30%,var(--color-wash-a),transparent_68%)] opacity-50"
|
|
33826
|
-
}
|
|
33827
|
-
/* @__PURE__ */
|
|
33826
|
+
}),
|
|
33827
|
+
/* @__PURE__ */ jsxs8("div", {
|
|
33828
33828
|
className: "relative",
|
|
33829
33829
|
children: [
|
|
33830
|
-
/* @__PURE__ */
|
|
33830
|
+
/* @__PURE__ */ jsx15("blockquote", {
|
|
33831
33831
|
className: "reveal max-w-[19em] font-display text-[clamp(30px,3.8vw,52px)] font-[405] italic leading-[1.18] tracking-[-0.015em] text-theme [font-variation-settings:'SOFT'_100,'opsz'_110]",
|
|
33832
33832
|
children: renderHighlightedText(quote, "text-accent-bright")
|
|
33833
|
-
}
|
|
33833
|
+
}),
|
|
33834
33834
|
children
|
|
33835
33835
|
]
|
|
33836
|
-
}
|
|
33836
|
+
})
|
|
33837
33837
|
]
|
|
33838
|
-
}
|
|
33838
|
+
});
|
|
33839
33839
|
}
|
|
33840
33840
|
function IndexRow({
|
|
33841
33841
|
row,
|
|
33842
33842
|
delayClass = ""
|
|
33843
33843
|
}) {
|
|
33844
|
-
const inner = /* @__PURE__ */
|
|
33844
|
+
const inner = /* @__PURE__ */ jsxs8(Fragment3, {
|
|
33845
33845
|
children: [
|
|
33846
|
-
/* @__PURE__ */
|
|
33846
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33847
33847
|
className: "font-display text-[35px] font-light leading-none text-theme-light [font-variation-settings:'SOFT'_30]",
|
|
33848
33848
|
children: row.no
|
|
33849
|
-
}
|
|
33850
|
-
/* @__PURE__ */
|
|
33849
|
+
}),
|
|
33850
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33851
33851
|
className: "font-label text-label-xs uppercase tracking-[0.1em] text-theme-light",
|
|
33852
33852
|
children: row.kicker
|
|
33853
|
-
}
|
|
33854
|
-
/* @__PURE__ */
|
|
33853
|
+
}),
|
|
33854
|
+
/* @__PURE__ */ jsxs8("span", {
|
|
33855
33855
|
className: "col-span-2 block md:col-span-1",
|
|
33856
33856
|
children: [
|
|
33857
|
-
/* @__PURE__ */
|
|
33857
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33858
33858
|
className: "block font-display text-[26px] font-[470] tracking-[-0.01em] text-theme transition-colors group-hover:text-accent [font-variation-settings:'SOFT'_75,'opsz'_60]",
|
|
33859
33859
|
children: row.title
|
|
33860
|
-
}
|
|
33861
|
-
/* @__PURE__ */
|
|
33860
|
+
}),
|
|
33861
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33862
33862
|
className: "mt-1 block max-w-[56ch] font-body text-[15.5px] text-theme-light",
|
|
33863
33863
|
children: row.text
|
|
33864
|
-
}
|
|
33864
|
+
})
|
|
33865
33865
|
]
|
|
33866
|
-
}
|
|
33867
|
-
/* @__PURE__ */
|
|
33866
|
+
}),
|
|
33867
|
+
/* @__PURE__ */ jsxs8("span", {
|
|
33868
33868
|
className: "col-span-2 text-right font-label text-[12px] text-theme-light md:col-span-1",
|
|
33869
33869
|
children: [
|
|
33870
33870
|
row.meta ?? "\u2192",
|
|
33871
|
-
row.metaSub && /* @__PURE__ */
|
|
33871
|
+
row.metaSub && /* @__PURE__ */ jsx15("small", {
|
|
33872
33872
|
className: "block text-theme-light opacity-70",
|
|
33873
33873
|
children: row.metaSub
|
|
33874
|
-
}
|
|
33874
|
+
})
|
|
33875
33875
|
]
|
|
33876
|
-
}
|
|
33876
|
+
})
|
|
33877
33877
|
]
|
|
33878
|
-
}
|
|
33878
|
+
});
|
|
33879
33879
|
const rowClass = `reveal ${delayClass} group grid grid-cols-[44px_1fr] items-baseline gap-x-6 gap-y-2 border-t border-theme-light py-6 no-underline md:grid-cols-[64px_176px_1fr_auto] md:gap-6`;
|
|
33880
|
-
return row.href ? /* @__PURE__ */
|
|
33880
|
+
return row.href ? /* @__PURE__ */ jsx15("a", {
|
|
33881
33881
|
href: row.href,
|
|
33882
33882
|
className: rowClass,
|
|
33883
33883
|
children: inner
|
|
33884
|
-
}
|
|
33884
|
+
}) : /* @__PURE__ */ jsx15("div", {
|
|
33885
33885
|
className: rowClass,
|
|
33886
33886
|
children: inner
|
|
33887
|
-
}
|
|
33887
|
+
});
|
|
33888
33888
|
}
|
|
33889
33889
|
function AliveLine({
|
|
33890
33890
|
claim,
|
|
33891
33891
|
links
|
|
33892
33892
|
}) {
|
|
33893
|
-
return /* @__PURE__ */
|
|
33893
|
+
return /* @__PURE__ */ jsxs8(Section, {
|
|
33894
33894
|
className: "flex flex-wrap items-baseline gap-[26px] py-10",
|
|
33895
33895
|
children: [
|
|
33896
|
-
/* @__PURE__ */
|
|
33896
|
+
/* @__PURE__ */ jsx15("span", {
|
|
33897
33897
|
className: "reveal font-display text-[22px] font-[430] italic text-theme-muted [font-variation-settings:'SOFT'_90]",
|
|
33898
33898
|
children: renderHighlightedText(claim, "not-italic font-medium text-theme")
|
|
33899
|
-
}
|
|
33900
|
-
links.map((link2, i) => /* @__PURE__ */
|
|
33899
|
+
}),
|
|
33900
|
+
links.map((link2, i) => /* @__PURE__ */ jsx15("a", {
|
|
33901
33901
|
href: link2.href,
|
|
33902
33902
|
className: `reveal ${i > 0 ? "reveal-delay-1" : ""} -mt-2 inline-block border-b border-theme-light pt-2 font-label text-[12px] text-theme-light no-underline transition-colors hover:text-accent-bright`,
|
|
33903
33903
|
children: link2.label
|
|
33904
|
-
}, link2.href + link2.label
|
|
33904
|
+
}, link2.href + link2.label))
|
|
33905
33905
|
]
|
|
33906
|
-
}
|
|
33906
|
+
});
|
|
33907
33907
|
}
|
|
33908
33908
|
var DELAY_CLASSES = ["", "reveal-delay-1", "reveal-delay-2"];
|
|
33909
33909
|
function delayClass(index2) {
|
|
@@ -33925,33 +33925,33 @@ function Trio({
|
|
|
33925
33925
|
withered = false
|
|
33926
33926
|
}) {
|
|
33927
33927
|
const numeralClass = withered ? "block font-display text-[44px] font-light leading-none text-transparent [-webkit-text-stroke:1px_var(--color-text-light)] [font-variation-settings:'SOFT'_30,'opsz'_100]" : "block font-display text-[44px] font-light leading-none text-theme-light [font-variation-settings:'SOFT'_30,'opsz'_100]";
|
|
33928
|
-
return /* @__PURE__ */
|
|
33928
|
+
return /* @__PURE__ */ jsx15("div", {
|
|
33929
33929
|
className: "mt-[30px] grid gap-11 md:grid-cols-3",
|
|
33930
|
-
children: items.map((item, i) => /* @__PURE__ */
|
|
33930
|
+
children: items.map((item, i) => /* @__PURE__ */ jsxs8("div", {
|
|
33931
33931
|
className: `reveal ${delayClass(i)}`,
|
|
33932
33932
|
children: [
|
|
33933
|
-
mono ? /* @__PURE__ */
|
|
33933
|
+
mono ? /* @__PURE__ */ jsx15("span", {
|
|
33934
33934
|
className: "inline-block pt-3 pb-[15px] font-label text-[14px] font-medium tracking-[0.1em] text-accent",
|
|
33935
33935
|
children: item.marker
|
|
33936
|
-
}
|
|
33936
|
+
}) : /* @__PURE__ */ jsx15("span", {
|
|
33937
33937
|
className: numeralClass,
|
|
33938
33938
|
children: item.marker
|
|
33939
|
-
}
|
|
33940
|
-
/* @__PURE__ */
|
|
33939
|
+
}),
|
|
33940
|
+
/* @__PURE__ */ jsx15("b", {
|
|
33941
33941
|
className: `mt-2.5 block font-display text-[21px] font-[520] tracking-[-0.006em] [font-variation-settings:'SOFT'_55] ${withered ? "text-theme-muted" : "text-theme"}`,
|
|
33942
33942
|
children: item.title
|
|
33943
|
-
}
|
|
33944
|
-
/* @__PURE__ */
|
|
33943
|
+
}),
|
|
33944
|
+
/* @__PURE__ */ jsx15("p", {
|
|
33945
33945
|
className: "mt-2 font-body text-[15.5px] text-theme-light",
|
|
33946
33946
|
children: item.text
|
|
33947
|
-
}
|
|
33947
|
+
})
|
|
33948
33948
|
]
|
|
33949
|
-
}, item.title
|
|
33950
|
-
}
|
|
33949
|
+
}, item.title))
|
|
33950
|
+
});
|
|
33951
33951
|
}
|
|
33952
33952
|
|
|
33953
33953
|
// src/home.tsx
|
|
33954
|
-
import {
|
|
33954
|
+
import { jsx as jsx16, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
33955
33955
|
var growthStageSchema = exports_external.object({
|
|
33956
33956
|
title: exports_external.string(),
|
|
33957
33957
|
text: exports_external.string()
|
|
@@ -33971,54 +33971,54 @@ function HomeGrowthSection({
|
|
|
33971
33971
|
capNote,
|
|
33972
33972
|
stages
|
|
33973
33973
|
}) {
|
|
33974
|
-
return /* @__PURE__ */
|
|
33974
|
+
return /* @__PURE__ */ jsxs9(Section, {
|
|
33975
33975
|
id: "growth",
|
|
33976
33976
|
className: "py-14",
|
|
33977
33977
|
children: [
|
|
33978
|
-
/* @__PURE__ */
|
|
33978
|
+
/* @__PURE__ */ jsx16(SectCap, {
|
|
33979
33979
|
lead: cap,
|
|
33980
33980
|
trail: capNote
|
|
33981
|
-
}
|
|
33982
|
-
/* @__PURE__ */
|
|
33983
|
-
/* @__PURE__ */
|
|
33981
|
+
}),
|
|
33982
|
+
/* @__PURE__ */ jsx16(GrowthDiagram, {}),
|
|
33983
|
+
/* @__PURE__ */ jsx16("div", {
|
|
33984
33984
|
className: "reveal reveal-delay-2 mt-6 grid max-w-[1040px] gap-x-11 gap-y-6 md:grid-cols-3",
|
|
33985
|
-
children: stages.map((stage, i) => /* @__PURE__ */
|
|
33985
|
+
children: stages.map((stage, i) => /* @__PURE__ */ jsxs9("div", {
|
|
33986
33986
|
children: [
|
|
33987
|
-
/* @__PURE__ */
|
|
33987
|
+
/* @__PURE__ */ jsx16("b", {
|
|
33988
33988
|
className: `block font-label text-label-xs font-semibold uppercase tracking-[0.18em] ${STAGE_TITLE_COLOR[i] ?? ""}`,
|
|
33989
33989
|
children: stage.title
|
|
33990
|
-
}
|
|
33991
|
-
/* @__PURE__ */
|
|
33990
|
+
}),
|
|
33991
|
+
/* @__PURE__ */ jsx16("p", {
|
|
33992
33992
|
className: "mt-2 font-body text-[15px] text-theme-light",
|
|
33993
33993
|
children: stage.text
|
|
33994
|
-
}
|
|
33994
|
+
})
|
|
33995
33995
|
]
|
|
33996
|
-
}, stage.title
|
|
33997
|
-
}
|
|
33996
|
+
}, stage.title))
|
|
33997
|
+
})
|
|
33998
33998
|
]
|
|
33999
|
-
}
|
|
33999
|
+
});
|
|
34000
34000
|
}
|
|
34001
34001
|
function HomeProblemSection({
|
|
34002
34002
|
cap,
|
|
34003
34003
|
capNote,
|
|
34004
34004
|
items
|
|
34005
34005
|
}) {
|
|
34006
|
-
return /* @__PURE__ */
|
|
34006
|
+
return /* @__PURE__ */ jsxs9(Section, {
|
|
34007
34007
|
id: "problem",
|
|
34008
34008
|
className: "py-14",
|
|
34009
34009
|
children: [
|
|
34010
|
-
/* @__PURE__ */
|
|
34010
|
+
/* @__PURE__ */ jsx16(SectCap, {
|
|
34011
34011
|
lead: cap,
|
|
34012
34012
|
trail: capNote,
|
|
34013
34013
|
tone: "cold"
|
|
34014
|
-
}
|
|
34015
|
-
/* @__PURE__ */
|
|
34014
|
+
}),
|
|
34015
|
+
/* @__PURE__ */ jsx16(Trio, {
|
|
34016
34016
|
items,
|
|
34017
34017
|
mono: false,
|
|
34018
34018
|
withered: true
|
|
34019
|
-
}
|
|
34019
|
+
})
|
|
34020
34020
|
]
|
|
34021
|
-
}
|
|
34021
|
+
});
|
|
34022
34022
|
}
|
|
34023
34023
|
var missionSchema = exports_external.object({
|
|
34024
34024
|
quote: exports_external.string(),
|
|
@@ -34032,20 +34032,20 @@ function HomeMissionSection({
|
|
|
34032
34032
|
primaryCta,
|
|
34033
34033
|
secondaryCta
|
|
34034
34034
|
}) {
|
|
34035
|
-
return /* @__PURE__ */
|
|
34035
|
+
return /* @__PURE__ */ jsxs9(Band, {
|
|
34036
34036
|
quote,
|
|
34037
34037
|
children: [
|
|
34038
|
-
sub && /* @__PURE__ */
|
|
34038
|
+
sub && /* @__PURE__ */ jsx16("p", {
|
|
34039
34039
|
className: "reveal reveal-delay-1 mt-[18px] max-w-[52ch] font-body text-[17px] text-theme-light",
|
|
34040
34040
|
children: sub
|
|
34041
|
-
}
|
|
34042
|
-
primaryCta && secondaryCta && /* @__PURE__ */
|
|
34041
|
+
}),
|
|
34042
|
+
primaryCta && secondaryCta && /* @__PURE__ */ jsx16(CtaRow, {
|
|
34043
34043
|
primaryCta,
|
|
34044
34044
|
secondaryCta,
|
|
34045
34045
|
className: "reveal reveal-delay-2 mt-[26px]"
|
|
34046
|
-
}
|
|
34046
|
+
})
|
|
34047
34047
|
]
|
|
34048
|
-
}
|
|
34048
|
+
});
|
|
34049
34049
|
}
|
|
34050
34050
|
var faceSchema = exports_external.object({
|
|
34051
34051
|
room: exports_external.enum(["platform", "work", "foundation"]),
|
|
@@ -34067,37 +34067,37 @@ function HomeFacesSection({
|
|
|
34067
34067
|
cap,
|
|
34068
34068
|
faces
|
|
34069
34069
|
}) {
|
|
34070
|
-
return /* @__PURE__ */
|
|
34070
|
+
return /* @__PURE__ */ jsxs9(Section, {
|
|
34071
34071
|
id: "faces",
|
|
34072
34072
|
className: "py-14",
|
|
34073
34073
|
children: [
|
|
34074
|
-
/* @__PURE__ */
|
|
34074
|
+
/* @__PURE__ */ jsx16(SectCap, {
|
|
34075
34075
|
lead: cap
|
|
34076
|
-
}
|
|
34077
|
-
/* @__PURE__ */
|
|
34076
|
+
}),
|
|
34077
|
+
/* @__PURE__ */ jsx16("div", {
|
|
34078
34078
|
className: "mt-2.5",
|
|
34079
|
-
children: faces.map((face, i) => /* @__PURE__ */
|
|
34079
|
+
children: faces.map((face, i) => /* @__PURE__ */ jsxs9("a", {
|
|
34080
34080
|
href: face.href,
|
|
34081
34081
|
"data-room": face.room,
|
|
34082
34082
|
className: `reveal ${delayClass(i)} group grid items-baseline gap-1.5 border-t border-theme-light py-5 no-underline first:border-t-0 md:grid-cols-[120px_1fr_auto] md:gap-[30px]`,
|
|
34083
34083
|
children: [
|
|
34084
|
-
/* @__PURE__ */
|
|
34084
|
+
/* @__PURE__ */ jsx16("span", {
|
|
34085
34085
|
className: `font-label text-label-xs uppercase tracking-[0.16em] ${FACE_KICKER_COLOR[face.room]}`,
|
|
34086
34086
|
children: face.kicker
|
|
34087
|
-
}
|
|
34088
|
-
/* @__PURE__ */
|
|
34087
|
+
}),
|
|
34088
|
+
/* @__PURE__ */ jsx16("span", {
|
|
34089
34089
|
className: "font-display text-[23px] font-[480] tracking-[-0.008em] text-theme [font-variation-settings:'SOFT'_70]",
|
|
34090
34090
|
children: renderHighlightedText(face.title, "italic transition-colors group-hover:text-accent")
|
|
34091
|
-
}
|
|
34092
|
-
/* @__PURE__ */
|
|
34091
|
+
}),
|
|
34092
|
+
/* @__PURE__ */ jsx16("span", {
|
|
34093
34093
|
className: "font-label text-[12px] text-theme-light",
|
|
34094
34094
|
children: face.go
|
|
34095
|
-
}
|
|
34095
|
+
})
|
|
34096
34096
|
]
|
|
34097
|
-
}, face.room
|
|
34098
|
-
}
|
|
34097
|
+
}, face.room))
|
|
34098
|
+
})
|
|
34099
34099
|
]
|
|
34100
|
-
}
|
|
34100
|
+
});
|
|
34101
34101
|
}
|
|
34102
34102
|
var homeSections = sectionGroup("home", {
|
|
34103
34103
|
growth: defineSection(growthSchema, HomeGrowthSection, {
|
|
@@ -34119,7 +34119,7 @@ var homeSections = sectionGroup("home", {
|
|
|
34119
34119
|
});
|
|
34120
34120
|
|
|
34121
34121
|
// src/brain-screens.tsx
|
|
34122
|
-
import {
|
|
34122
|
+
import { jsx as jsx17, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
34123
34123
|
var SCREEN_STYLES = `
|
|
34124
34124
|
.brain-screen { --scr-mono: var(--font-mono); --scr-display: var(--font-display); --scr-ui: var(--font-body); }
|
|
34125
34125
|
.brain-screen .ifc-frame { background: #0a0819; border: 1px solid rgba(241,234,221,.13); border-radius: 10px; overflow: hidden; box-shadow: 0 34px 80px -26px rgba(0,0,0,.85); color: #f1eadd; font-size: 13px; line-height: 1.5; }
|
|
@@ -34215,881 +34215,881 @@ var SCREEN_STYLES = `
|
|
|
34215
34215
|
}
|
|
34216
34216
|
`;
|
|
34217
34217
|
function BrainScreenStyles() {
|
|
34218
|
-
return /* @__PURE__ */
|
|
34218
|
+
return /* @__PURE__ */ jsx17("style", {
|
|
34219
34219
|
children: SCREEN_STYLES
|
|
34220
|
-
}
|
|
34220
|
+
});
|
|
34221
34221
|
}
|
|
34222
34222
|
function StudioScreen() {
|
|
34223
|
-
return /* @__PURE__ */
|
|
34223
|
+
return /* @__PURE__ */ jsx17("div", {
|
|
34224
34224
|
className: "brain-screen",
|
|
34225
|
-
children: /* @__PURE__ */
|
|
34225
|
+
children: /* @__PURE__ */ jsxs10("div", {
|
|
34226
34226
|
className: "ifc-frame",
|
|
34227
34227
|
children: [
|
|
34228
|
-
/* @__PURE__ */
|
|
34228
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34229
34229
|
className: "ifc-bar",
|
|
34230
34230
|
children: [
|
|
34231
|
-
/* @__PURE__ */
|
|
34232
|
-
/* @__PURE__ */
|
|
34233
|
-
/* @__PURE__ */
|
|
34234
|
-
/* @__PURE__ */
|
|
34231
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34232
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34233
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34234
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34235
34235
|
children: "mira.studio/studio"
|
|
34236
|
-
}
|
|
34236
|
+
})
|
|
34237
34237
|
]
|
|
34238
|
-
}
|
|
34239
|
-
/* @__PURE__ */
|
|
34238
|
+
}),
|
|
34239
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34240
34240
|
className: "studio-appbar",
|
|
34241
34241
|
children: [
|
|
34242
|
-
/* @__PURE__ */
|
|
34242
|
+
/* @__PURE__ */ jsxs10("span", {
|
|
34243
34243
|
className: "crumbs",
|
|
34244
34244
|
children: [
|
|
34245
34245
|
"library / essays / ",
|
|
34246
|
-
/* @__PURE__ */
|
|
34246
|
+
/* @__PURE__ */ jsx17("b", {
|
|
34247
34247
|
children: "distributed-teams.md"
|
|
34248
|
-
}
|
|
34248
|
+
})
|
|
34249
34249
|
]
|
|
34250
|
-
}
|
|
34251
|
-
/* @__PURE__ */
|
|
34250
|
+
}),
|
|
34251
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34252
34252
|
className: "pub",
|
|
34253
34253
|
children: "Publish"
|
|
34254
|
-
}
|
|
34254
|
+
})
|
|
34255
34255
|
]
|
|
34256
|
-
}
|
|
34257
|
-
/* @__PURE__ */
|
|
34256
|
+
}),
|
|
34257
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34258
34258
|
className: "studio-cols",
|
|
34259
34259
|
children: [
|
|
34260
|
-
/* @__PURE__ */
|
|
34260
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34261
34261
|
className: "studio-list",
|
|
34262
34262
|
children: [
|
|
34263
|
-
/* @__PURE__ */
|
|
34263
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34264
34264
|
className: "studio-item",
|
|
34265
34265
|
children: [
|
|
34266
|
-
/* @__PURE__ */
|
|
34266
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34267
34267
|
children: "coordination-unit.md"
|
|
34268
|
-
}
|
|
34269
|
-
/* @__PURE__ */
|
|
34268
|
+
}),
|
|
34269
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34270
34270
|
className: "studio-kind",
|
|
34271
34271
|
children: "essay"
|
|
34272
|
-
}
|
|
34272
|
+
})
|
|
34273
34273
|
]
|
|
34274
|
-
}
|
|
34275
|
-
/* @__PURE__ */
|
|
34274
|
+
}),
|
|
34275
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34276
34276
|
className: "studio-item on",
|
|
34277
34277
|
children: [
|
|
34278
|
-
/* @__PURE__ */
|
|
34278
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34279
34279
|
children: "distributed-teams.md"
|
|
34280
|
-
}
|
|
34281
|
-
/* @__PURE__ */
|
|
34280
|
+
}),
|
|
34281
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34282
34282
|
className: "studio-kind",
|
|
34283
34283
|
children: "essay"
|
|
34284
|
-
}
|
|
34284
|
+
})
|
|
34285
34285
|
]
|
|
34286
|
-
}
|
|
34287
|
-
/* @__PURE__ */
|
|
34286
|
+
}),
|
|
34287
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34288
34288
|
className: "studio-item",
|
|
34289
34289
|
children: [
|
|
34290
|
-
/* @__PURE__ */
|
|
34290
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34291
34291
|
children: "calculator-launch.md"
|
|
34292
|
-
}
|
|
34293
|
-
/* @__PURE__ */
|
|
34292
|
+
}),
|
|
34293
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34294
34294
|
className: "studio-kind",
|
|
34295
34295
|
children: "post"
|
|
34296
|
-
}
|
|
34296
|
+
})
|
|
34297
34297
|
]
|
|
34298
|
-
}
|
|
34299
|
-
/* @__PURE__ */
|
|
34298
|
+
}),
|
|
34299
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34300
34300
|
className: "studio-item",
|
|
34301
34301
|
children: [
|
|
34302
|
-
/* @__PURE__ */
|
|
34302
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34303
34303
|
children: "tms-reading-list.md"
|
|
34304
|
-
}
|
|
34305
|
-
/* @__PURE__ */
|
|
34304
|
+
}),
|
|
34305
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34306
34306
|
className: "studio-kind",
|
|
34307
34307
|
children: "note"
|
|
34308
|
-
}
|
|
34308
|
+
})
|
|
34309
34309
|
]
|
|
34310
|
-
}
|
|
34310
|
+
})
|
|
34311
34311
|
]
|
|
34312
|
-
}
|
|
34313
|
-
/* @__PURE__ */
|
|
34312
|
+
}),
|
|
34313
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34314
34314
|
className: "studio-md",
|
|
34315
34315
|
children: [
|
|
34316
|
-
/* @__PURE__ */
|
|
34316
|
+
/* @__PURE__ */ jsxs10("span", {
|
|
34317
34317
|
className: "mfm",
|
|
34318
34318
|
children: [
|
|
34319
34319
|
"---",
|
|
34320
|
-
/* @__PURE__ */
|
|
34320
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34321
34321
|
"title: Distributed teams outperform",
|
|
34322
|
-
/* @__PURE__ */
|
|
34322
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34323
34323
|
"series: essays \xB7 status: draft",
|
|
34324
|
-
/* @__PURE__ */
|
|
34324
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34325
34325
|
"---"
|
|
34326
34326
|
]
|
|
34327
|
-
}
|
|
34328
|
-
/* @__PURE__ */
|
|
34329
|
-
/* @__PURE__ */
|
|
34327
|
+
}),
|
|
34328
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34329
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34330
34330
|
className: "mh",
|
|
34331
34331
|
children: "# Distributed teams outperform"
|
|
34332
|
-
}
|
|
34333
|
-
/* @__PURE__ */
|
|
34332
|
+
}),
|
|
34333
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34334
34334
|
"Teams don't fail because people are",
|
|
34335
|
-
/* @__PURE__ */
|
|
34336
|
-
/* @__PURE__ */
|
|
34335
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34336
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34337
34337
|
className: "msy",
|
|
34338
34338
|
children: "**"
|
|
34339
|
-
}
|
|
34339
|
+
}),
|
|
34340
34340
|
"untalented",
|
|
34341
|
-
/* @__PURE__ */
|
|
34341
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34342
34342
|
className: "msy",
|
|
34343
34343
|
children: "**"
|
|
34344
|
-
}
|
|
34344
|
+
}),
|
|
34345
34345
|
". They fail because nobody",
|
|
34346
|
-
/* @__PURE__ */
|
|
34346
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34347
34347
|
"mapped ",
|
|
34348
|
-
/* @__PURE__ */
|
|
34348
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34349
34349
|
className: "mem",
|
|
34350
34350
|
children: "who knows what"
|
|
34351
|
-
}
|
|
34351
|
+
}),
|
|
34352
34352
|
" \u2014 and AI just",
|
|
34353
|
-
/* @__PURE__ */
|
|
34353
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34354
34354
|
"automates the confusion.",
|
|
34355
|
-
/* @__PURE__ */
|
|
34355
|
+
/* @__PURE__ */ jsx17("br", {})
|
|
34356
34356
|
]
|
|
34357
|
-
}
|
|
34357
|
+
})
|
|
34358
34358
|
]
|
|
34359
|
-
}
|
|
34360
|
-
/* @__PURE__ */
|
|
34359
|
+
}),
|
|
34360
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34361
34361
|
className: "studio-foot",
|
|
34362
34362
|
children: [
|
|
34363
|
-
/* @__PURE__ */
|
|
34363
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34364
34364
|
children: "committed a41f2c9 \u2192 rizom-ai/mira-content"
|
|
34365
|
-
}
|
|
34366
|
-
/* @__PURE__ */
|
|
34365
|
+
}),
|
|
34366
|
+
/* @__PURE__ */ jsxs10("span", {
|
|
34367
34367
|
className: "fate",
|
|
34368
34368
|
children: [
|
|
34369
|
-
/* @__PURE__ */
|
|
34369
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34370
34370
|
children: "draft"
|
|
34371
|
-
}
|
|
34372
|
-
/* @__PURE__ */
|
|
34371
|
+
}),
|
|
34372
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34373
34373
|
className: "on",
|
|
34374
34374
|
children: "review"
|
|
34375
|
-
}
|
|
34376
|
-
/* @__PURE__ */
|
|
34375
|
+
}),
|
|
34376
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34377
34377
|
children: "publish"
|
|
34378
|
-
}
|
|
34378
|
+
})
|
|
34379
34379
|
]
|
|
34380
|
-
}
|
|
34380
|
+
})
|
|
34381
34381
|
]
|
|
34382
|
-
}
|
|
34382
|
+
})
|
|
34383
34383
|
]
|
|
34384
|
-
}
|
|
34385
|
-
}
|
|
34384
|
+
})
|
|
34385
|
+
});
|
|
34386
34386
|
}
|
|
34387
34387
|
function ChatScreen() {
|
|
34388
|
-
return /* @__PURE__ */
|
|
34388
|
+
return /* @__PURE__ */ jsx17("div", {
|
|
34389
34389
|
className: "brain-screen",
|
|
34390
|
-
children: /* @__PURE__ */
|
|
34390
|
+
children: /* @__PURE__ */ jsxs10("div", {
|
|
34391
34391
|
className: "ifc-frame ifc-chat",
|
|
34392
34392
|
children: [
|
|
34393
|
-
/* @__PURE__ */
|
|
34393
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34394
34394
|
className: "ifc-bar",
|
|
34395
34395
|
children: [
|
|
34396
|
-
/* @__PURE__ */
|
|
34397
|
-
/* @__PURE__ */
|
|
34398
|
-
/* @__PURE__ */
|
|
34399
|
-
/* @__PURE__ */
|
|
34396
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34397
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34398
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34399
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34400
34400
|
children: "mira.studio/chat"
|
|
34401
|
-
}
|
|
34401
|
+
})
|
|
34402
34402
|
]
|
|
34403
|
-
}
|
|
34404
|
-
/* @__PURE__ */
|
|
34403
|
+
}),
|
|
34404
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34405
34405
|
className: "body",
|
|
34406
34406
|
children: [
|
|
34407
|
-
/* @__PURE__ */
|
|
34407
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34408
34408
|
className: "ifc-eyebrow",
|
|
34409
34409
|
children: "connected \xB7 Admin session"
|
|
34410
|
-
}
|
|
34411
|
-
/* @__PURE__ */
|
|
34410
|
+
}),
|
|
34411
|
+
/* @__PURE__ */ jsxs10("h6", {
|
|
34412
34412
|
children: [
|
|
34413
34413
|
"Talk to ",
|
|
34414
|
-
/* @__PURE__ */
|
|
34414
|
+
/* @__PURE__ */ jsx17("em", {
|
|
34415
34415
|
children: "your brain"
|
|
34416
|
-
}
|
|
34416
|
+
})
|
|
34417
34417
|
]
|
|
34418
|
-
}
|
|
34419
|
-
/* @__PURE__ */
|
|
34418
|
+
}),
|
|
34419
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34420
34420
|
className: "ifc-msgs",
|
|
34421
34421
|
children: [
|
|
34422
|
-
/* @__PURE__ */
|
|
34422
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34423
34423
|
className: "ifc-msg you",
|
|
34424
34424
|
children: [
|
|
34425
|
-
/* @__PURE__ */
|
|
34425
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34426
34426
|
className: "who",
|
|
34427
34427
|
children: "you"
|
|
34428
|
-
}
|
|
34428
|
+
}),
|
|
34429
34429
|
"What did we decide about the pricing page last month?"
|
|
34430
34430
|
]
|
|
34431
|
-
}
|
|
34432
|
-
/* @__PURE__ */
|
|
34431
|
+
}),
|
|
34432
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34433
34433
|
className: "ifc-msg brain",
|
|
34434
34434
|
children: [
|
|
34435
|
-
/* @__PURE__ */
|
|
34435
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34436
34436
|
className: "who",
|
|
34437
34437
|
children: "mira"
|
|
34438
|
-
}
|
|
34438
|
+
}),
|
|
34439
34439
|
"Three decisions, all in your March notes: keep the single tier, publish the calculator, park enterprise until Q3.",
|
|
34440
|
-
/* @__PURE__ */
|
|
34440
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34441
34441
|
className: "src",
|
|
34442
34442
|
children: "\u2192 3 sources"
|
|
34443
|
-
}
|
|
34443
|
+
})
|
|
34444
34444
|
]
|
|
34445
|
-
}
|
|
34446
|
-
/* @__PURE__ */
|
|
34445
|
+
}),
|
|
34446
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34447
34447
|
className: "ifc-msg you",
|
|
34448
34448
|
children: [
|
|
34449
|
-
/* @__PURE__ */
|
|
34449
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34450
34450
|
className: "who",
|
|
34451
34451
|
children: "you"
|
|
34452
|
-
}
|
|
34452
|
+
}),
|
|
34453
34453
|
"Draft a changelog entry for the calculator."
|
|
34454
34454
|
]
|
|
34455
|
-
}
|
|
34456
|
-
/* @__PURE__ */
|
|
34455
|
+
}),
|
|
34456
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34457
34457
|
className: "ifc-msg brain",
|
|
34458
34458
|
children: [
|
|
34459
|
-
/* @__PURE__ */
|
|
34459
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34460
34460
|
className: "who",
|
|
34461
34461
|
children: "mira"
|
|
34462
|
-
}
|
|
34462
|
+
}),
|
|
34463
34463
|
"Drafted in your voice and saved as ",
|
|
34464
|
-
/* @__PURE__ */
|
|
34464
|
+
/* @__PURE__ */ jsx17("b", {
|
|
34465
34465
|
children: "posts/calculator-launch.md"
|
|
34466
|
-
}
|
|
34466
|
+
}),
|
|
34467
34467
|
" \u2014 status: draft. Want it queued for review?"
|
|
34468
34468
|
]
|
|
34469
|
-
}
|
|
34469
|
+
})
|
|
34470
34470
|
]
|
|
34471
|
-
}
|
|
34472
|
-
/* @__PURE__ */
|
|
34471
|
+
}),
|
|
34472
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34473
34473
|
className: "ifc-status",
|
|
34474
34474
|
children: [
|
|
34475
|
-
/* @__PURE__ */
|
|
34475
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34476
34476
|
"the rhizome is listening"
|
|
34477
34477
|
]
|
|
34478
|
-
}
|
|
34479
|
-
/* @__PURE__ */
|
|
34478
|
+
}),
|
|
34479
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34480
34480
|
className: "ifc-prompt",
|
|
34481
34481
|
children: [
|
|
34482
34482
|
"Ask anything you've ever written down\u2026",
|
|
34483
|
-
/* @__PURE__ */
|
|
34483
|
+
/* @__PURE__ */ jsx17("b", {
|
|
34484
34484
|
children: "\u2191"
|
|
34485
|
-
}
|
|
34485
|
+
})
|
|
34486
34486
|
]
|
|
34487
|
-
}
|
|
34487
|
+
})
|
|
34488
34488
|
]
|
|
34489
|
-
}
|
|
34489
|
+
})
|
|
34490
34490
|
]
|
|
34491
|
-
}
|
|
34492
|
-
}
|
|
34491
|
+
})
|
|
34492
|
+
});
|
|
34493
34493
|
}
|
|
34494
34494
|
function IntegrationsScreen() {
|
|
34495
|
-
return /* @__PURE__ */
|
|
34495
|
+
return /* @__PURE__ */ jsx17("div", {
|
|
34496
34496
|
className: "brain-screen",
|
|
34497
|
-
children: /* @__PURE__ */
|
|
34497
|
+
children: /* @__PURE__ */ jsxs10("div", {
|
|
34498
34498
|
className: "intg",
|
|
34499
34499
|
children: [
|
|
34500
|
-
/* @__PURE__ */
|
|
34500
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34501
34501
|
className: "ifc-frame",
|
|
34502
34502
|
children: [
|
|
34503
|
-
/* @__PURE__ */
|
|
34503
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34504
34504
|
className: "ifc-bar",
|
|
34505
34505
|
children: [
|
|
34506
|
-
/* @__PURE__ */
|
|
34507
|
-
/* @__PURE__ */
|
|
34508
|
-
/* @__PURE__ */
|
|
34509
|
-
/* @__PURE__ */
|
|
34506
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34507
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34508
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34509
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34510
34510
|
children: "Discord \u2014 #ask-mira"
|
|
34511
|
-
}
|
|
34511
|
+
})
|
|
34512
34512
|
]
|
|
34513
|
-
}
|
|
34514
|
-
/* @__PURE__ */
|
|
34513
|
+
}),
|
|
34514
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34515
34515
|
className: "dsc",
|
|
34516
34516
|
children: [
|
|
34517
|
-
/* @__PURE__ */
|
|
34517
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34518
34518
|
className: "dsc-row",
|
|
34519
34519
|
children: [
|
|
34520
|
-
/* @__PURE__ */
|
|
34520
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34521
34521
|
className: "dsc-av",
|
|
34522
34522
|
style: { background: "#3d4a8a" },
|
|
34523
34523
|
children: "T"
|
|
34524
|
-
}
|
|
34525
|
-
/* @__PURE__ */
|
|
34524
|
+
}),
|
|
34525
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34526
34526
|
children: [
|
|
34527
|
-
/* @__PURE__ */
|
|
34527
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34528
34528
|
className: "dsc-name",
|
|
34529
34529
|
children: "Tom\xE1s"
|
|
34530
|
-
}
|
|
34531
|
-
/* @__PURE__ */
|
|
34530
|
+
}),
|
|
34531
|
+
/* @__PURE__ */ jsx17("div", {
|
|
34532
34532
|
className: "dsc-text",
|
|
34533
34533
|
children: "@mira what did the pilot retro conclude?"
|
|
34534
|
-
}
|
|
34534
|
+
})
|
|
34535
34535
|
]
|
|
34536
|
-
}
|
|
34536
|
+
})
|
|
34537
34537
|
]
|
|
34538
|
-
}
|
|
34539
|
-
/* @__PURE__ */
|
|
34538
|
+
}),
|
|
34539
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34540
34540
|
className: "dsc-row",
|
|
34541
34541
|
children: [
|
|
34542
|
-
/* @__PURE__ */
|
|
34542
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34543
34543
|
className: "dsc-av",
|
|
34544
34544
|
style: { background: "#7a4a12" },
|
|
34545
34545
|
children: "M"
|
|
34546
|
-
}
|
|
34547
|
-
/* @__PURE__ */
|
|
34546
|
+
}),
|
|
34547
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34548
34548
|
children: [
|
|
34549
|
-
/* @__PURE__ */
|
|
34549
|
+
/* @__PURE__ */ jsxs10("span", {
|
|
34550
34550
|
className: "dsc-name",
|
|
34551
34551
|
children: [
|
|
34552
34552
|
"mira",
|
|
34553
|
-
/* @__PURE__ */
|
|
34553
|
+
/* @__PURE__ */ jsx17("i", {
|
|
34554
34554
|
className: "dsc-bot",
|
|
34555
34555
|
children: "BOT"
|
|
34556
|
-
}
|
|
34556
|
+
})
|
|
34557
34557
|
]
|
|
34558
|
-
}
|
|
34559
|
-
/* @__PURE__ */
|
|
34558
|
+
}),
|
|
34559
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34560
34560
|
className: "dsc-text",
|
|
34561
34561
|
children: [
|
|
34562
34562
|
"Two blockers: onboarding docs and the missing staging env. Full notes \u2192 ",
|
|
34563
|
-
/* @__PURE__ */
|
|
34563
|
+
/* @__PURE__ */ jsx17("u", {
|
|
34564
34564
|
children: "retro-2026-06"
|
|
34565
|
-
}
|
|
34565
|
+
}),
|
|
34566
34566
|
"."
|
|
34567
34567
|
]
|
|
34568
|
-
}
|
|
34568
|
+
})
|
|
34569
34569
|
]
|
|
34570
|
-
}
|
|
34570
|
+
})
|
|
34571
34571
|
]
|
|
34572
|
-
}
|
|
34572
|
+
})
|
|
34573
34573
|
]
|
|
34574
|
-
}
|
|
34574
|
+
})
|
|
34575
34575
|
]
|
|
34576
|
-
}
|
|
34577
|
-
/* @__PURE__ */
|
|
34576
|
+
}),
|
|
34577
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34578
34578
|
className: "ifc-frame mcp",
|
|
34579
34579
|
children: [
|
|
34580
|
-
/* @__PURE__ */
|
|
34580
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34581
34581
|
className: "ifc-bar",
|
|
34582
34582
|
children: [
|
|
34583
|
-
/* @__PURE__ */
|
|
34584
|
-
/* @__PURE__ */
|
|
34585
|
-
/* @__PURE__ */
|
|
34586
|
-
/* @__PURE__ */
|
|
34583
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34584
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34585
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34586
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34587
34587
|
children: "Claude \u2014 connected via MCP"
|
|
34588
|
-
}
|
|
34588
|
+
})
|
|
34589
34589
|
]
|
|
34590
|
-
}
|
|
34591
|
-
/* @__PURE__ */
|
|
34590
|
+
}),
|
|
34591
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34592
34592
|
className: "body2",
|
|
34593
34593
|
children: [
|
|
34594
34594
|
"Let me check Mira's brain for that.",
|
|
34595
|
-
/* @__PURE__ */
|
|
34595
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34596
34596
|
className: "tool",
|
|
34597
34597
|
children: [
|
|
34598
34598
|
"\u25B8 ",
|
|
34599
|
-
/* @__PURE__ */
|
|
34599
|
+
/* @__PURE__ */ jsx17("b", {
|
|
34600
34600
|
children: "mira \xB7 system_search"
|
|
34601
|
-
}
|
|
34601
|
+
}),
|
|
34602
34602
|
' "pilot retro blockers" \u2192 6 entities'
|
|
34603
34603
|
]
|
|
34604
|
-
}
|
|
34604
|
+
}),
|
|
34605
34605
|
"From the June retro notes: the pilot stalled on onboarding docs \u2014 Mira flagged the same pattern in two client engagements."
|
|
34606
34606
|
]
|
|
34607
|
-
}
|
|
34607
|
+
})
|
|
34608
34608
|
]
|
|
34609
|
-
}
|
|
34610
|
-
/* @__PURE__ */
|
|
34609
|
+
}),
|
|
34610
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34611
34611
|
className: "ifc-frame",
|
|
34612
34612
|
children: [
|
|
34613
|
-
/* @__PURE__ */
|
|
34613
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34614
34614
|
className: "ifc-bar",
|
|
34615
34615
|
children: [
|
|
34616
|
-
/* @__PURE__ */
|
|
34617
|
-
/* @__PURE__ */
|
|
34618
|
-
/* @__PURE__ */
|
|
34619
|
-
/* @__PURE__ */
|
|
34616
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34617
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34618
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34619
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34620
34620
|
children: "terminal \u2014 brain chat"
|
|
34621
|
-
}
|
|
34621
|
+
})
|
|
34622
34622
|
]
|
|
34623
|
-
}
|
|
34624
|
-
/* @__PURE__ */
|
|
34623
|
+
}),
|
|
34624
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34625
34625
|
className: "term-mock",
|
|
34626
34626
|
children: [
|
|
34627
|
-
/* @__PURE__ */
|
|
34627
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34628
34628
|
className: "ps",
|
|
34629
34629
|
children: "$"
|
|
34630
|
-
}
|
|
34630
|
+
}),
|
|
34631
34631
|
" brain chat",
|
|
34632
|
-
/* @__PURE__ */
|
|
34633
|
-
/* @__PURE__ */
|
|
34632
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34633
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34634
34634
|
className: "who",
|
|
34635
34635
|
children: "mira \u203A"
|
|
34636
|
-
}
|
|
34636
|
+
}),
|
|
34637
34637
|
" corpus loaded \u2014 2,847 entities",
|
|
34638
|
-
/* @__PURE__ */
|
|
34639
|
-
/* @__PURE__ */
|
|
34638
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34639
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34640
34640
|
className: "who",
|
|
34641
34641
|
children: "you \u203A"
|
|
34642
|
-
}
|
|
34642
|
+
}),
|
|
34643
34643
|
" oldest open decision?",
|
|
34644
|
-
/* @__PURE__ */
|
|
34645
|
-
/* @__PURE__ */
|
|
34644
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
34645
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34646
34646
|
className: "who",
|
|
34647
34647
|
children: "mira \u203A"
|
|
34648
|
-
}
|
|
34648
|
+
}),
|
|
34649
34649
|
' "Pricing tiers" \u2014 open since March (decisions/pricing.md)'
|
|
34650
34650
|
]
|
|
34651
|
-
}
|
|
34651
|
+
})
|
|
34652
34652
|
]
|
|
34653
|
-
}
|
|
34653
|
+
})
|
|
34654
34654
|
]
|
|
34655
|
-
}
|
|
34656
|
-
}
|
|
34655
|
+
})
|
|
34656
|
+
});
|
|
34657
34657
|
}
|
|
34658
34658
|
function DashboardScreen() {
|
|
34659
|
-
return /* @__PURE__ */
|
|
34659
|
+
return /* @__PURE__ */ jsx17("div", {
|
|
34660
34660
|
className: "brain-screen",
|
|
34661
|
-
children: /* @__PURE__ */
|
|
34661
|
+
children: /* @__PURE__ */ jsxs10("div", {
|
|
34662
34662
|
className: "ifc-frame",
|
|
34663
34663
|
children: [
|
|
34664
|
-
/* @__PURE__ */
|
|
34664
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34665
34665
|
className: "ifc-bar",
|
|
34666
34666
|
children: [
|
|
34667
|
-
/* @__PURE__ */
|
|
34668
|
-
/* @__PURE__ */
|
|
34669
|
-
/* @__PURE__ */
|
|
34670
|
-
/* @__PURE__ */
|
|
34667
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34668
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34669
|
+
/* @__PURE__ */ jsx17("i", {}),
|
|
34670
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34671
34671
|
children: "mira.studio/dashboard"
|
|
34672
|
-
}
|
|
34672
|
+
})
|
|
34673
34673
|
]
|
|
34674
|
-
}
|
|
34675
|
-
/* @__PURE__ */
|
|
34674
|
+
}),
|
|
34675
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34676
34676
|
className: "ifc-strip",
|
|
34677
34677
|
children: [
|
|
34678
|
-
/* @__PURE__ */
|
|
34678
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34679
34679
|
className: "mark",
|
|
34680
34680
|
children: "mira \xB7 console"
|
|
34681
|
-
}
|
|
34682
|
-
/* @__PURE__ */
|
|
34681
|
+
}),
|
|
34682
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34683
34683
|
className: "snav",
|
|
34684
34684
|
children: [
|
|
34685
|
-
/* @__PURE__ */
|
|
34685
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34686
34686
|
className: "on",
|
|
34687
34687
|
children: "Dashboard"
|
|
34688
|
-
}
|
|
34689
|
-
/* @__PURE__ */
|
|
34688
|
+
}),
|
|
34689
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34690
34690
|
children: "Chat"
|
|
34691
|
-
}
|
|
34692
|
-
/* @__PURE__ */
|
|
34691
|
+
}),
|
|
34692
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34693
34693
|
children: "Library"
|
|
34694
|
-
}
|
|
34694
|
+
})
|
|
34695
34695
|
]
|
|
34696
|
-
}
|
|
34697
|
-
/* @__PURE__ */
|
|
34696
|
+
}),
|
|
34697
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34698
34698
|
className: "admin",
|
|
34699
34699
|
children: "Admin"
|
|
34700
|
-
}
|
|
34700
|
+
})
|
|
34701
34701
|
]
|
|
34702
|
-
}
|
|
34703
|
-
/* @__PURE__ */
|
|
34702
|
+
}),
|
|
34703
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34704
34704
|
className: "ifc-tabs",
|
|
34705
34705
|
children: [
|
|
34706
|
-
/* @__PURE__ */
|
|
34706
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34707
34707
|
className: "on",
|
|
34708
34708
|
children: "overview"
|
|
34709
|
-
}
|
|
34710
|
-
/* @__PURE__ */
|
|
34709
|
+
}),
|
|
34710
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34711
34711
|
children: "content"
|
|
34712
|
-
}
|
|
34713
|
-
/* @__PURE__ */
|
|
34712
|
+
}),
|
|
34713
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34714
34714
|
children: "network"
|
|
34715
|
-
}
|
|
34716
|
-
/* @__PURE__ */
|
|
34715
|
+
}),
|
|
34716
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34717
34717
|
children: "system"
|
|
34718
|
-
}
|
|
34718
|
+
})
|
|
34719
34719
|
]
|
|
34720
|
-
}
|
|
34721
|
-
/* @__PURE__ */
|
|
34720
|
+
}),
|
|
34721
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34722
34722
|
className: "dash-canvas",
|
|
34723
34723
|
children: [
|
|
34724
|
-
/* @__PURE__ */
|
|
34724
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34725
34725
|
className: "ifc-card",
|
|
34726
34726
|
children: [
|
|
34727
|
-
/* @__PURE__ */
|
|
34727
|
+
/* @__PURE__ */ jsx17("div", {
|
|
34728
34728
|
className: "ct",
|
|
34729
|
-
children: /* @__PURE__ */
|
|
34729
|
+
children: /* @__PURE__ */ jsx17("span", {
|
|
34730
34730
|
children: "Identity"
|
|
34731
|
-
}
|
|
34732
|
-
}
|
|
34733
|
-
/* @__PURE__ */
|
|
34731
|
+
})
|
|
34732
|
+
}),
|
|
34733
|
+
/* @__PURE__ */ jsxs10("dl", {
|
|
34734
34734
|
children: [
|
|
34735
|
-
/* @__PURE__ */
|
|
34735
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34736
34736
|
className: "krow",
|
|
34737
34737
|
children: [
|
|
34738
|
-
/* @__PURE__ */
|
|
34738
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34739
34739
|
children: "Role"
|
|
34740
|
-
}
|
|
34741
|
-
/* @__PURE__ */
|
|
34740
|
+
}),
|
|
34741
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34742
34742
|
children: "Research partner \u2014 media theory & praxis"
|
|
34743
|
-
}
|
|
34743
|
+
})
|
|
34744
34744
|
]
|
|
34745
|
-
}
|
|
34746
|
-
/* @__PURE__ */
|
|
34745
|
+
}),
|
|
34746
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34747
34747
|
className: "krow",
|
|
34748
34748
|
children: [
|
|
34749
|
-
/* @__PURE__ */
|
|
34749
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34750
34750
|
children: "Purpose"
|
|
34751
|
-
}
|
|
34752
|
-
/* @__PURE__ */
|
|
34751
|
+
}),
|
|
34752
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34753
34753
|
children: "Turn a working library into a public practice"
|
|
34754
|
-
}
|
|
34754
|
+
})
|
|
34755
34755
|
]
|
|
34756
|
-
}
|
|
34756
|
+
})
|
|
34757
34757
|
]
|
|
34758
|
-
}
|
|
34759
|
-
/* @__PURE__ */
|
|
34758
|
+
}),
|
|
34759
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34760
34760
|
className: "vals",
|
|
34761
34761
|
children: [
|
|
34762
|
-
/* @__PURE__ */
|
|
34762
|
+
/* @__PURE__ */ jsx17("i", {
|
|
34763
34763
|
children: "open source"
|
|
34764
|
-
}
|
|
34765
|
-
/* @__PURE__ */
|
|
34764
|
+
}),
|
|
34765
|
+
/* @__PURE__ */ jsx17("i", {
|
|
34766
34766
|
children: "rigor"
|
|
34767
|
-
}
|
|
34768
|
-
/* @__PURE__ */
|
|
34767
|
+
}),
|
|
34768
|
+
/* @__PURE__ */ jsx17("i", {
|
|
34769
34769
|
children: "reciprocity"
|
|
34770
|
-
}
|
|
34770
|
+
})
|
|
34771
34771
|
]
|
|
34772
|
-
}
|
|
34772
|
+
})
|
|
34773
34773
|
]
|
|
34774
|
-
}
|
|
34775
|
-
/* @__PURE__ */
|
|
34774
|
+
}),
|
|
34775
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34776
34776
|
className: "ifc-card",
|
|
34777
34777
|
children: [
|
|
34778
|
-
/* @__PURE__ */
|
|
34778
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34779
34779
|
className: "ct",
|
|
34780
34780
|
children: [
|
|
34781
|
-
/* @__PURE__ */
|
|
34781
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34782
34782
|
children: "Entities"
|
|
34783
|
-
}
|
|
34784
|
-
/* @__PURE__ */
|
|
34783
|
+
}),
|
|
34784
|
+
/* @__PURE__ */ jsx17("small", {
|
|
34785
34785
|
children: "corpus \xB7 by volume"
|
|
34786
|
-
}
|
|
34786
|
+
})
|
|
34787
34787
|
]
|
|
34788
|
-
}
|
|
34789
|
-
/* @__PURE__ */
|
|
34788
|
+
}),
|
|
34789
|
+
/* @__PURE__ */ jsx17("div", {
|
|
34790
34790
|
className: "big",
|
|
34791
34791
|
children: "2,847"
|
|
34792
|
-
}
|
|
34793
|
-
/* @__PURE__ */
|
|
34792
|
+
}),
|
|
34793
|
+
/* @__PURE__ */ jsx17("div", {
|
|
34794
34794
|
className: "biglabel",
|
|
34795
34795
|
children: "indexed entities"
|
|
34796
|
-
}
|
|
34797
|
-
/* @__PURE__ */
|
|
34796
|
+
}),
|
|
34797
|
+
/* @__PURE__ */ jsxs10("dl", {
|
|
34798
34798
|
style: { marginTop: "8px" },
|
|
34799
34799
|
children: [
|
|
34800
|
-
/* @__PURE__ */
|
|
34800
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34801
34801
|
className: "krow",
|
|
34802
34802
|
children: [
|
|
34803
|
-
/* @__PURE__ */
|
|
34803
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34804
34804
|
children: "notes"
|
|
34805
|
-
}
|
|
34806
|
-
/* @__PURE__ */
|
|
34805
|
+
}),
|
|
34806
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34807
34807
|
children: "1,204"
|
|
34808
|
-
}
|
|
34808
|
+
})
|
|
34809
34809
|
]
|
|
34810
|
-
}
|
|
34811
|
-
/* @__PURE__ */
|
|
34810
|
+
}),
|
|
34811
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34812
34812
|
className: "krow",
|
|
34813
34813
|
children: [
|
|
34814
|
-
/* @__PURE__ */
|
|
34814
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34815
34815
|
children: "links"
|
|
34816
|
-
}
|
|
34817
|
-
/* @__PURE__ */
|
|
34816
|
+
}),
|
|
34817
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34818
34818
|
children: "486"
|
|
34819
|
-
}
|
|
34819
|
+
})
|
|
34820
34820
|
]
|
|
34821
|
-
}
|
|
34822
|
-
/* @__PURE__ */
|
|
34821
|
+
}),
|
|
34822
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34823
34823
|
className: "krow",
|
|
34824
34824
|
children: [
|
|
34825
|
-
/* @__PURE__ */
|
|
34825
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34826
34826
|
children: "posts"
|
|
34827
|
-
}
|
|
34828
|
-
/* @__PURE__ */
|
|
34827
|
+
}),
|
|
34828
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34829
34829
|
children: "412"
|
|
34830
|
-
}
|
|
34830
|
+
})
|
|
34831
34831
|
]
|
|
34832
|
-
}
|
|
34833
|
-
/* @__PURE__ */
|
|
34832
|
+
}),
|
|
34833
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34834
34834
|
className: "krow",
|
|
34835
34835
|
children: [
|
|
34836
|
-
/* @__PURE__ */
|
|
34836
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34837
34837
|
children: "essays"
|
|
34838
|
-
}
|
|
34839
|
-
/* @__PURE__ */
|
|
34838
|
+
}),
|
|
34839
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34840
34840
|
children: "118"
|
|
34841
|
-
}
|
|
34841
|
+
})
|
|
34842
34842
|
]
|
|
34843
|
-
}
|
|
34843
|
+
})
|
|
34844
34844
|
]
|
|
34845
|
-
}
|
|
34845
|
+
})
|
|
34846
34846
|
]
|
|
34847
|
-
}
|
|
34848
|
-
/* @__PURE__ */
|
|
34847
|
+
}),
|
|
34848
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34849
34849
|
className: "ifc-card",
|
|
34850
34850
|
children: [
|
|
34851
|
-
/* @__PURE__ */
|
|
34851
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34852
34852
|
className: "ct",
|
|
34853
34853
|
children: [
|
|
34854
|
-
/* @__PURE__ */
|
|
34854
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34855
34855
|
children: "Runtime"
|
|
34856
|
-
}
|
|
34857
|
-
/* @__PURE__ */
|
|
34856
|
+
}),
|
|
34857
|
+
/* @__PURE__ */ jsx17("small", {
|
|
34858
34858
|
children: "core"
|
|
34859
|
-
}
|
|
34859
|
+
})
|
|
34860
34860
|
]
|
|
34861
|
-
}
|
|
34862
|
-
/* @__PURE__ */
|
|
34861
|
+
}),
|
|
34862
|
+
/* @__PURE__ */ jsxs10("dl", {
|
|
34863
34863
|
children: [
|
|
34864
|
-
/* @__PURE__ */
|
|
34864
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34865
34865
|
className: "krow",
|
|
34866
34866
|
children: [
|
|
34867
|
-
/* @__PURE__ */
|
|
34867
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34868
34868
|
children: "Version"
|
|
34869
|
-
}
|
|
34870
|
-
/* @__PURE__ */
|
|
34869
|
+
}),
|
|
34870
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34871
34871
|
children: "0.2.0"
|
|
34872
|
-
}
|
|
34872
|
+
})
|
|
34873
34873
|
]
|
|
34874
|
-
}
|
|
34875
|
-
/* @__PURE__ */
|
|
34874
|
+
}),
|
|
34875
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34876
34876
|
className: "krow",
|
|
34877
34877
|
children: [
|
|
34878
|
-
/* @__PURE__ */
|
|
34878
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34879
34879
|
children: "Model"
|
|
34880
|
-
}
|
|
34881
|
-
/* @__PURE__ */
|
|
34880
|
+
}),
|
|
34881
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34882
34882
|
children: "anthropic \xB7 sonnet"
|
|
34883
|
-
}
|
|
34883
|
+
})
|
|
34884
34884
|
]
|
|
34885
|
-
}
|
|
34886
|
-
/* @__PURE__ */
|
|
34885
|
+
}),
|
|
34886
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34887
34887
|
className: "krow",
|
|
34888
34888
|
children: [
|
|
34889
|
-
/* @__PURE__ */
|
|
34889
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34890
34890
|
children: "Uptime"
|
|
34891
|
-
}
|
|
34892
|
-
/* @__PURE__ */
|
|
34891
|
+
}),
|
|
34892
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34893
34893
|
children: "41d 6h"
|
|
34894
|
-
}
|
|
34894
|
+
})
|
|
34895
34895
|
]
|
|
34896
|
-
}
|
|
34897
|
-
/* @__PURE__ */
|
|
34896
|
+
}),
|
|
34897
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34898
34898
|
className: "krow",
|
|
34899
34899
|
children: [
|
|
34900
|
-
/* @__PURE__ */
|
|
34900
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34901
34901
|
children: "Embeddings"
|
|
34902
|
-
}
|
|
34903
|
-
/* @__PURE__ */
|
|
34902
|
+
}),
|
|
34903
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34904
34904
|
className: "ok",
|
|
34905
34905
|
children: "\u2713 current"
|
|
34906
|
-
}
|
|
34906
|
+
})
|
|
34907
34907
|
]
|
|
34908
|
-
}
|
|
34909
|
-
/* @__PURE__ */
|
|
34908
|
+
}),
|
|
34909
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34910
34910
|
className: "krow",
|
|
34911
34911
|
children: [
|
|
34912
|
-
/* @__PURE__ */
|
|
34912
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34913
34913
|
children: "Daemons"
|
|
34914
|
-
}
|
|
34915
|
-
/* @__PURE__ */
|
|
34914
|
+
}),
|
|
34915
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
34916
34916
|
children: "4 running"
|
|
34917
|
-
}
|
|
34917
|
+
})
|
|
34918
34918
|
]
|
|
34919
|
-
}
|
|
34919
|
+
})
|
|
34920
34920
|
]
|
|
34921
|
-
}
|
|
34921
|
+
})
|
|
34922
34922
|
]
|
|
34923
|
-
}
|
|
34924
|
-
/* @__PURE__ */
|
|
34923
|
+
}),
|
|
34924
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34925
34925
|
className: "ifc-card",
|
|
34926
34926
|
style: { gridColumn: "span 2" },
|
|
34927
34927
|
children: [
|
|
34928
|
-
/* @__PURE__ */
|
|
34928
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34929
34929
|
className: "ct",
|
|
34930
34930
|
children: [
|
|
34931
|
-
/* @__PURE__ */
|
|
34931
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34932
34932
|
children: "Endpoints"
|
|
34933
|
-
}
|
|
34934
|
-
/* @__PURE__ */
|
|
34933
|
+
}),
|
|
34934
|
+
/* @__PURE__ */ jsx17("small", {
|
|
34935
34935
|
children: "machine faces of the same brain"
|
|
34936
|
-
}
|
|
34936
|
+
})
|
|
34937
34937
|
]
|
|
34938
|
-
}
|
|
34939
|
-
/* @__PURE__ */
|
|
34938
|
+
}),
|
|
34939
|
+
/* @__PURE__ */ jsxs10("dl", {
|
|
34940
34940
|
children: [
|
|
34941
|
-
/* @__PURE__ */
|
|
34941
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34942
34942
|
className: "krow",
|
|
34943
34943
|
children: [
|
|
34944
|
-
/* @__PURE__ */
|
|
34944
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34945
34945
|
children: "MCP"
|
|
34946
|
-
}
|
|
34947
|
-
/* @__PURE__ */
|
|
34946
|
+
}),
|
|
34947
|
+
/* @__PURE__ */ jsxs10("dd", {
|
|
34948
34948
|
children: [
|
|
34949
34949
|
"mira.studio/mcp ",
|
|
34950
|
-
/* @__PURE__ */
|
|
34950
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34951
34951
|
className: "dim-arrow",
|
|
34952
34952
|
children: "\u2197"
|
|
34953
|
-
}
|
|
34953
|
+
})
|
|
34954
34954
|
]
|
|
34955
|
-
}
|
|
34955
|
+
})
|
|
34956
34956
|
]
|
|
34957
|
-
}
|
|
34958
|
-
/* @__PURE__ */
|
|
34957
|
+
}),
|
|
34958
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34959
34959
|
className: "krow",
|
|
34960
34960
|
children: [
|
|
34961
|
-
/* @__PURE__ */
|
|
34961
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34962
34962
|
children: "A2A"
|
|
34963
|
-
}
|
|
34964
|
-
/* @__PURE__ */
|
|
34963
|
+
}),
|
|
34964
|
+
/* @__PURE__ */ jsxs10("dd", {
|
|
34965
34965
|
children: [
|
|
34966
34966
|
"/.well-known/agent-card ",
|
|
34967
|
-
/* @__PURE__ */
|
|
34967
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34968
34968
|
className: "dim-arrow",
|
|
34969
34969
|
children: "\u2197"
|
|
34970
|
-
}
|
|
34970
|
+
})
|
|
34971
34971
|
]
|
|
34972
|
-
}
|
|
34972
|
+
})
|
|
34973
34973
|
]
|
|
34974
|
-
}
|
|
34975
|
-
/* @__PURE__ */
|
|
34974
|
+
}),
|
|
34975
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34976
34976
|
className: "krow",
|
|
34977
34977
|
children: [
|
|
34978
|
-
/* @__PURE__ */
|
|
34978
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34979
34979
|
children: "ATProto"
|
|
34980
|
-
}
|
|
34981
|
-
/* @__PURE__ */
|
|
34980
|
+
}),
|
|
34981
|
+
/* @__PURE__ */ jsxs10("dd", {
|
|
34982
34982
|
children: [
|
|
34983
34983
|
"@mira.studio \u2014 essays as records",
|
|
34984
34984
|
" ",
|
|
34985
|
-
/* @__PURE__ */
|
|
34985
|
+
/* @__PURE__ */ jsx17("span", {
|
|
34986
34986
|
className: "dim-arrow",
|
|
34987
34987
|
children: "\u2197"
|
|
34988
|
-
}
|
|
34988
|
+
})
|
|
34989
34989
|
]
|
|
34990
|
-
}
|
|
34990
|
+
})
|
|
34991
34991
|
]
|
|
34992
|
-
}
|
|
34993
|
-
/* @__PURE__ */
|
|
34992
|
+
}),
|
|
34993
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
34994
34994
|
className: "krow",
|
|
34995
34995
|
children: [
|
|
34996
|
-
/* @__PURE__ */
|
|
34996
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
34997
34997
|
children: "RSS"
|
|
34998
|
-
}
|
|
34999
|
-
/* @__PURE__ */
|
|
34998
|
+
}),
|
|
34999
|
+
/* @__PURE__ */ jsxs10("dd", {
|
|
35000
35000
|
children: [
|
|
35001
35001
|
"/rss.xml ",
|
|
35002
|
-
/* @__PURE__ */
|
|
35002
|
+
/* @__PURE__ */ jsx17("span", {
|
|
35003
35003
|
className: "dim-arrow",
|
|
35004
35004
|
children: "\u2197"
|
|
35005
|
-
}
|
|
35005
|
+
})
|
|
35006
35006
|
]
|
|
35007
|
-
}
|
|
35007
|
+
})
|
|
35008
35008
|
]
|
|
35009
|
-
}
|
|
35009
|
+
})
|
|
35010
35010
|
]
|
|
35011
|
-
}
|
|
35011
|
+
})
|
|
35012
35012
|
]
|
|
35013
|
-
}
|
|
35014
|
-
/* @__PURE__ */
|
|
35013
|
+
}),
|
|
35014
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
35015
35015
|
className: "ifc-card",
|
|
35016
35016
|
children: [
|
|
35017
|
-
/* @__PURE__ */
|
|
35017
|
+
/* @__PURE__ */ jsx17("div", {
|
|
35018
35018
|
className: "ct",
|
|
35019
|
-
children: /* @__PURE__ */
|
|
35019
|
+
children: /* @__PURE__ */ jsx17("span", {
|
|
35020
35020
|
children: "Ways to connect"
|
|
35021
|
-
}
|
|
35022
|
-
}
|
|
35023
|
-
/* @__PURE__ */
|
|
35021
|
+
})
|
|
35022
|
+
}),
|
|
35023
|
+
/* @__PURE__ */ jsxs10("dl", {
|
|
35024
35024
|
children: [
|
|
35025
|
-
/* @__PURE__ */
|
|
35025
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
35026
35026
|
className: "krow",
|
|
35027
35027
|
children: [
|
|
35028
|
-
/* @__PURE__ */
|
|
35028
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
35029
35029
|
children: "Chat"
|
|
35030
|
-
}
|
|
35031
|
-
/* @__PURE__ */
|
|
35030
|
+
}),
|
|
35031
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
35032
35032
|
children: "mira.studio/chat"
|
|
35033
|
-
}
|
|
35033
|
+
})
|
|
35034
35034
|
]
|
|
35035
|
-
}
|
|
35036
|
-
/* @__PURE__ */
|
|
35035
|
+
}),
|
|
35036
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
35037
35037
|
className: "krow",
|
|
35038
35038
|
children: [
|
|
35039
|
-
/* @__PURE__ */
|
|
35039
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
35040
35040
|
children: "Discord"
|
|
35041
|
-
}
|
|
35042
|
-
/* @__PURE__ */
|
|
35041
|
+
}),
|
|
35042
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
35043
35043
|
children: "#ask-mira"
|
|
35044
|
-
}
|
|
35044
|
+
})
|
|
35045
35045
|
]
|
|
35046
|
-
}
|
|
35047
|
-
/* @__PURE__ */
|
|
35046
|
+
}),
|
|
35047
|
+
/* @__PURE__ */ jsxs10("div", {
|
|
35048
35048
|
className: "krow",
|
|
35049
35049
|
children: [
|
|
35050
|
-
/* @__PURE__ */
|
|
35050
|
+
/* @__PURE__ */ jsx17("dt", {
|
|
35051
35051
|
children: "Terminal"
|
|
35052
|
-
}
|
|
35053
|
-
/* @__PURE__ */
|
|
35052
|
+
}),
|
|
35053
|
+
/* @__PURE__ */ jsx17("dd", {
|
|
35054
35054
|
children: "brain chat"
|
|
35055
|
-
}
|
|
35055
|
+
})
|
|
35056
35056
|
]
|
|
35057
|
-
}
|
|
35057
|
+
})
|
|
35058
35058
|
]
|
|
35059
|
-
}
|
|
35059
|
+
})
|
|
35060
35060
|
]
|
|
35061
|
-
}
|
|
35061
|
+
})
|
|
35062
35062
|
]
|
|
35063
|
-
}
|
|
35063
|
+
})
|
|
35064
35064
|
]
|
|
35065
|
-
}
|
|
35066
|
-
}
|
|
35065
|
+
})
|
|
35066
|
+
});
|
|
35067
35067
|
}
|
|
35068
35068
|
|
|
35069
35069
|
// src/brain.tsx
|
|
35070
|
-
import {
|
|
35070
|
+
import { jsx as jsx18, jsxs as jsxs11, Fragment as Fragment4 } from "react/jsx-runtime";
|
|
35071
35071
|
function ChapterHead({
|
|
35072
35072
|
cap,
|
|
35073
35073
|
capNote,
|
|
35074
35074
|
headline,
|
|
35075
35075
|
intro
|
|
35076
35076
|
}) {
|
|
35077
|
-
return /* @__PURE__ */
|
|
35077
|
+
return /* @__PURE__ */ jsxs11(Fragment4, {
|
|
35078
35078
|
children: [
|
|
35079
|
-
/* @__PURE__ */
|
|
35079
|
+
/* @__PURE__ */ jsx18(SectCap, {
|
|
35080
35080
|
lead: cap,
|
|
35081
35081
|
trail: capNote
|
|
35082
|
-
}
|
|
35083
|
-
/* @__PURE__ */
|
|
35082
|
+
}),
|
|
35083
|
+
/* @__PURE__ */ jsx18("h2", {
|
|
35084
35084
|
className: "reveal reveal-delay-1 mt-3.5 max-w-[20em] font-display text-[clamp(28px,3vw,40px)] font-[465] leading-[1.1] tracking-[-0.014em] text-theme [font-variation-settings:'SOFT'_78,'opsz'_84]",
|
|
35085
35085
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35086
|
-
}
|
|
35087
|
-
/* @__PURE__ */
|
|
35086
|
+
}),
|
|
35087
|
+
/* @__PURE__ */ jsx18("p", {
|
|
35088
35088
|
className: "reveal reveal-delay-2 mt-4 max-w-[62ch] font-body text-[17px] leading-[1.7] text-theme-muted",
|
|
35089
35089
|
children: intro
|
|
35090
|
-
}
|
|
35090
|
+
})
|
|
35091
35091
|
]
|
|
35092
|
-
}
|
|
35092
|
+
});
|
|
35093
35093
|
}
|
|
35094
35094
|
var heroSchema = exports_external.object({
|
|
35095
35095
|
eyebrow: exports_external.string(),
|
|
@@ -35109,61 +35109,61 @@ function BrainHeroSection({
|
|
|
35109
35109
|
secondaryCta,
|
|
35110
35110
|
chips
|
|
35111
35111
|
}) {
|
|
35112
|
-
return /* @__PURE__ */
|
|
35112
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35113
35113
|
id: "brain-hero",
|
|
35114
35114
|
className: "relative overflow-hidden pt-16 pb-8 md:pt-20",
|
|
35115
35115
|
children: [
|
|
35116
|
-
/* @__PURE__ */
|
|
35116
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35117
35117
|
"aria-hidden": "true",
|
|
35118
35118
|
className: "pointer-events-none absolute -inset-x-[10%] -inset-y-[30%] bg-[radial-gradient(680px_360px_at_14%_8%,rgb(from_var(--color-accent)_r_g_b_/_0.14),transparent_66%)]"
|
|
35119
|
-
}
|
|
35120
|
-
/* @__PURE__ */
|
|
35119
|
+
}),
|
|
35120
|
+
/* @__PURE__ */ jsxs11("div", {
|
|
35121
35121
|
className: "relative",
|
|
35122
35122
|
children: [
|
|
35123
|
-
/* @__PURE__ */
|
|
35123
|
+
/* @__PURE__ */ jsx18(SectCap, {
|
|
35124
35124
|
lead: eyebrow,
|
|
35125
35125
|
trail: provenance
|
|
35126
|
-
}
|
|
35127
|
-
/* @__PURE__ */
|
|
35126
|
+
}),
|
|
35127
|
+
/* @__PURE__ */ jsx18("h1", {
|
|
35128
35128
|
className: "mt-[18px] max-w-[15.5em] font-display text-[clamp(36px,4.8vw,64px)] font-[448] leading-[1.04] tracking-[-0.02em] text-theme [font-variation-settings:'SOFT'_88,'opsz'_110]",
|
|
35129
35129
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35130
|
-
}
|
|
35131
|
-
/* @__PURE__ */
|
|
35130
|
+
}),
|
|
35131
|
+
/* @__PURE__ */ jsx18("p", {
|
|
35132
35132
|
className: "mt-4 max-w-[52ch] font-body text-[20px] leading-[1.7] text-theme-muted",
|
|
35133
35133
|
children: standfirst
|
|
35134
|
-
}
|
|
35135
|
-
/* @__PURE__ */
|
|
35134
|
+
}),
|
|
35135
|
+
/* @__PURE__ */ jsx18(CtaRow, {
|
|
35136
35136
|
primaryCta,
|
|
35137
35137
|
secondaryCta,
|
|
35138
35138
|
className: "mt-[26px]"
|
|
35139
|
-
}
|
|
35140
|
-
/* @__PURE__ */
|
|
35139
|
+
}),
|
|
35140
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35141
35141
|
className: "mt-9 flex flex-wrap gap-2.5",
|
|
35142
|
-
children: chips.map((chip) => /* @__PURE__ */
|
|
35142
|
+
children: chips.map((chip) => /* @__PURE__ */ jsx18("span", {
|
|
35143
35143
|
className: "rounded-full border border-theme px-[13px] py-1.5 font-label text-[10.5px] tracking-[0.06em] text-theme-light",
|
|
35144
35144
|
children: chip
|
|
35145
|
-
}, chip
|
|
35146
|
-
}
|
|
35145
|
+
}, chip))
|
|
35146
|
+
})
|
|
35147
35147
|
]
|
|
35148
|
-
}
|
|
35148
|
+
})
|
|
35149
35149
|
]
|
|
35150
|
-
}
|
|
35150
|
+
});
|
|
35151
35151
|
}
|
|
35152
35152
|
function Checks({ items }) {
|
|
35153
|
-
return /* @__PURE__ */
|
|
35153
|
+
return /* @__PURE__ */ jsx18("ul", {
|
|
35154
35154
|
className: "mt-[18px] max-w-[40ch] font-body text-[15.5px] text-theme-light",
|
|
35155
|
-
children: items.map((item) => /* @__PURE__ */
|
|
35155
|
+
children: items.map((item) => /* @__PURE__ */ jsxs11("li", {
|
|
35156
35156
|
className: "flex gap-2.5 border-b border-theme-light py-[7px]",
|
|
35157
35157
|
children: [
|
|
35158
|
-
/* @__PURE__ */
|
|
35158
|
+
/* @__PURE__ */ jsx18("span", {
|
|
35159
35159
|
"aria-hidden": "true",
|
|
35160
35160
|
className: "font-label text-secondary",
|
|
35161
35161
|
children: "\u2713"
|
|
35162
|
-
}
|
|
35162
|
+
}),
|
|
35163
35163
|
item
|
|
35164
35164
|
]
|
|
35165
|
-
}, item
|
|
35166
|
-
}
|
|
35165
|
+
}, item))
|
|
35166
|
+
});
|
|
35167
35167
|
}
|
|
35168
35168
|
var captureSchema = exports_external.object({
|
|
35169
35169
|
cap: exports_external.string(),
|
|
@@ -35179,41 +35179,41 @@ function BrainCaptureSection({
|
|
|
35179
35179
|
intro,
|
|
35180
35180
|
checks: checks3
|
|
35181
35181
|
}) {
|
|
35182
|
-
return /* @__PURE__ */
|
|
35182
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35183
35183
|
id: "capture",
|
|
35184
35184
|
className: "py-14",
|
|
35185
35185
|
children: [
|
|
35186
|
-
/* @__PURE__ */
|
|
35187
|
-
/* @__PURE__ */
|
|
35186
|
+
/* @__PURE__ */ jsx18(BrainScreenStyles, {}),
|
|
35187
|
+
/* @__PURE__ */ jsx18(SectCap, {
|
|
35188
35188
|
lead: cap,
|
|
35189
35189
|
trail: capNote
|
|
35190
|
-
}
|
|
35191
|
-
/* @__PURE__ */
|
|
35190
|
+
}),
|
|
35191
|
+
/* @__PURE__ */ jsxs11("div", {
|
|
35192
35192
|
className: "mt-4 grid items-center gap-11 lg:grid-cols-[4fr_8fr]",
|
|
35193
35193
|
children: [
|
|
35194
|
-
/* @__PURE__ */
|
|
35194
|
+
/* @__PURE__ */ jsxs11("div", {
|
|
35195
35195
|
children: [
|
|
35196
|
-
/* @__PURE__ */
|
|
35196
|
+
/* @__PURE__ */ jsx18("h2", {
|
|
35197
35197
|
className: "reveal reveal-delay-1 font-display text-[clamp(26px,2.6vw,34px)] font-[465] leading-[1.12] tracking-[-0.012em] text-theme [font-variation-settings:'SOFT'_78,'opsz'_84]",
|
|
35198
35198
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35199
|
-
}
|
|
35200
|
-
/* @__PURE__ */
|
|
35199
|
+
}),
|
|
35200
|
+
/* @__PURE__ */ jsx18("p", {
|
|
35201
35201
|
className: "reveal reveal-delay-2 mt-4 font-body text-[16.5px] leading-[1.7] text-theme-muted",
|
|
35202
35202
|
children: intro
|
|
35203
|
-
}
|
|
35204
|
-
/* @__PURE__ */
|
|
35203
|
+
}),
|
|
35204
|
+
/* @__PURE__ */ jsx18(Checks, {
|
|
35205
35205
|
items: checks3
|
|
35206
|
-
}
|
|
35206
|
+
})
|
|
35207
35207
|
]
|
|
35208
|
-
}
|
|
35209
|
-
/* @__PURE__ */
|
|
35208
|
+
}),
|
|
35209
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35210
35210
|
className: "reveal reveal-delay-2",
|
|
35211
|
-
children: /* @__PURE__ */
|
|
35212
|
-
}
|
|
35211
|
+
children: /* @__PURE__ */ jsx18(StudioScreen, {})
|
|
35212
|
+
})
|
|
35213
35213
|
]
|
|
35214
|
-
}
|
|
35214
|
+
})
|
|
35215
35215
|
]
|
|
35216
|
-
}
|
|
35216
|
+
});
|
|
35217
35217
|
}
|
|
35218
35218
|
var askSchema = exports_external.object({
|
|
35219
35219
|
cap: exports_external.string(),
|
|
@@ -35227,31 +35227,31 @@ function BrainAskSection({
|
|
|
35227
35227
|
headline,
|
|
35228
35228
|
intro
|
|
35229
35229
|
}) {
|
|
35230
|
-
return /* @__PURE__ */
|
|
35230
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35231
35231
|
id: "ask",
|
|
35232
35232
|
className: "py-14",
|
|
35233
35233
|
children: [
|
|
35234
|
-
/* @__PURE__ */
|
|
35234
|
+
/* @__PURE__ */ jsx18(ChapterHead, {
|
|
35235
35235
|
cap,
|
|
35236
35236
|
capNote,
|
|
35237
35237
|
headline,
|
|
35238
35238
|
intro
|
|
35239
|
-
}
|
|
35240
|
-
/* @__PURE__ */
|
|
35239
|
+
}),
|
|
35240
|
+
/* @__PURE__ */ jsxs11("div", {
|
|
35241
35241
|
className: "mt-7 grid items-start gap-6 lg:grid-cols-[1.12fr_1fr]",
|
|
35242
35242
|
children: [
|
|
35243
|
-
/* @__PURE__ */
|
|
35243
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35244
35244
|
className: "reveal reveal-delay-1",
|
|
35245
|
-
children: /* @__PURE__ */
|
|
35246
|
-
}
|
|
35247
|
-
/* @__PURE__ */
|
|
35245
|
+
children: /* @__PURE__ */ jsx18(ChatScreen, {})
|
|
35246
|
+
}),
|
|
35247
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35248
35248
|
className: "reveal reveal-delay-2",
|
|
35249
|
-
children: /* @__PURE__ */
|
|
35250
|
-
}
|
|
35249
|
+
children: /* @__PURE__ */ jsx18(IntegrationsScreen, {})
|
|
35250
|
+
})
|
|
35251
35251
|
]
|
|
35252
|
-
}
|
|
35252
|
+
})
|
|
35253
35253
|
]
|
|
35254
|
-
}
|
|
35254
|
+
});
|
|
35255
35255
|
}
|
|
35256
35256
|
var runSchema = exports_external.object({
|
|
35257
35257
|
cap: exports_external.string(),
|
|
@@ -35267,26 +35267,26 @@ function BrainRunSection({
|
|
|
35267
35267
|
intro,
|
|
35268
35268
|
note
|
|
35269
35269
|
}) {
|
|
35270
|
-
return /* @__PURE__ */
|
|
35270
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35271
35271
|
id: "run",
|
|
35272
35272
|
className: "py-14",
|
|
35273
35273
|
children: [
|
|
35274
|
-
/* @__PURE__ */
|
|
35274
|
+
/* @__PURE__ */ jsx18(ChapterHead, {
|
|
35275
35275
|
cap,
|
|
35276
35276
|
capNote,
|
|
35277
35277
|
headline,
|
|
35278
35278
|
intro
|
|
35279
|
-
}
|
|
35280
|
-
/* @__PURE__ */
|
|
35279
|
+
}),
|
|
35280
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35281
35281
|
className: "reveal reveal-delay-1 mt-7",
|
|
35282
|
-
children: /* @__PURE__ */
|
|
35283
|
-
}
|
|
35284
|
-
/* @__PURE__ */
|
|
35282
|
+
children: /* @__PURE__ */ jsx18(DashboardScreen, {})
|
|
35283
|
+
}),
|
|
35284
|
+
/* @__PURE__ */ jsx18("p", {
|
|
35285
35285
|
className: "reveal reveal-delay-2 mt-5 max-w-[52em] font-display text-[17px] font-normal italic text-theme-light [font-variation-settings:'SOFT'_85]",
|
|
35286
35286
|
children: renderHighlightedText(note, "font-medium not-italic text-theme-muted")
|
|
35287
|
-
}
|
|
35287
|
+
})
|
|
35288
35288
|
]
|
|
35289
|
-
}
|
|
35289
|
+
});
|
|
35290
35290
|
}
|
|
35291
35291
|
var connectSchema = exports_external.object({
|
|
35292
35292
|
cap: exports_external.string(),
|
|
@@ -35302,44 +35302,44 @@ function BrainConnectSection({
|
|
|
35302
35302
|
intro,
|
|
35303
35303
|
cta
|
|
35304
35304
|
}) {
|
|
35305
|
-
return /* @__PURE__ */
|
|
35305
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35306
35306
|
id: "connect",
|
|
35307
35307
|
className: "py-14",
|
|
35308
35308
|
children: [
|
|
35309
|
-
/* @__PURE__ */
|
|
35309
|
+
/* @__PURE__ */ jsx18(ChapterHead, {
|
|
35310
35310
|
cap,
|
|
35311
35311
|
capNote,
|
|
35312
35312
|
headline,
|
|
35313
35313
|
intro
|
|
35314
|
-
}
|
|
35315
|
-
/* @__PURE__ */
|
|
35314
|
+
}),
|
|
35315
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35316
35316
|
className: "reveal reveal-delay-2 mt-6",
|
|
35317
|
-
children: /* @__PURE__ */
|
|
35317
|
+
children: /* @__PURE__ */ jsx18("a", {
|
|
35318
35318
|
href: cta.href,
|
|
35319
35319
|
className: "font-body text-[15.5px] text-theme-light no-underline transition-colors hover:text-accent",
|
|
35320
35320
|
children: cta.label
|
|
35321
|
-
}
|
|
35322
|
-
}
|
|
35321
|
+
})
|
|
35322
|
+
})
|
|
35323
35323
|
]
|
|
35324
|
-
}
|
|
35324
|
+
});
|
|
35325
35325
|
}
|
|
35326
35326
|
function BrainYourDataSection({
|
|
35327
35327
|
cap,
|
|
35328
35328
|
items
|
|
35329
35329
|
}) {
|
|
35330
|
-
return /* @__PURE__ */
|
|
35330
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35331
35331
|
id: "your-data",
|
|
35332
35332
|
className: "py-14",
|
|
35333
35333
|
children: [
|
|
35334
|
-
/* @__PURE__ */
|
|
35334
|
+
/* @__PURE__ */ jsx18(SectCap, {
|
|
35335
35335
|
lead: cap
|
|
35336
|
-
}
|
|
35337
|
-
/* @__PURE__ */
|
|
35336
|
+
}),
|
|
35337
|
+
/* @__PURE__ */ jsx18(Trio, {
|
|
35338
35338
|
items,
|
|
35339
35339
|
mono: true
|
|
35340
|
-
}
|
|
35340
|
+
})
|
|
35341
35341
|
]
|
|
35342
|
-
}
|
|
35342
|
+
});
|
|
35343
35343
|
}
|
|
35344
35344
|
var termLineSchema = exports_external.object({
|
|
35345
35345
|
kind: exports_external.enum(["comment", "command", "ok"]),
|
|
@@ -35367,37 +35367,37 @@ function BrainQuickstartSection({
|
|
|
35367
35367
|
lines,
|
|
35368
35368
|
checks: checks3
|
|
35369
35369
|
}) {
|
|
35370
|
-
return /* @__PURE__ */
|
|
35370
|
+
return /* @__PURE__ */ jsxs11(Section, {
|
|
35371
35371
|
id: "quickstart",
|
|
35372
35372
|
className: "py-14",
|
|
35373
35373
|
children: [
|
|
35374
|
-
/* @__PURE__ */
|
|
35374
|
+
/* @__PURE__ */ jsx18(SectCap, {
|
|
35375
35375
|
lead: cap,
|
|
35376
35376
|
trail: capNote
|
|
35377
|
-
}
|
|
35378
|
-
/* @__PURE__ */
|
|
35377
|
+
}),
|
|
35378
|
+
/* @__PURE__ */ jsxs11("div", {
|
|
35379
35379
|
className: "mt-7 grid items-start gap-12 md:grid-cols-[1.15fr_1fr]",
|
|
35380
35380
|
children: [
|
|
35381
|
-
/* @__PURE__ */
|
|
35381
|
+
/* @__PURE__ */ jsx18("div", {
|
|
35382
35382
|
className: "reveal reveal-delay-1 border border-theme bg-theme-subtle/60 px-6 py-5 font-label text-[14px] leading-[1.9]",
|
|
35383
|
-
children: lines.map((line, i) => /* @__PURE__ */
|
|
35383
|
+
children: lines.map((line, i) => /* @__PURE__ */ jsxs11("div", {
|
|
35384
35384
|
className: termLineClass(line.kind),
|
|
35385
35385
|
children: [
|
|
35386
|
-
line.kind === "command" && /* @__PURE__ */
|
|
35386
|
+
line.kind === "command" && /* @__PURE__ */ jsx18("span", {
|
|
35387
35387
|
className: "select-none text-accent",
|
|
35388
35388
|
children: "$ "
|
|
35389
|
-
}
|
|
35389
|
+
}),
|
|
35390
35390
|
line.text
|
|
35391
35391
|
]
|
|
35392
|
-
}, i
|
|
35393
|
-
}
|
|
35394
|
-
/* @__PURE__ */
|
|
35392
|
+
}, i))
|
|
35393
|
+
}),
|
|
35394
|
+
/* @__PURE__ */ jsx18(Checks, {
|
|
35395
35395
|
items: checks3
|
|
35396
|
-
}
|
|
35396
|
+
})
|
|
35397
35397
|
]
|
|
35398
|
-
}
|
|
35398
|
+
})
|
|
35399
35399
|
]
|
|
35400
|
-
}
|
|
35400
|
+
});
|
|
35401
35401
|
}
|
|
35402
35402
|
var closeSchema = exports_external.object({
|
|
35403
35403
|
quote: exports_external.string(),
|
|
@@ -35411,20 +35411,20 @@ function BrainCloseSection({
|
|
|
35411
35411
|
primaryCta,
|
|
35412
35412
|
secondaryCta
|
|
35413
35413
|
}) {
|
|
35414
|
-
return /* @__PURE__ */
|
|
35414
|
+
return /* @__PURE__ */ jsxs11(Band, {
|
|
35415
35415
|
quote,
|
|
35416
35416
|
children: [
|
|
35417
|
-
/* @__PURE__ */
|
|
35417
|
+
/* @__PURE__ */ jsx18("p", {
|
|
35418
35418
|
className: "reveal reveal-delay-1 mt-[18px] max-w-[52ch] font-body text-[17px] text-theme-light",
|
|
35419
35419
|
children: sub
|
|
35420
|
-
}
|
|
35421
|
-
/* @__PURE__ */
|
|
35420
|
+
}),
|
|
35421
|
+
/* @__PURE__ */ jsx18(CtaRow, {
|
|
35422
35422
|
primaryCta,
|
|
35423
35423
|
secondaryCta,
|
|
35424
35424
|
className: "reveal reveal-delay-2 mt-[26px]"
|
|
35425
|
-
}
|
|
35425
|
+
})
|
|
35426
35426
|
]
|
|
35427
|
-
}
|
|
35427
|
+
});
|
|
35428
35428
|
}
|
|
35429
35429
|
var brainSections = sectionGroup("brain", {
|
|
35430
35430
|
hero: defineSection(heroSchema, BrainHeroSection, {
|
|
@@ -35462,7 +35462,7 @@ var brainSections = sectionGroup("brain", {
|
|
|
35462
35462
|
});
|
|
35463
35463
|
|
|
35464
35464
|
// src/work.tsx
|
|
35465
|
-
import {
|
|
35465
|
+
import { jsx as jsx19, jsxs as jsxs12, Fragment as Fragment5 } from "react/jsx-runtime";
|
|
35466
35466
|
var diagnosticSchema = exports_external.object({
|
|
35467
35467
|
typeLabel: exports_external.string(),
|
|
35468
35468
|
teamType: exports_external.string(),
|
|
@@ -35475,142 +35475,142 @@ var diagnosticSchema = exports_external.object({
|
|
|
35475
35475
|
runHref: exports_external.string()
|
|
35476
35476
|
});
|
|
35477
35477
|
function DiagnosticPanel(diag) {
|
|
35478
|
-
return /* @__PURE__ */
|
|
35478
|
+
return /* @__PURE__ */ jsxs12("div", {
|
|
35479
35479
|
className: "diag reveal reveal-delay-1 px-[30px] pt-5 pb-[26px]",
|
|
35480
35480
|
children: [
|
|
35481
|
-
/* @__PURE__ */
|
|
35481
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35482
35482
|
className: "diag-bar"
|
|
35483
|
-
}
|
|
35484
|
-
/* @__PURE__ */
|
|
35483
|
+
}),
|
|
35484
|
+
/* @__PURE__ */ jsxs12("svg", {
|
|
35485
35485
|
className: "radar block w-full pb-2",
|
|
35486
35486
|
viewBox: "0 4 360 248",
|
|
35487
35487
|
role: "img",
|
|
35488
35488
|
"aria-label": "Three-axis TMS radar \u2014 Specialization, Credibility, Coordination",
|
|
35489
35489
|
children: [
|
|
35490
|
-
/* @__PURE__ */
|
|
35490
|
+
/* @__PURE__ */ jsx19("polygon", {
|
|
35491
35491
|
className: "tri-outer",
|
|
35492
35492
|
points: "180,50 266.60,200 93.40,200"
|
|
35493
|
-
}
|
|
35494
|
-
/* @__PURE__ */
|
|
35493
|
+
}),
|
|
35494
|
+
/* @__PURE__ */ jsx19("polygon", {
|
|
35495
35495
|
className: "tri-score",
|
|
35496
35496
|
points: "180,95 233.69,181 150.56,167"
|
|
35497
|
-
}
|
|
35498
|
-
/* @__PURE__ */
|
|
35497
|
+
}),
|
|
35498
|
+
/* @__PURE__ */ jsx19("circle", {
|
|
35499
35499
|
className: "vertex",
|
|
35500
35500
|
cx: "180",
|
|
35501
35501
|
cy: "95",
|
|
35502
35502
|
r: "4"
|
|
35503
|
-
}
|
|
35504
|
-
/* @__PURE__ */
|
|
35503
|
+
}),
|
|
35504
|
+
/* @__PURE__ */ jsx19("circle", {
|
|
35505
35505
|
className: "vertex",
|
|
35506
35506
|
cx: "233.69",
|
|
35507
35507
|
cy: "181",
|
|
35508
35508
|
r: "4"
|
|
35509
|
-
}
|
|
35510
|
-
/* @__PURE__ */
|
|
35509
|
+
}),
|
|
35510
|
+
/* @__PURE__ */ jsx19("circle", {
|
|
35511
35511
|
className: "vertex",
|
|
35512
35512
|
cx: "150.56",
|
|
35513
35513
|
cy: "167",
|
|
35514
35514
|
r: "4"
|
|
35515
|
-
}
|
|
35516
|
-
/* @__PURE__ */
|
|
35515
|
+
}),
|
|
35516
|
+
/* @__PURE__ */ jsx19("text", {
|
|
35517
35517
|
x: "180",
|
|
35518
35518
|
y: "34",
|
|
35519
35519
|
textAnchor: "middle",
|
|
35520
35520
|
children: "Specialization"
|
|
35521
|
-
}
|
|
35522
|
-
/* @__PURE__ */
|
|
35521
|
+
}),
|
|
35522
|
+
/* @__PURE__ */ jsx19("text", {
|
|
35523
35523
|
x: "252",
|
|
35524
35524
|
y: "222",
|
|
35525
35525
|
textAnchor: "start",
|
|
35526
35526
|
children: "Credibility"
|
|
35527
|
-
}
|
|
35528
|
-
/* @__PURE__ */
|
|
35527
|
+
}),
|
|
35528
|
+
/* @__PURE__ */ jsx19("text", {
|
|
35529
35529
|
x: "108",
|
|
35530
35530
|
y: "222",
|
|
35531
35531
|
textAnchor: "end",
|
|
35532
35532
|
children: "Coordination"
|
|
35533
|
-
}
|
|
35533
|
+
})
|
|
35534
35534
|
]
|
|
35535
|
-
}
|
|
35536
|
-
/* @__PURE__ */
|
|
35535
|
+
}),
|
|
35536
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35537
35537
|
className: "flex items-baseline justify-between gap-4 border-t border-theme-light py-4",
|
|
35538
35538
|
children: [
|
|
35539
|
-
/* @__PURE__ */
|
|
35539
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35540
35540
|
className: "whitespace-nowrap font-label text-[11px] uppercase tracking-[0.18em] text-theme-light",
|
|
35541
35541
|
children: diag.typeLabel
|
|
35542
|
-
}
|
|
35543
|
-
/* @__PURE__ */
|
|
35542
|
+
}),
|
|
35543
|
+
/* @__PURE__ */ jsx19("b", {
|
|
35544
35544
|
className: "text-right font-display text-[26px] font-medium italic tracking-[-0.015em] text-theme [font-variation-settings:'SOFT'_70,'opsz'_96]",
|
|
35545
35545
|
children: diag.teamType
|
|
35546
|
-
}
|
|
35546
|
+
})
|
|
35547
35547
|
]
|
|
35548
|
-
}
|
|
35549
|
-
/* @__PURE__ */
|
|
35548
|
+
}),
|
|
35549
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35550
35550
|
className: "border-t border-theme-light pt-4",
|
|
35551
35551
|
children: [
|
|
35552
|
-
/* @__PURE__ */
|
|
35552
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35553
35553
|
className: "flex items-baseline justify-between gap-3 font-label text-[10.5px] uppercase tracking-[0.2em] text-theme-light",
|
|
35554
35554
|
children: [
|
|
35555
|
-
/* @__PURE__ */
|
|
35555
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35556
35556
|
children: diag.actionsLabel
|
|
35557
|
-
}
|
|
35558
|
-
/* @__PURE__ */
|
|
35557
|
+
}),
|
|
35558
|
+
/* @__PURE__ */ jsxs12("span", {
|
|
35559
35559
|
children: [
|
|
35560
|
-
/* @__PURE__ */
|
|
35560
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35561
35561
|
className: "mr-1.5 opacity-60",
|
|
35562
35562
|
children: "\u2192"
|
|
35563
|
-
}
|
|
35564
|
-
/* @__PURE__ */
|
|
35563
|
+
}),
|
|
35564
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35565
35565
|
className: "text-accent",
|
|
35566
35566
|
children: diag.scoreDimension
|
|
35567
|
-
}
|
|
35567
|
+
}),
|
|
35568
35568
|
" ",
|
|
35569
|
-
/* @__PURE__ */
|
|
35569
|
+
/* @__PURE__ */ jsxs12("span", {
|
|
35570
35570
|
className: "text-accent [font-variant-numeric:tabular-nums]",
|
|
35571
35571
|
children: [
|
|
35572
35572
|
diag.scoreValue,
|
|
35573
|
-
/* @__PURE__ */
|
|
35573
|
+
/* @__PURE__ */ jsxs12("span", {
|
|
35574
35574
|
className: "opacity-60",
|
|
35575
35575
|
children: [
|
|
35576
35576
|
"/",
|
|
35577
35577
|
diag.scoreMax
|
|
35578
35578
|
]
|
|
35579
|
-
}
|
|
35579
|
+
})
|
|
35580
35580
|
]
|
|
35581
|
-
}
|
|
35581
|
+
})
|
|
35582
35582
|
]
|
|
35583
|
-
}
|
|
35583
|
+
})
|
|
35584
35584
|
]
|
|
35585
|
-
}
|
|
35586
|
-
/* @__PURE__ */
|
|
35585
|
+
}),
|
|
35586
|
+
/* @__PURE__ */ jsx19("ul", {
|
|
35587
35587
|
className: "mt-3.5 flex list-none flex-col gap-[11px]",
|
|
35588
|
-
children: diag.actions.map((action, i) => /* @__PURE__ */
|
|
35588
|
+
children: diag.actions.map((action, i) => /* @__PURE__ */ jsxs12("li", {
|
|
35589
35589
|
className: "flex items-baseline gap-3 font-body text-[14px] leading-[1.5] text-theme-muted",
|
|
35590
35590
|
children: [
|
|
35591
|
-
/* @__PURE__ */
|
|
35591
|
+
/* @__PURE__ */ jsxs12("span", {
|
|
35592
35592
|
className: "min-w-[26px] font-label text-[11px] font-semibold tracking-[0.1em] text-accent-bright",
|
|
35593
35593
|
children: [
|
|
35594
35594
|
"[",
|
|
35595
35595
|
String(i + 1).padStart(2, "0"),
|
|
35596
35596
|
"]"
|
|
35597
35597
|
]
|
|
35598
|
-
}
|
|
35599
|
-
/* @__PURE__ */
|
|
35598
|
+
}),
|
|
35599
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35600
35600
|
children: action
|
|
35601
|
-
}
|
|
35601
|
+
})
|
|
35602
35602
|
]
|
|
35603
|
-
}, action
|
|
35604
|
-
}
|
|
35603
|
+
}, action))
|
|
35604
|
+
})
|
|
35605
35605
|
]
|
|
35606
|
-
}
|
|
35607
|
-
/* @__PURE__ */
|
|
35606
|
+
}),
|
|
35607
|
+
/* @__PURE__ */ jsx19("a", {
|
|
35608
35608
|
href: diag.runHref,
|
|
35609
35609
|
className: "mt-[18px] flex w-full items-center justify-center rounded-[10px] border border-theme px-4 py-3 font-label text-label-xs uppercase tracking-[0.18em] text-theme-muted no-underline transition-colors hover:border-accent hover:text-theme",
|
|
35610
35610
|
children: diag.runLabel
|
|
35611
|
-
}
|
|
35611
|
+
})
|
|
35612
35612
|
]
|
|
35613
|
-
}
|
|
35613
|
+
});
|
|
35614
35614
|
}
|
|
35615
35615
|
var heroSchema2 = exports_external.object({
|
|
35616
35616
|
eyebrow: exports_external.string(),
|
|
@@ -35630,50 +35630,50 @@ function WorkHeroSection({
|
|
|
35630
35630
|
secondaryCta,
|
|
35631
35631
|
diagnostic
|
|
35632
35632
|
}) {
|
|
35633
|
-
return /* @__PURE__ */
|
|
35633
|
+
return /* @__PURE__ */ jsxs12(Section, {
|
|
35634
35634
|
id: "work-hero",
|
|
35635
35635
|
className: "relative overflow-hidden pt-16 pb-[30px] md:pt-20",
|
|
35636
35636
|
children: [
|
|
35637
|
-
/* @__PURE__ */
|
|
35637
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35638
35638
|
"aria-hidden": "true",
|
|
35639
35639
|
className: "pointer-events-none absolute -inset-x-[10%] -inset-y-[30%] bg-[radial-gradient(680px_360px_at_14%_8%,rgb(from_var(--color-accent)_r_g_b_/_0.14),transparent_66%)]"
|
|
35640
|
-
}
|
|
35641
|
-
/* @__PURE__ */
|
|
35640
|
+
}),
|
|
35641
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35642
35642
|
className: "relative",
|
|
35643
35643
|
children: [
|
|
35644
|
-
/* @__PURE__ */
|
|
35644
|
+
/* @__PURE__ */ jsx19(SectCap, {
|
|
35645
35645
|
lead: eyebrow,
|
|
35646
35646
|
trail: provenance
|
|
35647
|
-
}
|
|
35648
|
-
/* @__PURE__ */
|
|
35647
|
+
}),
|
|
35648
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35649
35649
|
className: "mt-1 grid items-start gap-14 lg:grid-cols-[1.2fr_1fr]",
|
|
35650
35650
|
children: [
|
|
35651
|
-
/* @__PURE__ */
|
|
35651
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35652
35652
|
children: [
|
|
35653
|
-
/* @__PURE__ */
|
|
35653
|
+
/* @__PURE__ */ jsx19("h1", {
|
|
35654
35654
|
className: "mt-[18px] max-w-[15.5em] font-display text-[clamp(36px,4.6vw,64px)] font-[448] leading-[1.05] tracking-[-0.018em] text-theme [font-variation-settings:'SOFT'_88,'opsz'_110]",
|
|
35655
35655
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35656
|
-
}
|
|
35657
|
-
/* @__PURE__ */
|
|
35656
|
+
}),
|
|
35657
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35658
35658
|
className: "mt-4 max-w-[50ch] font-body text-[20px] leading-[1.7] text-theme-muted",
|
|
35659
35659
|
children: standfirst
|
|
35660
|
-
}
|
|
35661
|
-
/* @__PURE__ */
|
|
35660
|
+
}),
|
|
35661
|
+
/* @__PURE__ */ jsx19(CtaRow, {
|
|
35662
35662
|
primaryCta,
|
|
35663
35663
|
secondaryCta,
|
|
35664
35664
|
className: "mt-[26px] mb-10"
|
|
35665
|
-
}
|
|
35665
|
+
})
|
|
35666
35666
|
]
|
|
35667
|
-
}
|
|
35668
|
-
/* @__PURE__ */
|
|
35667
|
+
}),
|
|
35668
|
+
/* @__PURE__ */ jsx19(DiagnosticPanel, {
|
|
35669
35669
|
...diagnostic
|
|
35670
|
-
}
|
|
35670
|
+
})
|
|
35671
35671
|
]
|
|
35672
|
-
}
|
|
35672
|
+
})
|
|
35673
35673
|
]
|
|
35674
|
-
}
|
|
35674
|
+
})
|
|
35675
35675
|
]
|
|
35676
|
-
}
|
|
35676
|
+
});
|
|
35677
35677
|
}
|
|
35678
35678
|
var statementSchema = exports_external.object({
|
|
35679
35679
|
cap: exports_external.string(),
|
|
@@ -35687,31 +35687,31 @@ function Statement({
|
|
|
35687
35687
|
headline,
|
|
35688
35688
|
intro
|
|
35689
35689
|
}) {
|
|
35690
|
-
return /* @__PURE__ */
|
|
35690
|
+
return /* @__PURE__ */ jsxs12(Fragment5, {
|
|
35691
35691
|
children: [
|
|
35692
|
-
/* @__PURE__ */
|
|
35692
|
+
/* @__PURE__ */ jsx19(SectCap, {
|
|
35693
35693
|
lead: cap,
|
|
35694
35694
|
trail: capNote
|
|
35695
|
-
}
|
|
35696
|
-
/* @__PURE__ */
|
|
35695
|
+
}),
|
|
35696
|
+
/* @__PURE__ */ jsx19("h2", {
|
|
35697
35697
|
className: "reveal reveal-delay-1 mt-3.5 max-w-[21em] font-display text-[clamp(30px,3.2vw,44px)] font-[465] leading-[1.1] tracking-[-0.014em] text-theme [font-variation-settings:'SOFT'_78,'opsz'_84]",
|
|
35698
35698
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35699
|
-
}
|
|
35700
|
-
/* @__PURE__ */
|
|
35699
|
+
}),
|
|
35700
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35701
35701
|
className: "reveal reveal-delay-2 mt-4 max-w-[62ch] font-body text-[17px] leading-[1.7] text-theme-muted",
|
|
35702
35702
|
children: intro
|
|
35703
|
-
}
|
|
35703
|
+
})
|
|
35704
35704
|
]
|
|
35705
|
-
}
|
|
35705
|
+
});
|
|
35706
35706
|
}
|
|
35707
35707
|
function WorkProblemSection(content3) {
|
|
35708
|
-
return /* @__PURE__ */
|
|
35708
|
+
return /* @__PURE__ */ jsx19(Section, {
|
|
35709
35709
|
id: "work-problem",
|
|
35710
35710
|
className: "py-14",
|
|
35711
|
-
children: /* @__PURE__ */
|
|
35711
|
+
children: /* @__PURE__ */ jsx19(Statement, {
|
|
35712
35712
|
...content3
|
|
35713
|
-
}
|
|
35714
|
-
}
|
|
35713
|
+
})
|
|
35714
|
+
});
|
|
35715
35715
|
}
|
|
35716
35716
|
var workshopSchema = exports_external.object({
|
|
35717
35717
|
cap: exports_external.string(),
|
|
@@ -35728,44 +35728,44 @@ function WorkWorkshopSection({
|
|
|
35728
35728
|
steps,
|
|
35729
35729
|
...statement
|
|
35730
35730
|
}) {
|
|
35731
|
-
return /* @__PURE__ */
|
|
35731
|
+
return /* @__PURE__ */ jsxs12(Section, {
|
|
35732
35732
|
id: "workshop",
|
|
35733
35733
|
className: "py-14",
|
|
35734
35734
|
children: [
|
|
35735
|
-
/* @__PURE__ */
|
|
35735
|
+
/* @__PURE__ */ jsx19(Statement, {
|
|
35736
35736
|
...statement
|
|
35737
|
-
}
|
|
35738
|
-
/* @__PURE__ */
|
|
35737
|
+
}),
|
|
35738
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35739
35739
|
className: "mt-7",
|
|
35740
|
-
children: steps.map((step, i) => /* @__PURE__ */
|
|
35740
|
+
children: steps.map((step, i) => /* @__PURE__ */ jsxs12("div", {
|
|
35741
35741
|
className: `reveal ${delayClass(i)} grid items-baseline gap-6 border-t border-theme-light py-6 md:grid-cols-[64px_170px_1fr]`,
|
|
35742
35742
|
children: [
|
|
35743
|
-
/* @__PURE__ */
|
|
35743
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35744
35744
|
className: "font-display text-[37px] font-light leading-none text-theme-light [font-variation-settings:'SOFT'_30]",
|
|
35745
35745
|
children: String(i + 1).padStart(2, "0")
|
|
35746
|
-
}
|
|
35747
|
-
/* @__PURE__ */
|
|
35746
|
+
}),
|
|
35747
|
+
/* @__PURE__ */ jsx19("b", {
|
|
35748
35748
|
className: "font-display text-[21px] font-[520] text-theme [font-variation-settings:'SOFT'_60]",
|
|
35749
35749
|
children: step.title
|
|
35750
|
-
}
|
|
35751
|
-
/* @__PURE__ */
|
|
35750
|
+
}),
|
|
35751
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35752
35752
|
className: "max-w-[60ch]",
|
|
35753
35753
|
children: [
|
|
35754
|
-
/* @__PURE__ */
|
|
35754
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35755
35755
|
className: "mb-[3px] font-body text-[16.5px] text-theme-muted",
|
|
35756
35756
|
children: step.lead
|
|
35757
|
-
}
|
|
35758
|
-
/* @__PURE__ */
|
|
35757
|
+
}),
|
|
35758
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35759
35759
|
className: "font-body text-[16px] text-theme-light",
|
|
35760
35760
|
children: step.text
|
|
35761
|
-
}
|
|
35761
|
+
})
|
|
35762
35762
|
]
|
|
35763
|
-
}
|
|
35763
|
+
})
|
|
35764
35764
|
]
|
|
35765
|
-
}, step.title
|
|
35766
|
-
}
|
|
35765
|
+
}, step.title))
|
|
35766
|
+
})
|
|
35767
35767
|
]
|
|
35768
|
-
}
|
|
35768
|
+
});
|
|
35769
35769
|
}
|
|
35770
35770
|
var personasSchema = exports_external.object({
|
|
35771
35771
|
cap: exports_external.string(),
|
|
@@ -35779,35 +35779,35 @@ function WorkPersonasSection({
|
|
|
35779
35779
|
cap,
|
|
35780
35780
|
personas
|
|
35781
35781
|
}) {
|
|
35782
|
-
return /* @__PURE__ */
|
|
35782
|
+
return /* @__PURE__ */ jsxs12(Section, {
|
|
35783
35783
|
id: "personas",
|
|
35784
35784
|
className: "py-14",
|
|
35785
35785
|
children: [
|
|
35786
|
-
/* @__PURE__ */
|
|
35786
|
+
/* @__PURE__ */ jsx19(SectCap, {
|
|
35787
35787
|
lead: cap
|
|
35788
|
-
}
|
|
35789
|
-
/* @__PURE__ */
|
|
35788
|
+
}),
|
|
35789
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35790
35790
|
className: "mt-7 grid gap-11 md:grid-cols-2",
|
|
35791
|
-
children: personas.map((persona, i) => /* @__PURE__ */
|
|
35791
|
+
children: personas.map((persona, i) => /* @__PURE__ */ jsxs12("div", {
|
|
35792
35792
|
className: `reveal ${delayClass(i + 1)}`,
|
|
35793
35793
|
children: [
|
|
35794
|
-
/* @__PURE__ */
|
|
35794
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35795
35795
|
className: "font-label text-label-xs uppercase tracking-[0.16em] text-accent",
|
|
35796
35796
|
children: persona.role
|
|
35797
|
-
}
|
|
35798
|
-
/* @__PURE__ */
|
|
35797
|
+
}),
|
|
35798
|
+
/* @__PURE__ */ jsx19("blockquote", {
|
|
35799
35799
|
className: "mt-2.5 font-display text-[24px] font-[450] italic leading-[1.3] tracking-[-0.008em] text-theme [font-variation-settings:'SOFT'_85]",
|
|
35800
35800
|
children: persona.quote
|
|
35801
|
-
}
|
|
35802
|
-
/* @__PURE__ */
|
|
35801
|
+
}),
|
|
35802
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35803
35803
|
className: "mt-2.5 max-w-[52ch] font-body text-[16px] text-theme-light",
|
|
35804
35804
|
children: persona.text
|
|
35805
|
-
}
|
|
35805
|
+
})
|
|
35806
35806
|
]
|
|
35807
|
-
}, persona.role
|
|
35808
|
-
}
|
|
35807
|
+
}, persona.role))
|
|
35808
|
+
})
|
|
35809
35809
|
]
|
|
35810
|
-
}
|
|
35810
|
+
});
|
|
35811
35811
|
}
|
|
35812
35812
|
var quotesSchema = exports_external.object({
|
|
35813
35813
|
cap: exports_external.string(),
|
|
@@ -35822,44 +35822,44 @@ function WorkQuotesSection({
|
|
|
35822
35822
|
capNote,
|
|
35823
35823
|
quotes
|
|
35824
35824
|
}) {
|
|
35825
|
-
return /* @__PURE__ */
|
|
35825
|
+
return /* @__PURE__ */ jsxs12(Section, {
|
|
35826
35826
|
id: "proof",
|
|
35827
35827
|
className: "py-14",
|
|
35828
35828
|
children: [
|
|
35829
|
-
/* @__PURE__ */
|
|
35829
|
+
/* @__PURE__ */ jsx19(SectCap, {
|
|
35830
35830
|
lead: cap,
|
|
35831
35831
|
trail: capNote
|
|
35832
|
-
}
|
|
35833
|
-
/* @__PURE__ */
|
|
35832
|
+
}),
|
|
35833
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35834
35834
|
className: "mt-7",
|
|
35835
|
-
children: quotes.map((quote, i) => /* @__PURE__ */
|
|
35835
|
+
children: quotes.map((quote, i) => /* @__PURE__ */ jsxs12("div", {
|
|
35836
35836
|
className: `reveal ${delayClass(i)} grid grid-cols-[44px_1fr] gap-[18px] border-t border-theme-light py-[26px] first:border-t-0`,
|
|
35837
35837
|
children: [
|
|
35838
|
-
/* @__PURE__ */
|
|
35838
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35839
35839
|
"aria-hidden": "true",
|
|
35840
35840
|
className: "font-display text-[48px] leading-[0.7] text-accent opacity-80",
|
|
35841
35841
|
children: "\u201C"
|
|
35842
|
-
}
|
|
35843
|
-
/* @__PURE__ */
|
|
35842
|
+
}),
|
|
35843
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35844
35844
|
children: [
|
|
35845
|
-
/* @__PURE__ */
|
|
35845
|
+
/* @__PURE__ */ jsx19("p", {
|
|
35846
35846
|
className: "max-w-[66ch] font-body text-[18.5px] leading-[1.65] text-theme-muted",
|
|
35847
35847
|
children: quote.text
|
|
35848
|
-
}
|
|
35849
|
-
/* @__PURE__ */
|
|
35848
|
+
}),
|
|
35849
|
+
/* @__PURE__ */ jsxs12("div", {
|
|
35850
35850
|
className: "mt-2.5 font-label text-[12px] text-theme-light",
|
|
35851
35851
|
children: [
|
|
35852
35852
|
"\u2014 ",
|
|
35853
35853
|
quote.by
|
|
35854
35854
|
]
|
|
35855
|
-
}
|
|
35855
|
+
})
|
|
35856
35856
|
]
|
|
35857
|
-
}
|
|
35857
|
+
})
|
|
35858
35858
|
]
|
|
35859
|
-
}, quote.by
|
|
35860
|
-
}
|
|
35859
|
+
}, quote.by))
|
|
35860
|
+
})
|
|
35861
35861
|
]
|
|
35862
|
-
}
|
|
35862
|
+
});
|
|
35863
35863
|
}
|
|
35864
35864
|
var rosterSchema = exports_external.object({
|
|
35865
35865
|
cap: exports_external.string(),
|
|
@@ -35875,36 +35875,36 @@ function WorkRosterSection({
|
|
|
35875
35875
|
capNote,
|
|
35876
35876
|
people
|
|
35877
35877
|
}) {
|
|
35878
|
-
return /* @__PURE__ */
|
|
35878
|
+
return /* @__PURE__ */ jsxs12(Section, {
|
|
35879
35879
|
id: "people",
|
|
35880
35880
|
className: "py-14",
|
|
35881
35881
|
children: [
|
|
35882
|
-
/* @__PURE__ */
|
|
35882
|
+
/* @__PURE__ */ jsx19(SectCap, {
|
|
35883
35883
|
lead: cap,
|
|
35884
35884
|
trail: capNote
|
|
35885
|
-
}
|
|
35886
|
-
/* @__PURE__ */
|
|
35885
|
+
}),
|
|
35886
|
+
/* @__PURE__ */ jsx19("div", {
|
|
35887
35887
|
className: "reveal reveal-delay-1 mt-6 flex flex-wrap gap-x-[34px] gap-y-2.5",
|
|
35888
|
-
children: people.map((person) => /* @__PURE__ */
|
|
35888
|
+
children: people.map((person) => /* @__PURE__ */ jsxs12("span", {
|
|
35889
35889
|
className: "flex items-baseline gap-2.5 py-1.5",
|
|
35890
35890
|
children: [
|
|
35891
|
-
/* @__PURE__ */
|
|
35891
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35892
35892
|
className: "font-label text-[11px] tracking-[0.08em] text-accent",
|
|
35893
35893
|
children: person.init
|
|
35894
|
-
}
|
|
35895
|
-
/* @__PURE__ */
|
|
35894
|
+
}),
|
|
35895
|
+
/* @__PURE__ */ jsx19("b", {
|
|
35896
35896
|
className: "font-body text-[16.5px] font-medium text-theme",
|
|
35897
35897
|
children: person.name
|
|
35898
|
-
}
|
|
35899
|
-
/* @__PURE__ */
|
|
35898
|
+
}),
|
|
35899
|
+
/* @__PURE__ */ jsx19("span", {
|
|
35900
35900
|
className: "font-body text-[13.5px] text-theme-light",
|
|
35901
35901
|
children: person.role
|
|
35902
|
-
}
|
|
35902
|
+
})
|
|
35903
35903
|
]
|
|
35904
|
-
}, person.name
|
|
35905
|
-
}
|
|
35904
|
+
}, person.name))
|
|
35905
|
+
})
|
|
35906
35906
|
]
|
|
35907
|
-
}
|
|
35907
|
+
});
|
|
35908
35908
|
}
|
|
35909
35909
|
var closerSchema = exports_external.object({
|
|
35910
35910
|
quote: exports_external.string(),
|
|
@@ -35916,14 +35916,14 @@ function WorkCloserSection({
|
|
|
35916
35916
|
primaryCta,
|
|
35917
35917
|
secondaryCta
|
|
35918
35918
|
}) {
|
|
35919
|
-
return /* @__PURE__ */
|
|
35919
|
+
return /* @__PURE__ */ jsx19(Band, {
|
|
35920
35920
|
quote,
|
|
35921
|
-
children: /* @__PURE__ */
|
|
35921
|
+
children: /* @__PURE__ */ jsx19(CtaRow, {
|
|
35922
35922
|
primaryCta,
|
|
35923
35923
|
secondaryCta,
|
|
35924
35924
|
className: "reveal reveal-delay-1 mt-7"
|
|
35925
|
-
}
|
|
35926
|
-
}
|
|
35925
|
+
})
|
|
35926
|
+
});
|
|
35927
35927
|
}
|
|
35928
35928
|
var workSections = sectionGroup("work", {
|
|
35929
35929
|
hero: defineSection(heroSchema2, WorkHeroSection, {
|
|
@@ -35957,7 +35957,7 @@ var workSections = sectionGroup("work", {
|
|
|
35957
35957
|
});
|
|
35958
35958
|
|
|
35959
35959
|
// src/foundation.tsx
|
|
35960
|
-
import {
|
|
35960
|
+
import { jsx as jsx20, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
35961
35961
|
var heroSchema3 = exports_external.object({
|
|
35962
35962
|
volume: exports_external.string(),
|
|
35963
35963
|
meta: exports_external.string(),
|
|
@@ -35974,38 +35974,38 @@ function FoundationHeroSection({
|
|
|
35974
35974
|
primaryCta,
|
|
35975
35975
|
secondaryCta
|
|
35976
35976
|
}) {
|
|
35977
|
-
return /* @__PURE__ */
|
|
35977
|
+
return /* @__PURE__ */ jsxs13(Section, {
|
|
35978
35978
|
id: "foundation-hero",
|
|
35979
35979
|
className: "relative overflow-hidden pt-16 pb-[30px] md:pt-20",
|
|
35980
35980
|
children: [
|
|
35981
|
-
/* @__PURE__ */
|
|
35981
|
+
/* @__PURE__ */ jsx20("div", {
|
|
35982
35982
|
"aria-hidden": "true",
|
|
35983
35983
|
className: "pointer-events-none absolute -inset-x-[10%] -inset-y-[30%] bg-[radial-gradient(680px_360px_at_14%_8%,rgb(from_var(--color-accent)_r_g_b_/_0.14),transparent_66%)]"
|
|
35984
|
-
}
|
|
35985
|
-
/* @__PURE__ */
|
|
35984
|
+
}),
|
|
35985
|
+
/* @__PURE__ */ jsxs13("div", {
|
|
35986
35986
|
className: "relative",
|
|
35987
35987
|
children: [
|
|
35988
|
-
/* @__PURE__ */
|
|
35988
|
+
/* @__PURE__ */ jsx20(SectCap, {
|
|
35989
35989
|
lead: volume,
|
|
35990
35990
|
trail: meta3
|
|
35991
|
-
}
|
|
35992
|
-
/* @__PURE__ */
|
|
35991
|
+
}),
|
|
35992
|
+
/* @__PURE__ */ jsx20("h1", {
|
|
35993
35993
|
className: "mt-[18px] max-w-[15.5em] font-display text-[clamp(36px,4.6vw,64px)] font-[448] leading-[1.05] tracking-[-0.018em] text-theme [font-variation-settings:'SOFT'_88,'opsz'_110]",
|
|
35994
35994
|
children: renderHighlightedText(headline, ROOM_HIGHLIGHT_CLS)
|
|
35995
|
-
}
|
|
35996
|
-
/* @__PURE__ */
|
|
35995
|
+
}),
|
|
35996
|
+
/* @__PURE__ */ jsx20("p", {
|
|
35997
35997
|
className: "mt-4 max-w-[50ch] font-body text-[20px] leading-[1.7] text-theme-muted",
|
|
35998
35998
|
children: standfirst
|
|
35999
|
-
}
|
|
36000
|
-
/* @__PURE__ */
|
|
35999
|
+
}),
|
|
36000
|
+
/* @__PURE__ */ jsx20(CtaRow, {
|
|
36001
36001
|
primaryCta,
|
|
36002
36002
|
secondaryCta,
|
|
36003
36003
|
className: "mt-[26px] mb-11"
|
|
36004
|
-
}
|
|
36004
|
+
})
|
|
36005
36005
|
]
|
|
36006
|
-
}
|
|
36006
|
+
})
|
|
36007
36007
|
]
|
|
36008
|
-
}
|
|
36008
|
+
});
|
|
36009
36009
|
}
|
|
36010
36010
|
var indexRowSchema = exports_external.object({
|
|
36011
36011
|
no: exports_external.string(),
|
|
@@ -36027,35 +36027,35 @@ function IndexSection({
|
|
|
36027
36027
|
capNote,
|
|
36028
36028
|
items
|
|
36029
36029
|
}) {
|
|
36030
|
-
return /* @__PURE__ */
|
|
36030
|
+
return /* @__PURE__ */ jsxs13(Section, {
|
|
36031
36031
|
id,
|
|
36032
36032
|
className: "py-14",
|
|
36033
36033
|
children: [
|
|
36034
|
-
/* @__PURE__ */
|
|
36034
|
+
/* @__PURE__ */ jsx20(SectCap, {
|
|
36035
36035
|
lead: cap,
|
|
36036
36036
|
trail: capNote
|
|
36037
|
-
}
|
|
36038
|
-
/* @__PURE__ */
|
|
36037
|
+
}),
|
|
36038
|
+
/* @__PURE__ */ jsx20("div", {
|
|
36039
36039
|
className: "mt-2",
|
|
36040
|
-
children: items.map((row, i) => /* @__PURE__ */
|
|
36040
|
+
children: items.map((row, i) => /* @__PURE__ */ jsx20(IndexRow, {
|
|
36041
36041
|
row,
|
|
36042
36042
|
delayClass: delayClass(i)
|
|
36043
|
-
}, row.title
|
|
36044
|
-
}
|
|
36043
|
+
}, row.title))
|
|
36044
|
+
})
|
|
36045
36045
|
]
|
|
36046
|
-
}
|
|
36046
|
+
});
|
|
36047
36047
|
}
|
|
36048
36048
|
function FoundationResearchSection(content3) {
|
|
36049
|
-
return /* @__PURE__ */
|
|
36049
|
+
return /* @__PURE__ */ jsx20(IndexSection, {
|
|
36050
36050
|
id: "research",
|
|
36051
36051
|
...content3
|
|
36052
|
-
}
|
|
36052
|
+
});
|
|
36053
36053
|
}
|
|
36054
36054
|
function FoundationChaptersSection(content3) {
|
|
36055
|
-
return /* @__PURE__ */
|
|
36055
|
+
return /* @__PURE__ */ jsx20(IndexSection, {
|
|
36056
36056
|
id: "events",
|
|
36057
36057
|
...content3
|
|
36058
|
-
}
|
|
36058
|
+
});
|
|
36059
36059
|
}
|
|
36060
36060
|
var pullquoteSchema = exports_external.object({
|
|
36061
36061
|
quote: exports_external.string(),
|
|
@@ -36065,13 +36065,13 @@ function FoundationPullquoteSection({
|
|
|
36065
36065
|
quote,
|
|
36066
36066
|
attribution
|
|
36067
36067
|
}) {
|
|
36068
|
-
return /* @__PURE__ */
|
|
36068
|
+
return /* @__PURE__ */ jsx20(Band, {
|
|
36069
36069
|
quote,
|
|
36070
|
-
children: /* @__PURE__ */
|
|
36070
|
+
children: /* @__PURE__ */ jsx20("p", {
|
|
36071
36071
|
className: "reveal reveal-delay-1 mt-[18px] font-label text-[12px] text-theme-light",
|
|
36072
36072
|
children: attribution
|
|
36073
|
-
}
|
|
36074
|
-
}
|
|
36073
|
+
})
|
|
36074
|
+
});
|
|
36075
36075
|
}
|
|
36076
36076
|
var supportSchema = exports_external.object({
|
|
36077
36077
|
cap: exports_external.string(),
|
|
@@ -36087,36 +36087,36 @@ function FoundationSupportSection({
|
|
|
36087
36087
|
capNote,
|
|
36088
36088
|
options: options2
|
|
36089
36089
|
}) {
|
|
36090
|
-
return /* @__PURE__ */
|
|
36090
|
+
return /* @__PURE__ */ jsxs13(Section, {
|
|
36091
36091
|
id: "support",
|
|
36092
36092
|
className: "py-14",
|
|
36093
36093
|
children: [
|
|
36094
|
-
/* @__PURE__ */
|
|
36094
|
+
/* @__PURE__ */ jsx20(SectCap, {
|
|
36095
36095
|
lead: cap,
|
|
36096
36096
|
trail: capNote
|
|
36097
|
-
}
|
|
36098
|
-
/* @__PURE__ */
|
|
36097
|
+
}),
|
|
36098
|
+
/* @__PURE__ */ jsx20("div", {
|
|
36099
36099
|
className: "mt-[26px] grid gap-13 md:grid-cols-2",
|
|
36100
|
-
children: options2.map((option, i) => /* @__PURE__ */
|
|
36100
|
+
children: options2.map((option, i) => /* @__PURE__ */ jsxs13("div", {
|
|
36101
36101
|
className: `reveal ${delayClass(i + 1)}`,
|
|
36102
36102
|
children: [
|
|
36103
|
-
/* @__PURE__ */
|
|
36103
|
+
/* @__PURE__ */ jsx20("span", {
|
|
36104
36104
|
className: "font-label text-label-xs uppercase tracking-[0.16em] text-accent",
|
|
36105
36105
|
children: option.kicker
|
|
36106
|
-
}
|
|
36107
|
-
/* @__PURE__ */
|
|
36106
|
+
}),
|
|
36107
|
+
/* @__PURE__ */ jsx20("div", {
|
|
36108
36108
|
className: "mt-2 font-display text-[30px] font-[480] text-theme [font-variation-settings:'SOFT'_40]",
|
|
36109
36109
|
children: option.amount
|
|
36110
|
-
}
|
|
36111
|
-
/* @__PURE__ */
|
|
36110
|
+
}),
|
|
36111
|
+
/* @__PURE__ */ jsx20("p", {
|
|
36112
36112
|
className: "mt-2 max-w-[52ch] font-body text-[15.5px] text-theme-light",
|
|
36113
36113
|
children: option.text
|
|
36114
|
-
}
|
|
36114
|
+
})
|
|
36115
36115
|
]
|
|
36116
|
-
}, option.kicker
|
|
36117
|
-
}
|
|
36116
|
+
}, option.kicker))
|
|
36117
|
+
})
|
|
36118
36118
|
]
|
|
36119
|
-
}
|
|
36119
|
+
});
|
|
36120
36120
|
}
|
|
36121
36121
|
var followSchema = exports_external.object({
|
|
36122
36122
|
claim: exports_external.string(),
|
|
@@ -36299,4 +36299,4 @@ export {
|
|
|
36299
36299
|
workSections
|
|
36300
36300
|
};
|
|
36301
36301
|
|
|
36302
|
-
//# debugId=
|
|
36302
|
+
//# debugId=7428725E67A383FD64756E2164756E21
|