jsonresume-theme-cjean 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.cjs +3 -3
- package/dist/index.js +443 -408
- package/package.json +11 -10
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region ../../node_modules/.bun/@cjean-fr+i18n-tiny@1.0.
|
|
1
|
+
//#region ../../node_modules/.bun/@cjean-fr+i18n-tiny@1.0.1/node_modules/@cjean-fr/i18n-tiny/dist/index.js
|
|
2
2
|
function e(e, t = {}) {
|
|
3
3
|
return e.replace(/\{([\w-]+?)\}/g, (e, n) => {
|
|
4
4
|
let r = t[n];
|
|
@@ -18,7 +18,7 @@ function n() {
|
|
|
18
18
|
return (e) => e;
|
|
19
19
|
}
|
|
20
20
|
//#endregion
|
|
21
|
-
//#region ../../node_modules/.bun/@cjean-fr+jsx-string@1.2.
|
|
21
|
+
//#region ../../node_modules/.bun/@cjean-fr+jsx-string@1.2.2/node_modules/@cjean-fr/jsx-string/dist/index.js
|
|
22
22
|
var r = new Map([
|
|
23
23
|
["&", "&"],
|
|
24
24
|
["<", "<"],
|
|
@@ -100,7 +100,7 @@ var r = new Map([
|
|
|
100
100
|
if (ae.test(t)) return !1;
|
|
101
101
|
oe.lastIndex = 0;
|
|
102
102
|
let n;
|
|
103
|
-
for (; n = oe.exec(t);) if (!ee(n[2]
|
|
103
|
+
for (; n = oe.exec(t);) if (!ee(n[2]?.trim() ?? "")) return !1;
|
|
104
104
|
return !0;
|
|
105
105
|
}, h = class {
|
|
106
106
|
value;
|
|
@@ -340,7 +340,7 @@ function Ee({ name: e, label: t, children: n, ...r }) {
|
|
|
340
340
|
children: e
|
|
341
341
|
}),
|
|
342
342
|
t && /* @__PURE__ */ _("p", {
|
|
343
|
-
className: "mt-2 text-
|
|
343
|
+
className: "mt-2 text-3xl font-light tracking-wide text-gray-500 dark:text-slate-400",
|
|
344
344
|
children: t
|
|
345
345
|
}),
|
|
346
346
|
n
|
|
@@ -363,15 +363,39 @@ function w({ date: e, format: t, children: n, ...r }) {
|
|
|
363
363
|
});
|
|
364
364
|
}
|
|
365
365
|
//#endregion
|
|
366
|
+
//#region src/components/Period.tsx
|
|
367
|
+
function T({ startDate: e, endDate: t, format: n, ...r }) {
|
|
368
|
+
return !e && !t ? null : /* @__PURE__ */ _("div", {
|
|
369
|
+
...r,
|
|
370
|
+
children: e ? /* @__PURE__ */ v(y, { children: [
|
|
371
|
+
/* @__PURE__ */ _(w, {
|
|
372
|
+
date: e,
|
|
373
|
+
format: n
|
|
374
|
+
}),
|
|
375
|
+
"\xA0—\xA0",
|
|
376
|
+
t ? /* @__PURE__ */ _(w, {
|
|
377
|
+
date: t,
|
|
378
|
+
format: n
|
|
379
|
+
}) : /* @__PURE__ */ _("span", {
|
|
380
|
+
className: "text-primary font-bold",
|
|
381
|
+
children: S("present")
|
|
382
|
+
})
|
|
383
|
+
] }) : /* @__PURE__ */ _(w, {
|
|
384
|
+
date: t,
|
|
385
|
+
format: n
|
|
386
|
+
})
|
|
387
|
+
});
|
|
388
|
+
}
|
|
389
|
+
//#endregion
|
|
366
390
|
//#region src/components/Section.tsx
|
|
367
|
-
function
|
|
391
|
+
function E({ name: e, children: t, ...n }) {
|
|
368
392
|
let r = e ? `section-${e.toLowerCase().replace(/\s+/g, "-")}` : void 0;
|
|
369
393
|
return /* @__PURE__ */ v("section", {
|
|
370
394
|
"aria-labelledby": r,
|
|
371
395
|
...n,
|
|
372
396
|
children: [e && /* @__PURE__ */ _("h2", {
|
|
373
397
|
id: r,
|
|
374
|
-
className: "before:bg-primary relative mt-8 mb-4 break-after-avoid text-2xl
|
|
398
|
+
className: "before:bg-primary relative mt-8 mb-4 break-after-avoid text-2xl tracking-tight text-gray-900 before:absolute before:-bottom-1 before:left-0 before:h-1 before:w-[3ch] before:rounded-[0_0.25rem_0.25rem_0] dark:text-white before:print:[print-color-adjust:exact]",
|
|
375
399
|
children: e
|
|
376
400
|
}), t]
|
|
377
401
|
});
|
|
@@ -380,70 +404,86 @@ function T({ name: e, children: t, ...n }) {
|
|
|
380
404
|
//#region src/components/Education.tsx
|
|
381
405
|
function De({ education: e, certificates: t }) {
|
|
382
406
|
let n = e && e.length > 0, r = t && t.length > 0;
|
|
383
|
-
return !n && !r ? null : /* @__PURE__ */ _(
|
|
407
|
+
return !n && !r ? null : /* @__PURE__ */ _(E, {
|
|
384
408
|
name: S("education"),
|
|
385
|
-
|
|
386
|
-
children: /* @__PURE__ */ v("div", {
|
|
409
|
+
children: /* @__PURE__ */ v("ol", {
|
|
387
410
|
className: "timeline",
|
|
388
|
-
children: [e?.map((e, t) => /* @__PURE__ */
|
|
389
|
-
className: "timeline-item
|
|
390
|
-
children:
|
|
391
|
-
className: "
|
|
392
|
-
children:
|
|
393
|
-
|
|
394
|
-
/* @__PURE__ */
|
|
395
|
-
className: "
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
411
|
+
children: [e?.map((e, t) => /* @__PURE__ */ _("li", {
|
|
412
|
+
className: "timeline-item",
|
|
413
|
+
children: /* @__PURE__ */ _("article", {
|
|
414
|
+
className: "group",
|
|
415
|
+
children: /* @__PURE__ */ _("div", {
|
|
416
|
+
className: "min-w-0 flex-1",
|
|
417
|
+
children: /* @__PURE__ */ v("div", {
|
|
418
|
+
className: "grid grid-cols-1 gap-x-4 md:grid-cols-[1fr_auto]",
|
|
419
|
+
children: [/* @__PURE__ */ v("div", {
|
|
420
|
+
className: "min-w-0",
|
|
421
|
+
children: [/* @__PURE__ */ _("header", { children: /* @__PURE__ */ _("h3", {
|
|
422
|
+
className: "truncate text-xl font-bold tracking-tight text-gray-900 md:whitespace-normal dark:text-white",
|
|
423
|
+
children: e.studyType
|
|
424
|
+
}) }), /* @__PURE__ */ v("div", {
|
|
425
|
+
className: "mt-1 text-gray-600 dark:text-slate-300",
|
|
426
|
+
children: [e.url ? /* @__PURE__ */ _("a", {
|
|
427
|
+
href: e.url,
|
|
428
|
+
target: "_blank",
|
|
429
|
+
rel: "noopener noreferrer",
|
|
430
|
+
translate: "no",
|
|
431
|
+
className: "hover:text-primary font-medium text-gray-700 underline-offset-4 transition-colors hover:underline dark:text-slate-200",
|
|
432
|
+
children: e.institution
|
|
433
|
+
}) : /* @__PURE__ */ _("span", {
|
|
434
|
+
translate: "no",
|
|
435
|
+
className: "font-medium text-gray-700 dark:text-slate-200",
|
|
436
|
+
children: e.institution
|
|
437
|
+
}), e.area && /* @__PURE__ */ v("span", {
|
|
438
|
+
className: "ml-2 text-sm text-gray-500",
|
|
439
|
+
children: ["- ", e.area]
|
|
440
|
+
})]
|
|
441
|
+
})]
|
|
442
|
+
}), /* @__PURE__ */ _(T, {
|
|
443
|
+
startDate: e.startDate,
|
|
444
|
+
endDate: e.endDate,
|
|
445
|
+
format: "year",
|
|
446
|
+
className: "mt-1 flex shrink-0 text-sm text-gray-500 capitalize md:mt-1.5 md:items-start md:text-right dark:text-slate-400"
|
|
447
|
+
})]
|
|
402
448
|
})
|
|
403
|
-
|
|
404
|
-
})
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
className: "
|
|
411
|
-
children:
|
|
412
|
-
"
|
|
413
|
-
/* @__PURE__ */
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
format: "year"
|
|
442
|
-
}),
|
|
443
|
-
")"
|
|
444
|
-
]
|
|
445
|
-
})]
|
|
446
|
-
})]
|
|
449
|
+
})
|
|
450
|
+
})
|
|
451
|
+
}, `edu-${t}`)), t?.map((e, t) => /* @__PURE__ */ _("li", {
|
|
452
|
+
className: "timeline-item timeline-item-secondary",
|
|
453
|
+
children: /* @__PURE__ */ _("article", {
|
|
454
|
+
className: "group",
|
|
455
|
+
children: /* @__PURE__ */ _("div", {
|
|
456
|
+
className: "min-w-0 flex-1",
|
|
457
|
+
children: /* @__PURE__ */ v("div", {
|
|
458
|
+
className: "grid grid-cols-1 gap-x-4 md:grid-cols-[1fr_auto]",
|
|
459
|
+
children: [/* @__PURE__ */ v("div", {
|
|
460
|
+
className: "min-w-0",
|
|
461
|
+
children: [/* @__PURE__ */ _("header", { children: /* @__PURE__ */ _("h3", {
|
|
462
|
+
className: "truncate text-xl font-bold tracking-tight text-gray-900 md:whitespace-normal dark:text-white",
|
|
463
|
+
children: e.name
|
|
464
|
+
}) }), /* @__PURE__ */ _("div", {
|
|
465
|
+
className: "mt-1 text-gray-600 dark:text-slate-300",
|
|
466
|
+
children: e.url ? /* @__PURE__ */ _("a", {
|
|
467
|
+
href: e.url,
|
|
468
|
+
target: "_blank",
|
|
469
|
+
rel: "noopener noreferrer",
|
|
470
|
+
translate: "no",
|
|
471
|
+
className: "hover:text-primary font-medium text-gray-700 underline-offset-4 transition-colors hover:underline dark:text-slate-200",
|
|
472
|
+
children: e.issuer
|
|
473
|
+
}) : /* @__PURE__ */ _("span", {
|
|
474
|
+
translate: "no",
|
|
475
|
+
className: "font-medium text-gray-700 dark:text-slate-200",
|
|
476
|
+
children: e.issuer
|
|
477
|
+
})
|
|
478
|
+
})]
|
|
479
|
+
}), /* @__PURE__ */ _(T, {
|
|
480
|
+
endDate: e.date,
|
|
481
|
+
format: "year",
|
|
482
|
+
className: "mt-1 flex shrink-0 text-sm text-gray-500 capitalize md:mt-1.5 md:items-start md:text-right dark:text-slate-400"
|
|
483
|
+
})]
|
|
484
|
+
})
|
|
485
|
+
})
|
|
486
|
+
})
|
|
447
487
|
}, `cert-${t}`))]
|
|
448
488
|
})
|
|
449
489
|
});
|
|
@@ -456,7 +496,7 @@ var Oe = async (e, t = {}) => {
|
|
|
456
496
|
let r = await fetch(n);
|
|
457
497
|
if (!r.ok) throw Error(`Failed to fetch icon ${e}`);
|
|
458
498
|
return r.text();
|
|
459
|
-
},
|
|
499
|
+
}, D = async (e, t = 24, n = !0) => {
|
|
460
500
|
let r = await Oe(e, { height: t });
|
|
461
501
|
return new h(n ? r.replace("<svg", "<svg aria-hidden=\"true\"") : r);
|
|
462
502
|
}, ke = ({ text: e, url: t, icon: n = "tabler:message-circle", ...r }) => /* @__PURE__ */ v(y, { children: [/* @__PURE__ */ v("a", {
|
|
@@ -469,7 +509,7 @@ var Oe = async (e, t = {}) => {
|
|
|
469
509
|
...r,
|
|
470
510
|
children: [/* @__PURE__ */ _("span", {
|
|
471
511
|
className: "shrink-0",
|
|
472
|
-
children:
|
|
512
|
+
children: D(n)
|
|
473
513
|
}), /* @__PURE__ */ _("span", {
|
|
474
514
|
className: "-mr-2 max-w-0 overflow-hidden text-transparent transition-all duration-300 ease-in-out group-hover:mr-0 group-hover:max-w-96 group-hover:text-inherit group-focus:mr-0 group-focus:max-w-96 group-focus:text-inherit group-[.fab--extended]:mr-0 group-[.fab--extended]:max-w-96 group-[.fab--extended]:text-inherit",
|
|
475
515
|
children: e
|
|
@@ -533,12 +573,12 @@ function Ne(e) {
|
|
|
533
573
|
}
|
|
534
574
|
async function Pe(e) {
|
|
535
575
|
try {
|
|
536
|
-
return await
|
|
576
|
+
return await D(`tabler:brand-${e.toLowerCase()}`);
|
|
537
577
|
} catch {
|
|
538
|
-
return
|
|
578
|
+
return D("tabler:link");
|
|
539
579
|
}
|
|
540
580
|
}
|
|
541
|
-
var
|
|
581
|
+
var O = ({ children: e, ...t }) => /* @__PURE__ */ _("li", {
|
|
542
582
|
className: "inline-flex items-center gap-x-1",
|
|
543
583
|
...t,
|
|
544
584
|
children: e
|
|
@@ -551,17 +591,17 @@ function Fe({ basics: e, list: t = [
|
|
|
551
591
|
] }) {
|
|
552
592
|
let { phone: n, email: r, location: i, profiles: a = [] } = e, o = /* @__PURE__ */ new Set(), s = (e) => {
|
|
553
593
|
let t = e.toLowerCase();
|
|
554
|
-
if (t === "phone" && n) return /* @__PURE__ */ v(
|
|
594
|
+
if (t === "phone" && n) return /* @__PURE__ */ v(O, { children: [D("tabler:phone"), /* @__PURE__ */ _("a", {
|
|
555
595
|
href: `tel:${encodeURIComponent(n)}`,
|
|
556
596
|
title: S("phone_call"),
|
|
557
597
|
children: n
|
|
558
598
|
})] }, "phone");
|
|
559
|
-
if (t === "email" && r) return /* @__PURE__ */ v(
|
|
599
|
+
if (t === "email" && r) return /* @__PURE__ */ v(O, { children: [D("tabler:mail"), /* @__PURE__ */ _("a", {
|
|
560
600
|
href: `mailto:${r}`,
|
|
561
601
|
title: S("email_send"),
|
|
562
602
|
children: r
|
|
563
603
|
})] }, "email");
|
|
564
|
-
if (t === "location" && i && i.city && (i.countryCode || i.region)) return /* @__PURE__ */ v(
|
|
604
|
+
if (t === "location" && i && i.city && (i.countryCode || i.region)) return /* @__PURE__ */ v(O, { children: [D("tabler:map-pin"), /* @__PURE__ */ v("a", {
|
|
565
605
|
href: Ne([
|
|
566
606
|
i.city,
|
|
567
607
|
i.postalCode,
|
|
@@ -578,7 +618,7 @@ function Fe({ basics: e, list: t = [
|
|
|
578
618
|
i.countryCode || i.region
|
|
579
619
|
]
|
|
580
620
|
})] }, "location");
|
|
581
|
-
if (t === "profiles") return a.filter((e) => !o.has(e.network.toLowerCase())).map((e) => (o.add(e.network.toLowerCase()), /* @__PURE__ */ v(
|
|
621
|
+
if (t === "profiles") return a.filter((e) => !o.has(e.network.toLowerCase())).map((e) => (o.add(e.network.toLowerCase()), /* @__PURE__ */ v(O, { children: [Pe(e.network), /* @__PURE__ */ _("a", {
|
|
582
622
|
href: e.url,
|
|
583
623
|
rel: "me noopener noreferrer",
|
|
584
624
|
title: e.username,
|
|
@@ -587,7 +627,7 @@ function Fe({ basics: e, list: t = [
|
|
|
587
627
|
children: e.network
|
|
588
628
|
})] }, e.network)));
|
|
589
629
|
let s = a.find((e) => e.network.toLowerCase() === t);
|
|
590
|
-
return s && !o.has(t) ? (o.add(t), /* @__PURE__ */ v(
|
|
630
|
+
return s && !o.has(t) ? (o.add(t), /* @__PURE__ */ v(O, { children: [Pe(s.network), /* @__PURE__ */ _("a", {
|
|
591
631
|
href: s.url,
|
|
592
632
|
rel: "me noopener noreferrer",
|
|
593
633
|
title: s.username,
|
|
@@ -709,7 +749,7 @@ async function Be({ title: e, description: t, canonical: n, robots: r, favicon:
|
|
|
709
749
|
}),
|
|
710
750
|
i && /* @__PURE__ */ _("link", {
|
|
711
751
|
rel: "icon",
|
|
712
|
-
href: `data:image/svg+xml;base64,${btoa((await
|
|
752
|
+
href: `data:image/svg+xml;base64,${btoa((await D(i)).toString())}`
|
|
713
753
|
})
|
|
714
754
|
] });
|
|
715
755
|
}
|
|
@@ -772,13 +812,13 @@ function He({ title: e, description: t, url: n, image: r }) {
|
|
|
772
812
|
//#endregion
|
|
773
813
|
//#region src/components/Skills.tsx
|
|
774
814
|
function Ue({ skills: e, ...t }) {
|
|
775
|
-
return !e || e.length === 0 ? null : /* @__PURE__ */ _(
|
|
815
|
+
return !e || e.length === 0 ? null : /* @__PURE__ */ _(E, {
|
|
776
816
|
name: S("skills"),
|
|
777
817
|
...t,
|
|
778
818
|
children: e.map((e) => /* @__PURE__ */ v("div", {
|
|
779
819
|
className: "mb-4 break-inside-avoid",
|
|
780
820
|
children: [/* @__PURE__ */ _("h3", {
|
|
781
|
-
className: "text-
|
|
821
|
+
className: "text-xl font-bold tracking-tight text-gray-900 dark:text-white",
|
|
782
822
|
children: e.name
|
|
783
823
|
}), /* @__PURE__ */ _("ul", {
|
|
784
824
|
className: "my-3 flex flex-wrap gap-2 leading-8",
|
|
@@ -791,7 +831,7 @@ function Ue({ skills: e, ...t }) {
|
|
|
791
831
|
});
|
|
792
832
|
}
|
|
793
833
|
Object.freeze({ status: "aborted" });
|
|
794
|
-
function
|
|
834
|
+
function k(e, t, n) {
|
|
795
835
|
function r(n, r) {
|
|
796
836
|
if (n._zod || Object.defineProperty(n, "_zod", {
|
|
797
837
|
value: {
|
|
@@ -820,7 +860,7 @@ function O(e, t, n) {
|
|
|
820
860
|
}
|
|
821
861
|
return Object.defineProperty(o, "init", { value: r }), Object.defineProperty(o, Symbol.hasInstance, { value: (t) => n?.Parent && t instanceof n.Parent ? !0 : t?._zod?.traits?.has(e) }), Object.defineProperty(o, "name", { value: e }), o;
|
|
822
862
|
}
|
|
823
|
-
var
|
|
863
|
+
var A = class extends Error {
|
|
824
864
|
constructor() {
|
|
825
865
|
super("Encountered Promise during synchronous parse. Use .parseAsync() instead.");
|
|
826
866
|
}
|
|
@@ -829,7 +869,7 @@ var k = class extends Error {
|
|
|
829
869
|
super(`Encountered unidirectional transform during encode: ${e}`), this.name = "ZodEncodeError";
|
|
830
870
|
}
|
|
831
871
|
}, Ge = {};
|
|
832
|
-
function
|
|
872
|
+
function j(e) {
|
|
833
873
|
return e && Object.assign(Ge, e), Ge;
|
|
834
874
|
}
|
|
835
875
|
//#endregion
|
|
@@ -858,7 +898,7 @@ function Xe(e) {
|
|
|
858
898
|
return e.slice(t, n);
|
|
859
899
|
}
|
|
860
900
|
var Ze = Symbol("evaluating");
|
|
861
|
-
function
|
|
901
|
+
function M(e, t, n) {
|
|
862
902
|
let r;
|
|
863
903
|
Object.defineProperty(e, t, {
|
|
864
904
|
get() {
|
|
@@ -871,15 +911,15 @@ function j(e, t, n) {
|
|
|
871
911
|
});
|
|
872
912
|
}
|
|
873
913
|
var Qe = "captureStackTrace" in Error ? Error.captureStackTrace : (...e) => {};
|
|
874
|
-
function
|
|
914
|
+
function N(e) {
|
|
875
915
|
return typeof e == "object" && !!e && !Array.isArray(e);
|
|
876
916
|
}
|
|
877
917
|
function $e(e) {
|
|
878
|
-
if (
|
|
918
|
+
if (N(e) === !1) return !1;
|
|
879
919
|
let t = e.constructor;
|
|
880
920
|
if (t === void 0 || typeof t != "function") return !0;
|
|
881
921
|
let n = t.prototype;
|
|
882
|
-
return !(
|
|
922
|
+
return !(N(n) === !1 || Object.prototype.hasOwnProperty.call(n, "isPrototypeOf") === !1);
|
|
883
923
|
}
|
|
884
924
|
function et(e) {
|
|
885
925
|
return $e(e) ? { ...e } : Array.isArray(e) ? [...e] : e;
|
|
@@ -896,7 +936,7 @@ function rt(e, t, n) {
|
|
|
896
936
|
let r = new e._zod.constr(t ?? e._zod.def);
|
|
897
937
|
return (!t || n?.parent) && (r._zod.parent = e), r;
|
|
898
938
|
}
|
|
899
|
-
function
|
|
939
|
+
function P(e) {
|
|
900
940
|
let t = e;
|
|
901
941
|
if (!t) return {};
|
|
902
942
|
if (typeof t == "string") return { error: () => t };
|
|
@@ -913,7 +953,7 @@ function it(e) {
|
|
|
913
953
|
return Object.keys(e).filter((t) => e[t]._zod.optin === "optional" && e[t]._zod.optout === "optional");
|
|
914
954
|
}
|
|
915
955
|
-Number.MAX_VALUE, Number.MAX_VALUE;
|
|
916
|
-
function
|
|
956
|
+
function F(e, t = 0) {
|
|
917
957
|
if (e.aborted === !0) return !0;
|
|
918
958
|
for (let n = t; n < e.issues.length; n++) if (e.issues[n]?.continue !== !0) return !0;
|
|
919
959
|
return !1;
|
|
@@ -924,15 +964,15 @@ function at(e, t) {
|
|
|
924
964
|
return (n = t).path ?? (n.path = []), t.path.unshift(e), t;
|
|
925
965
|
});
|
|
926
966
|
}
|
|
927
|
-
function
|
|
967
|
+
function I(e) {
|
|
928
968
|
return typeof e == "string" ? e : e?.message;
|
|
929
969
|
}
|
|
930
|
-
function
|
|
970
|
+
function L(e, t, n) {
|
|
931
971
|
let r = {
|
|
932
972
|
...e,
|
|
933
973
|
path: e.path ?? []
|
|
934
974
|
};
|
|
935
|
-
return e.message || (r.message =
|
|
975
|
+
return e.message || (r.message = I(e.inst?._zod.def?.error?.(e)) ?? I(t?.error?.(e)) ?? I(n.customError?.(e)) ?? I(n.localeError?.(e)) ?? "Invalid input"), delete r.inst, delete r.continue, t?.reportInput || delete r.input, r;
|
|
936
976
|
}
|
|
937
977
|
function ot(e) {
|
|
938
978
|
return Array.isArray(e) ? "array" : typeof e == "string" ? "string" : "unknown";
|
|
@@ -959,28 +999,28 @@ var ct = (e, t) => {
|
|
|
959
999
|
value: () => e.message,
|
|
960
1000
|
enumerable: !1
|
|
961
1001
|
});
|
|
962
|
-
}, lt =
|
|
1002
|
+
}, lt = k("$ZodError", ct), R = k("$ZodError", ct, { Parent: Error }), ut = /* @__PURE__ */ ((e) => (t, n, r, i) => {
|
|
963
1003
|
let a = r ? Object.assign(r, { async: !1 }) : { async: !1 }, o = t._zod.run({
|
|
964
1004
|
value: n,
|
|
965
1005
|
issues: []
|
|
966
1006
|
}, a);
|
|
967
|
-
if (o instanceof Promise) throw new
|
|
1007
|
+
if (o instanceof Promise) throw new A();
|
|
968
1008
|
if (o.issues.length) {
|
|
969
|
-
let t = new (i?.Err ?? e)(o.issues.map((e) =>
|
|
1009
|
+
let t = new (i?.Err ?? e)(o.issues.map((e) => L(e, a, j())));
|
|
970
1010
|
throw Qe(t, i?.callee), t;
|
|
971
1011
|
}
|
|
972
1012
|
return o.value;
|
|
973
|
-
})(
|
|
1013
|
+
})(R), dt = /* @__PURE__ */ ((e) => async (t, n, r, i) => {
|
|
974
1014
|
let a = r ? Object.assign(r, { async: !0 }) : { async: !0 }, o = t._zod.run({
|
|
975
1015
|
value: n,
|
|
976
1016
|
issues: []
|
|
977
1017
|
}, a);
|
|
978
1018
|
if (o instanceof Promise && (o = await o), o.issues.length) {
|
|
979
|
-
let t = new (i?.Err ?? e)(o.issues.map((e) =>
|
|
1019
|
+
let t = new (i?.Err ?? e)(o.issues.map((e) => L(e, a, j())));
|
|
980
1020
|
throw Qe(t, i?.callee), t;
|
|
981
1021
|
}
|
|
982
1022
|
return o.value;
|
|
983
|
-
})(
|
|
1023
|
+
})(R), ft = /* @__PURE__ */ ((e) => (t, n, r) => {
|
|
984
1024
|
let i = r ? {
|
|
985
1025
|
...r,
|
|
986
1026
|
async: !1
|
|
@@ -988,33 +1028,33 @@ var ct = (e, t) => {
|
|
|
988
1028
|
value: n,
|
|
989
1029
|
issues: []
|
|
990
1030
|
}, i);
|
|
991
|
-
if (a instanceof Promise) throw new
|
|
1031
|
+
if (a instanceof Promise) throw new A();
|
|
992
1032
|
return a.issues.length ? {
|
|
993
1033
|
success: !1,
|
|
994
|
-
error: new (e ?? lt)(a.issues.map((e) =>
|
|
1034
|
+
error: new (e ?? lt)(a.issues.map((e) => L(e, i, j())))
|
|
995
1035
|
} : {
|
|
996
1036
|
success: !0,
|
|
997
1037
|
data: a.value
|
|
998
1038
|
};
|
|
999
|
-
})(
|
|
1039
|
+
})(R), pt = /* @__PURE__ */ ((e) => async (t, n, r) => {
|
|
1000
1040
|
let i = r ? Object.assign(r, { async: !0 }) : { async: !0 }, a = t._zod.run({
|
|
1001
1041
|
value: n,
|
|
1002
1042
|
issues: []
|
|
1003
1043
|
}, i);
|
|
1004
1044
|
return a instanceof Promise && (a = await a), a.issues.length ? {
|
|
1005
1045
|
success: !1,
|
|
1006
|
-
error: new e(a.issues.map((e) =>
|
|
1046
|
+
error: new e(a.issues.map((e) => L(e, i, j())))
|
|
1007
1047
|
} : {
|
|
1008
1048
|
success: !0,
|
|
1009
1049
|
data: a.value
|
|
1010
1050
|
};
|
|
1011
|
-
})(
|
|
1051
|
+
})(R), mt = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, ht = (e) => {
|
|
1012
1052
|
let t = e ? `[\\s\\S]{${e?.minimum ?? 0},${e?.maximum ?? ""}}` : "[\\s\\S]*";
|
|
1013
1053
|
return RegExp(`^${t}$`);
|
|
1014
|
-
},
|
|
1054
|
+
}, gt = /^-?\d+(?:\.\d+)?$/, _t = /^(?:true|false)$/i, z = /* @__PURE__ */ k("$ZodCheck", (e, t) => {
|
|
1015
1055
|
var n;
|
|
1016
1056
|
e._zod ??= {}, e._zod.def = t, (n = e._zod).onattach ?? (n.onattach = []);
|
|
1017
|
-
}),
|
|
1057
|
+
}), vt = /* @__PURE__ */ k("$ZodCheckLengthEquals", (e, t) => {
|
|
1018
1058
|
var n;
|
|
1019
1059
|
z.init(e, t), (n = e._zod.def).when ?? (n.when = (e) => {
|
|
1020
1060
|
let t = e.value;
|
|
@@ -1042,7 +1082,7 @@ var ct = (e, t) => {
|
|
|
1042
1082
|
continue: !t.abort
|
|
1043
1083
|
});
|
|
1044
1084
|
};
|
|
1045
|
-
}),
|
|
1085
|
+
}), yt = /* @__PURE__ */ k("$ZodCheckStringFormat", (e, t) => {
|
|
1046
1086
|
var n, r;
|
|
1047
1087
|
z.init(e, t), e._zod.onattach.push((e) => {
|
|
1048
1088
|
let n = e._zod.bag;
|
|
@@ -1058,8 +1098,8 @@ var ct = (e, t) => {
|
|
|
1058
1098
|
continue: !t.abort
|
|
1059
1099
|
});
|
|
1060
1100
|
}) : (r = e._zod).check ?? (r.check = () => {});
|
|
1061
|
-
}),
|
|
1062
|
-
|
|
1101
|
+
}), bt = /* @__PURE__ */ k("$ZodCheckRegex", (e, t) => {
|
|
1102
|
+
yt.init(e, t), e._zod.check = (n) => {
|
|
1063
1103
|
t.pattern.lastIndex = 0, !t.pattern.test(n.value) && n.issues.push({
|
|
1064
1104
|
origin: "string",
|
|
1065
1105
|
code: "invalid_format",
|
|
@@ -1070,13 +1110,13 @@ var ct = (e, t) => {
|
|
|
1070
1110
|
continue: !t.abort
|
|
1071
1111
|
});
|
|
1072
1112
|
};
|
|
1073
|
-
}),
|
|
1113
|
+
}), xt = {
|
|
1074
1114
|
major: 4,
|
|
1075
1115
|
minor: 3,
|
|
1076
1116
|
patch: 6
|
|
1077
|
-
},
|
|
1117
|
+
}, B = /* @__PURE__ */ k("$ZodType", (e, t) => {
|
|
1078
1118
|
var n;
|
|
1079
|
-
e ??= {}, e._zod.def = t, e._zod.bag = e._zod.bag || {}, e._zod.version =
|
|
1119
|
+
e ??= {}, e._zod.def = t, e._zod.bag = e._zod.bag || {}, e._zod.version = xt;
|
|
1080
1120
|
let r = [...e._zod.def.checks ?? []];
|
|
1081
1121
|
e._zod.traits.has("$ZodCheck") && r.unshift(e);
|
|
1082
1122
|
for (let t of r) for (let n of t._zod.onattach) n(e);
|
|
@@ -1085,27 +1125,27 @@ var ct = (e, t) => {
|
|
|
1085
1125
|
});
|
|
1086
1126
|
else {
|
|
1087
1127
|
let t = (e, t, n) => {
|
|
1088
|
-
let r =
|
|
1128
|
+
let r = F(e), i;
|
|
1089
1129
|
for (let a of t) {
|
|
1090
1130
|
if (a._zod.def.when) {
|
|
1091
1131
|
if (!a._zod.def.when(e)) continue;
|
|
1092
1132
|
} else if (r) continue;
|
|
1093
1133
|
let t = e.issues.length, o = a._zod.check(e);
|
|
1094
|
-
if (o instanceof Promise && n?.async === !1) throw new
|
|
1134
|
+
if (o instanceof Promise && n?.async === !1) throw new A();
|
|
1095
1135
|
if (i || o instanceof Promise) i = (i ?? Promise.resolve()).then(async () => {
|
|
1096
|
-
await o, e.issues.length !== t && (r ||=
|
|
1136
|
+
await o, e.issues.length !== t && (r ||= F(e, t));
|
|
1097
1137
|
});
|
|
1098
1138
|
else {
|
|
1099
1139
|
if (e.issues.length === t) continue;
|
|
1100
|
-
r ||=
|
|
1140
|
+
r ||= F(e, t);
|
|
1101
1141
|
}
|
|
1102
1142
|
}
|
|
1103
1143
|
return i ? i.then(() => e) : e;
|
|
1104
1144
|
}, n = (n, i, a) => {
|
|
1105
|
-
if (
|
|
1145
|
+
if (F(n)) return n.aborted = !0, n;
|
|
1106
1146
|
let o = t(i, r, a);
|
|
1107
1147
|
if (o instanceof Promise) {
|
|
1108
|
-
if (a.async === !1) throw new
|
|
1148
|
+
if (a.async === !1) throw new A();
|
|
1109
1149
|
return o.then((t) => e._zod.parse(t, a));
|
|
1110
1150
|
}
|
|
1111
1151
|
return e._zod.parse(o, a);
|
|
@@ -1124,26 +1164,26 @@ var ct = (e, t) => {
|
|
|
1124
1164
|
}
|
|
1125
1165
|
let o = e._zod.parse(i, a);
|
|
1126
1166
|
if (o instanceof Promise) {
|
|
1127
|
-
if (a.async === !1) throw new
|
|
1167
|
+
if (a.async === !1) throw new A();
|
|
1128
1168
|
return o.then((e) => t(e, r, a));
|
|
1129
1169
|
}
|
|
1130
1170
|
return t(o, r, a);
|
|
1131
1171
|
};
|
|
1132
1172
|
}
|
|
1133
|
-
|
|
1173
|
+
M(e, "~standard", () => ({
|
|
1134
1174
|
validate: (t) => {
|
|
1135
1175
|
try {
|
|
1136
|
-
let n =
|
|
1176
|
+
let n = ft(e, t);
|
|
1137
1177
|
return n.success ? { value: n.data } : { issues: n.error?.issues };
|
|
1138
1178
|
} catch {
|
|
1139
|
-
return
|
|
1179
|
+
return pt(e, t).then((e) => e.success ? { value: e.data } : { issues: e.error?.issues });
|
|
1140
1180
|
}
|
|
1141
1181
|
},
|
|
1142
1182
|
vendor: "zod",
|
|
1143
1183
|
version: 1
|
|
1144
1184
|
}));
|
|
1145
|
-
}),
|
|
1146
|
-
|
|
1185
|
+
}), St = /* @__PURE__ */ k("$ZodString", (e, t) => {
|
|
1186
|
+
B.init(e, t), e._zod.pattern = [...e?._zod.bag?.patterns ?? []].pop() ?? ht(e._zod.bag), e._zod.parse = (n, r) => {
|
|
1147
1187
|
if (t.coerce) try {
|
|
1148
1188
|
n.value = String(n.value);
|
|
1149
1189
|
} catch {}
|
|
@@ -1154,12 +1194,12 @@ var ct = (e, t) => {
|
|
|
1154
1194
|
inst: e
|
|
1155
1195
|
}), n;
|
|
1156
1196
|
};
|
|
1157
|
-
}),
|
|
1158
|
-
|
|
1159
|
-
}),
|
|
1160
|
-
t.pattern ??=
|
|
1161
|
-
}),
|
|
1162
|
-
|
|
1197
|
+
}), V = /* @__PURE__ */ k("$ZodStringFormat", (e, t) => {
|
|
1198
|
+
yt.init(e, t), St.init(e, t);
|
|
1199
|
+
}), Ct = /* @__PURE__ */ k("$ZodEmail", (e, t) => {
|
|
1200
|
+
t.pattern ??= mt, V.init(e, t);
|
|
1201
|
+
}), wt = /* @__PURE__ */ k("$ZodURL", (e, t) => {
|
|
1202
|
+
V.init(e, t), e._zod.check = (n) => {
|
|
1163
1203
|
try {
|
|
1164
1204
|
let r = n.value.trim(), i = new URL(r);
|
|
1165
1205
|
t.hostname && (t.hostname.lastIndex = 0, t.hostname.test(i.hostname) || n.issues.push({
|
|
@@ -1190,8 +1230,8 @@ var ct = (e, t) => {
|
|
|
1190
1230
|
});
|
|
1191
1231
|
}
|
|
1192
1232
|
};
|
|
1193
|
-
}),
|
|
1194
|
-
|
|
1233
|
+
}), Tt = /* @__PURE__ */ k("$ZodNumber", (e, t) => {
|
|
1234
|
+
B.init(e, t), e._zod.pattern = e._zod.bag.pattern ?? gt, e._zod.parse = (n, r) => {
|
|
1195
1235
|
if (t.coerce) try {
|
|
1196
1236
|
n.value = Number(n.value);
|
|
1197
1237
|
} catch {}
|
|
@@ -1206,8 +1246,8 @@ var ct = (e, t) => {
|
|
|
1206
1246
|
...a ? { received: a } : {}
|
|
1207
1247
|
}), n;
|
|
1208
1248
|
};
|
|
1209
|
-
}),
|
|
1210
|
-
|
|
1249
|
+
}), Et = /* @__PURE__ */ k("$ZodBoolean", (e, t) => {
|
|
1250
|
+
B.init(e, t), e._zod.pattern = _t, e._zod.parse = (n, r) => {
|
|
1211
1251
|
if (t.coerce) try {
|
|
1212
1252
|
n.value = !!n.value;
|
|
1213
1253
|
} catch {}
|
|
@@ -1219,14 +1259,14 @@ var ct = (e, t) => {
|
|
|
1219
1259
|
inst: e
|
|
1220
1260
|
}), n;
|
|
1221
1261
|
};
|
|
1222
|
-
}),
|
|
1223
|
-
|
|
1262
|
+
}), Dt = /* @__PURE__ */ k("$ZodUnknown", (e, t) => {
|
|
1263
|
+
B.init(e, t), e._zod.parse = (e) => e;
|
|
1224
1264
|
});
|
|
1225
|
-
function
|
|
1265
|
+
function Ot(e, t, n) {
|
|
1226
1266
|
e.issues.length && t.issues.push(...at(n, e.issues)), t.value[n] = e.value;
|
|
1227
1267
|
}
|
|
1228
|
-
var
|
|
1229
|
-
|
|
1268
|
+
var kt = /* @__PURE__ */ k("$ZodArray", (e, t) => {
|
|
1269
|
+
B.init(e, t), e._zod.parse = (n, r) => {
|
|
1230
1270
|
let i = n.value;
|
|
1231
1271
|
if (!Array.isArray(i)) return n.issues.push({
|
|
1232
1272
|
expected: "array",
|
|
@@ -1241,19 +1281,19 @@ var Dt = /* @__PURE__ */ O("$ZodArray", (e, t) => {
|
|
|
1241
1281
|
value: o,
|
|
1242
1282
|
issues: []
|
|
1243
1283
|
}, r);
|
|
1244
|
-
s instanceof Promise ? a.push(s.then((t) =>
|
|
1284
|
+
s instanceof Promise ? a.push(s.then((t) => Ot(t, n, e))) : Ot(s, n, e);
|
|
1245
1285
|
}
|
|
1246
1286
|
return a.length ? Promise.all(a).then(() => n) : n;
|
|
1247
1287
|
};
|
|
1248
1288
|
});
|
|
1249
|
-
function
|
|
1289
|
+
function H(e, t, n, r, i) {
|
|
1250
1290
|
if (e.issues.length) {
|
|
1251
1291
|
if (i && !(n in r)) return;
|
|
1252
1292
|
t.issues.push(...at(n, e.issues));
|
|
1253
1293
|
}
|
|
1254
1294
|
e.value === void 0 ? n in r && (t.value[n] = void 0) : t.value[n] = e.value;
|
|
1255
1295
|
}
|
|
1256
|
-
function
|
|
1296
|
+
function At(e) {
|
|
1257
1297
|
let t = Object.keys(e.shape);
|
|
1258
1298
|
for (let n of t) if (!e.shape?.[n]?._zod?.traits?.has("$ZodType")) throw Error(`Invalid element at key "${n}": expected a Zod schema`);
|
|
1259
1299
|
let n = it(e.shape);
|
|
@@ -1265,7 +1305,7 @@ function Ot(e) {
|
|
|
1265
1305
|
optionalKeys: new Set(n)
|
|
1266
1306
|
};
|
|
1267
1307
|
}
|
|
1268
|
-
function
|
|
1308
|
+
function jt(e, t, n, r, i, a) {
|
|
1269
1309
|
let o = [], s = i.keySet, c = i.catchall._zod, l = c.def.type, u = c.optout === "optional";
|
|
1270
1310
|
for (let i in t) {
|
|
1271
1311
|
if (s.has(i)) continue;
|
|
@@ -1277,7 +1317,7 @@ function kt(e, t, n, r, i, a) {
|
|
|
1277
1317
|
value: t[i],
|
|
1278
1318
|
issues: []
|
|
1279
1319
|
}, r);
|
|
1280
|
-
a instanceof Promise ? e.push(a.then((e) =>
|
|
1320
|
+
a instanceof Promise ? e.push(a.then((e) => H(e, n, i, t, u))) : H(a, n, i, t, u);
|
|
1281
1321
|
}
|
|
1282
1322
|
return o.length && n.issues.push({
|
|
1283
1323
|
code: "unrecognized_keys",
|
|
@@ -1286,16 +1326,16 @@ function kt(e, t, n, r, i, a) {
|
|
|
1286
1326
|
inst: a
|
|
1287
1327
|
}), e.length ? Promise.all(e).then(() => n) : n;
|
|
1288
1328
|
}
|
|
1289
|
-
var
|
|
1290
|
-
if (
|
|
1329
|
+
var Mt = /* @__PURE__ */ k("$ZodObject", (e, t) => {
|
|
1330
|
+
if (B.init(e, t), !Object.getOwnPropertyDescriptor(t, "shape")?.get) {
|
|
1291
1331
|
let e = t.shape;
|
|
1292
1332
|
Object.defineProperty(t, "shape", { get: () => {
|
|
1293
1333
|
let n = { ...e };
|
|
1294
1334
|
return Object.defineProperty(t, "shape", { value: n }), n;
|
|
1295
1335
|
} });
|
|
1296
1336
|
}
|
|
1297
|
-
let n = Je(() =>
|
|
1298
|
-
|
|
1337
|
+
let n = Je(() => At(t));
|
|
1338
|
+
M(e._zod, "propValues", () => {
|
|
1299
1339
|
let e = t.shape, n = {};
|
|
1300
1340
|
for (let t in e) {
|
|
1301
1341
|
let r = e[t]._zod;
|
|
@@ -1306,7 +1346,7 @@ var At = /* @__PURE__ */ O("$ZodObject", (e, t) => {
|
|
|
1306
1346
|
}
|
|
1307
1347
|
return n;
|
|
1308
1348
|
});
|
|
1309
|
-
let r =
|
|
1349
|
+
let r = N, i = t.catchall, a;
|
|
1310
1350
|
e._zod.parse = (t, o) => {
|
|
1311
1351
|
a ??= n.value;
|
|
1312
1352
|
let s = t.value;
|
|
@@ -1323,12 +1363,12 @@ var At = /* @__PURE__ */ O("$ZodObject", (e, t) => {
|
|
|
1323
1363
|
value: s[e],
|
|
1324
1364
|
issues: []
|
|
1325
1365
|
}, o);
|
|
1326
|
-
i instanceof Promise ? c.push(i.then((n) =>
|
|
1366
|
+
i instanceof Promise ? c.push(i.then((n) => H(n, t, e, s, r))) : H(i, t, e, s, r);
|
|
1327
1367
|
}
|
|
1328
|
-
return i ?
|
|
1368
|
+
return i ? jt(c, s, t, o, n.value, e) : c.length ? Promise.all(c).then(() => t) : t;
|
|
1329
1369
|
};
|
|
1330
|
-
}),
|
|
1331
|
-
|
|
1370
|
+
}), Nt = /* @__PURE__ */ k("$ZodEnum", (e, t) => {
|
|
1371
|
+
B.init(e, t);
|
|
1332
1372
|
let n = Ke(t.entries), r = new Set(n);
|
|
1333
1373
|
e._zod.values = r, e._zod.pattern = RegExp(`^(${n.filter((e) => tt.has(typeof e)).map((e) => typeof e == "string" ? nt(e) : e.toString()).join("|")})$`), e._zod.parse = (t, i) => {
|
|
1334
1374
|
let a = t.value;
|
|
@@ -1339,83 +1379,83 @@ var At = /* @__PURE__ */ O("$ZodObject", (e, t) => {
|
|
|
1339
1379
|
inst: e
|
|
1340
1380
|
}), t;
|
|
1341
1381
|
};
|
|
1342
|
-
}),
|
|
1343
|
-
|
|
1382
|
+
}), Pt = /* @__PURE__ */ k("$ZodTransform", (e, t) => {
|
|
1383
|
+
B.init(e, t), e._zod.parse = (n, r) => {
|
|
1344
1384
|
if (r.direction === "backward") throw new We(e.constructor.name);
|
|
1345
1385
|
let i = t.transform(n.value, n);
|
|
1346
1386
|
if (r.async) return (i instanceof Promise ? i : Promise.resolve(i)).then((e) => (n.value = e, n));
|
|
1347
|
-
if (i instanceof Promise) throw new
|
|
1387
|
+
if (i instanceof Promise) throw new A();
|
|
1348
1388
|
return n.value = i, n;
|
|
1349
1389
|
};
|
|
1350
1390
|
});
|
|
1351
|
-
function
|
|
1391
|
+
function Ft(e, t) {
|
|
1352
1392
|
return e.issues.length && t === void 0 ? {
|
|
1353
1393
|
issues: [],
|
|
1354
1394
|
value: void 0
|
|
1355
1395
|
} : e;
|
|
1356
1396
|
}
|
|
1357
|
-
var
|
|
1358
|
-
|
|
1397
|
+
var It = /* @__PURE__ */ k("$ZodOptional", (e, t) => {
|
|
1398
|
+
B.init(e, t), e._zod.optin = "optional", e._zod.optout = "optional", M(e._zod, "values", () => t.innerType._zod.values ? new Set([...t.innerType._zod.values, void 0]) : void 0), M(e._zod, "pattern", () => {
|
|
1359
1399
|
let e = t.innerType._zod.pattern;
|
|
1360
1400
|
return e ? RegExp(`^(${Xe(e.source)})?$`) : void 0;
|
|
1361
1401
|
}), e._zod.parse = (e, n) => {
|
|
1362
1402
|
if (t.innerType._zod.optin === "optional") {
|
|
1363
1403
|
let r = t.innerType._zod.run(e, n);
|
|
1364
|
-
return r instanceof Promise ? r.then((t) =>
|
|
1404
|
+
return r instanceof Promise ? r.then((t) => Ft(t, e.value)) : Ft(r, e.value);
|
|
1365
1405
|
}
|
|
1366
1406
|
return e.value === void 0 ? e : t.innerType._zod.run(e, n);
|
|
1367
1407
|
};
|
|
1368
|
-
}),
|
|
1369
|
-
|
|
1408
|
+
}), Lt = /* @__PURE__ */ k("$ZodDefault", (e, t) => {
|
|
1409
|
+
B.init(e, t), e._zod.optin = "optional", M(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (e, n) => {
|
|
1370
1410
|
if (n.direction === "backward") return t.innerType._zod.run(e, n);
|
|
1371
1411
|
if (e.value === void 0) return e.value = t.defaultValue, e;
|
|
1372
1412
|
let r = t.innerType._zod.run(e, n);
|
|
1373
|
-
return r instanceof Promise ? r.then((e) =>
|
|
1413
|
+
return r instanceof Promise ? r.then((e) => Rt(e, t)) : Rt(r, t);
|
|
1374
1414
|
};
|
|
1375
1415
|
});
|
|
1376
|
-
function
|
|
1416
|
+
function Rt(e, t) {
|
|
1377
1417
|
return e.value === void 0 && (e.value = t.defaultValue), e;
|
|
1378
1418
|
}
|
|
1379
|
-
var
|
|
1380
|
-
|
|
1381
|
-
}),
|
|
1382
|
-
|
|
1419
|
+
var zt = /* @__PURE__ */ k("$ZodPrefault", (e, t) => {
|
|
1420
|
+
B.init(e, t), e._zod.optin = "optional", M(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (e, n) => (n.direction === "backward" || e.value === void 0 && (e.value = t.defaultValue), t.innerType._zod.run(e, n));
|
|
1421
|
+
}), Bt = /* @__PURE__ */ k("$ZodCatch", (e, t) => {
|
|
1422
|
+
B.init(e, t), M(e._zod, "optin", () => t.innerType._zod.optin), M(e._zod, "optout", () => t.innerType._zod.optout), M(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (e, n) => {
|
|
1383
1423
|
if (n.direction === "backward") return t.innerType._zod.run(e, n);
|
|
1384
1424
|
let r = t.innerType._zod.run(e, n);
|
|
1385
1425
|
return r instanceof Promise ? r.then((r) => (e.value = r.value, r.issues.length && (e.value = t.catchValue({
|
|
1386
1426
|
...e,
|
|
1387
|
-
error: { issues: r.issues.map((e) =>
|
|
1427
|
+
error: { issues: r.issues.map((e) => L(e, n, j())) },
|
|
1388
1428
|
input: e.value
|
|
1389
1429
|
}), e.issues = []), e)) : (e.value = r.value, r.issues.length && (e.value = t.catchValue({
|
|
1390
1430
|
...e,
|
|
1391
|
-
error: { issues: r.issues.map((e) =>
|
|
1431
|
+
error: { issues: r.issues.map((e) => L(e, n, j())) },
|
|
1392
1432
|
input: e.value
|
|
1393
1433
|
}), e.issues = []), e);
|
|
1394
1434
|
};
|
|
1395
|
-
}),
|
|
1396
|
-
|
|
1435
|
+
}), Vt = /* @__PURE__ */ k("$ZodPipe", (e, t) => {
|
|
1436
|
+
B.init(e, t), M(e._zod, "values", () => t.in._zod.values), M(e._zod, "optin", () => t.in._zod.optin), M(e._zod, "optout", () => t.out._zod.optout), M(e._zod, "propValues", () => t.in._zod.propValues), e._zod.parse = (e, n) => {
|
|
1397
1437
|
if (n.direction === "backward") {
|
|
1398
1438
|
let r = t.out._zod.run(e, n);
|
|
1399
|
-
return r instanceof Promise ? r.then((e) =>
|
|
1439
|
+
return r instanceof Promise ? r.then((e) => U(e, t.in, n)) : U(r, t.in, n);
|
|
1400
1440
|
}
|
|
1401
1441
|
let r = t.in._zod.run(e, n);
|
|
1402
|
-
return r instanceof Promise ? r.then((e) =>
|
|
1442
|
+
return r instanceof Promise ? r.then((e) => U(e, t.out, n)) : U(r, t.out, n);
|
|
1403
1443
|
};
|
|
1404
1444
|
});
|
|
1405
|
-
function
|
|
1445
|
+
function U(e, t, n) {
|
|
1406
1446
|
return e.issues.length ? (e.aborted = !0, e) : t._zod.run({
|
|
1407
1447
|
value: e.value,
|
|
1408
1448
|
issues: e.issues
|
|
1409
1449
|
}, n);
|
|
1410
1450
|
}
|
|
1411
|
-
var
|
|
1412
|
-
z.init(e, t),
|
|
1451
|
+
var Ht = /* @__PURE__ */ k("$ZodCustom", (e, t) => {
|
|
1452
|
+
z.init(e, t), B.init(e, t), e._zod.parse = (e, t) => e, e._zod.check = (n) => {
|
|
1413
1453
|
let r = n.value, i = t.fn(r);
|
|
1414
|
-
if (i instanceof Promise) return i.then((t) =>
|
|
1415
|
-
|
|
1454
|
+
if (i instanceof Promise) return i.then((t) => Ut(t, n, r, e));
|
|
1455
|
+
Ut(i, n, r, e);
|
|
1416
1456
|
};
|
|
1417
1457
|
});
|
|
1418
|
-
function
|
|
1458
|
+
function Ut(e, t, n, r) {
|
|
1419
1459
|
if (!e) {
|
|
1420
1460
|
let e = {
|
|
1421
1461
|
code: "custom",
|
|
@@ -1429,7 +1469,7 @@ function Vt(e, t, n, r) {
|
|
|
1429
1469
|
}
|
|
1430
1470
|
//#endregion
|
|
1431
1471
|
//#region ../../node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/registries.js
|
|
1432
|
-
var
|
|
1472
|
+
var Wt, Gt = class {
|
|
1433
1473
|
constructor() {
|
|
1434
1474
|
this._map = /* @__PURE__ */ new WeakMap(), this._idmap = /* @__PURE__ */ new Map();
|
|
1435
1475
|
}
|
|
@@ -1461,89 +1501,89 @@ var Ht, Ut = class {
|
|
|
1461
1501
|
return this._map.has(e);
|
|
1462
1502
|
}
|
|
1463
1503
|
};
|
|
1464
|
-
function
|
|
1465
|
-
return new
|
|
1504
|
+
function Kt() {
|
|
1505
|
+
return new Gt();
|
|
1466
1506
|
}
|
|
1467
|
-
(
|
|
1507
|
+
(Wt = globalThis).__zod_globalRegistry ?? (Wt.__zod_globalRegistry = Kt()), globalThis.__zod_globalRegistry;
|
|
1468
1508
|
//#endregion
|
|
1469
1509
|
//#region ../../node_modules/.bun/zod@4.3.6/node_modules/zod/v4/core/api.js
|
|
1470
1510
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1471
|
-
function
|
|
1511
|
+
function qt(e, t) {
|
|
1472
1512
|
return new e({
|
|
1473
1513
|
type: "string",
|
|
1474
|
-
...
|
|
1514
|
+
...P(t)
|
|
1475
1515
|
});
|
|
1476
1516
|
}
|
|
1477
1517
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1478
|
-
function
|
|
1518
|
+
function Jt(e, t) {
|
|
1479
1519
|
return new e({
|
|
1480
1520
|
type: "string",
|
|
1481
1521
|
format: "email",
|
|
1482
1522
|
check: "string_format",
|
|
1483
1523
|
abort: !1,
|
|
1484
|
-
...
|
|
1524
|
+
...P(t)
|
|
1485
1525
|
});
|
|
1486
1526
|
}
|
|
1487
1527
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1488
|
-
function
|
|
1528
|
+
function Yt(e, t) {
|
|
1489
1529
|
return new e({
|
|
1490
1530
|
type: "string",
|
|
1491
1531
|
format: "url",
|
|
1492
1532
|
check: "string_format",
|
|
1493
1533
|
abort: !1,
|
|
1494
|
-
...
|
|
1534
|
+
...P(t)
|
|
1495
1535
|
});
|
|
1496
1536
|
}
|
|
1497
1537
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1498
|
-
function
|
|
1538
|
+
function Xt(e, t) {
|
|
1499
1539
|
return new e({
|
|
1500
1540
|
type: "number",
|
|
1501
1541
|
checks: [],
|
|
1502
|
-
...
|
|
1542
|
+
...P(t)
|
|
1503
1543
|
});
|
|
1504
1544
|
}
|
|
1505
1545
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1506
|
-
function
|
|
1546
|
+
function Zt(e, t) {
|
|
1507
1547
|
return new e({
|
|
1508
1548
|
type: "boolean",
|
|
1509
|
-
...
|
|
1549
|
+
...P(t)
|
|
1510
1550
|
});
|
|
1511
1551
|
}
|
|
1512
1552
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1513
|
-
function
|
|
1553
|
+
function Qt(e) {
|
|
1514
1554
|
return new e({ type: "unknown" });
|
|
1515
1555
|
}
|
|
1516
1556
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1517
|
-
function
|
|
1518
|
-
return new
|
|
1557
|
+
function $t(e, t) {
|
|
1558
|
+
return new vt({
|
|
1519
1559
|
check: "length_equals",
|
|
1520
|
-
...
|
|
1560
|
+
...P(t),
|
|
1521
1561
|
length: e
|
|
1522
1562
|
});
|
|
1523
1563
|
}
|
|
1524
1564
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1525
|
-
function
|
|
1526
|
-
return new
|
|
1565
|
+
function en(e, t) {
|
|
1566
|
+
return new bt({
|
|
1527
1567
|
check: "string_format",
|
|
1528
1568
|
format: "regex",
|
|
1529
|
-
...
|
|
1569
|
+
...P(t),
|
|
1530
1570
|
pattern: e
|
|
1531
1571
|
});
|
|
1532
1572
|
}
|
|
1533
1573
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1534
|
-
function
|
|
1574
|
+
function tn(e, t, n) {
|
|
1535
1575
|
return new e({
|
|
1536
1576
|
type: "custom",
|
|
1537
1577
|
check: "custom",
|
|
1538
1578
|
fn: t,
|
|
1539
|
-
...
|
|
1579
|
+
...P(n)
|
|
1540
1580
|
});
|
|
1541
1581
|
}
|
|
1542
1582
|
//#endregion
|
|
1543
1583
|
//#region ../../node_modules/.bun/zod@4.3.6/node_modules/zod/v4/mini/schemas.js
|
|
1544
|
-
var
|
|
1584
|
+
var W = /* @__PURE__ */ k("ZodMiniType", (e, t) => {
|
|
1545
1585
|
if (!e._zod) throw Error("Uninitialized schema in ZodMiniType.");
|
|
1546
|
-
|
|
1586
|
+
B.init(e, t), e.def = t, e.type = t.type, e.parse = (t, n) => ut(e, t, n, { callee: e.parse }), e.safeParse = (t, n) => ft(e, t, n), e.parseAsync = async (t, n) => dt(e, t, n, { callee: e.parseAsync }), e.safeParseAsync = async (t, n) => pt(e, t, n), e.check = (...n) => e.clone({
|
|
1547
1587
|
...t,
|
|
1548
1588
|
checks: [...t.checks ?? [], ...n.map((e) => typeof e == "function" ? { _zod: {
|
|
1549
1589
|
check: e,
|
|
@@ -1551,118 +1591,118 @@ var G = /* @__PURE__ */ O("ZodMiniType", (e, t) => {
|
|
|
1551
1591
|
onattach: []
|
|
1552
1592
|
} } : e)]
|
|
1553
1593
|
}, { parent: !0 }), e.with = e.check, e.clone = (t, n) => rt(e, t, n), e.brand = () => e, e.register = ((t, n) => (t.add(e, n), e)), e.apply = (t) => t(e);
|
|
1554
|
-
}),
|
|
1555
|
-
|
|
1594
|
+
}), nn = /* @__PURE__ */ k("ZodMiniString", (e, t) => {
|
|
1595
|
+
St.init(e, t), W.init(e, t);
|
|
1556
1596
|
});
|
|
1557
1597
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1558
|
-
function
|
|
1559
|
-
return /* @__PURE__ */
|
|
1598
|
+
function G(e) {
|
|
1599
|
+
return /* @__PURE__ */ qt(nn, e);
|
|
1560
1600
|
}
|
|
1561
|
-
var
|
|
1562
|
-
|
|
1563
|
-
}),
|
|
1564
|
-
|
|
1601
|
+
var rn = /* @__PURE__ */ k("ZodMiniStringFormat", (e, t) => {
|
|
1602
|
+
V.init(e, t), nn.init(e, t);
|
|
1603
|
+
}), an = /* @__PURE__ */ k("ZodMiniEmail", (e, t) => {
|
|
1604
|
+
Ct.init(e, t), rn.init(e, t);
|
|
1565
1605
|
});
|
|
1566
1606
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1567
|
-
function
|
|
1568
|
-
return /* @__PURE__ */
|
|
1607
|
+
function on(e) {
|
|
1608
|
+
return /* @__PURE__ */ Jt(an, e);
|
|
1569
1609
|
}
|
|
1570
|
-
var
|
|
1571
|
-
|
|
1610
|
+
var sn = /* @__PURE__ */ k("ZodMiniURL", (e, t) => {
|
|
1611
|
+
wt.init(e, t), rn.init(e, t);
|
|
1572
1612
|
});
|
|
1573
1613
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1574
|
-
function
|
|
1575
|
-
return /* @__PURE__ */
|
|
1614
|
+
function K(e) {
|
|
1615
|
+
return /* @__PURE__ */ Yt(sn, e);
|
|
1576
1616
|
}
|
|
1577
|
-
var
|
|
1578
|
-
|
|
1617
|
+
var cn = /* @__PURE__ */ k("ZodMiniNumber", (e, t) => {
|
|
1618
|
+
Tt.init(e, t), W.init(e, t);
|
|
1579
1619
|
});
|
|
1580
1620
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1581
|
-
function
|
|
1582
|
-
return /* @__PURE__ */
|
|
1621
|
+
function ln(e) {
|
|
1622
|
+
return /* @__PURE__ */ Xt(cn, e);
|
|
1583
1623
|
}
|
|
1584
|
-
var
|
|
1585
|
-
|
|
1624
|
+
var un = /* @__PURE__ */ k("ZodMiniBoolean", (e, t) => {
|
|
1625
|
+
Et.init(e, t), W.init(e, t);
|
|
1586
1626
|
});
|
|
1587
1627
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1588
|
-
function
|
|
1589
|
-
return /* @__PURE__ */
|
|
1628
|
+
function q(e) {
|
|
1629
|
+
return /* @__PURE__ */ Zt(un, e);
|
|
1590
1630
|
}
|
|
1591
|
-
var
|
|
1592
|
-
|
|
1631
|
+
var dn = /* @__PURE__ */ k("ZodMiniUnknown", (e, t) => {
|
|
1632
|
+
Dt.init(e, t), W.init(e, t);
|
|
1593
1633
|
});
|
|
1594
1634
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1595
|
-
function
|
|
1596
|
-
return /* @__PURE__ */
|
|
1635
|
+
function fn() {
|
|
1636
|
+
return /* @__PURE__ */ Qt(dn);
|
|
1597
1637
|
}
|
|
1598
|
-
var
|
|
1599
|
-
|
|
1638
|
+
var pn = /* @__PURE__ */ k("ZodMiniArray", (e, t) => {
|
|
1639
|
+
kt.init(e, t), W.init(e, t);
|
|
1600
1640
|
});
|
|
1601
1641
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1602
1642
|
function J(e, t) {
|
|
1603
|
-
return new
|
|
1643
|
+
return new pn({
|
|
1604
1644
|
type: "array",
|
|
1605
1645
|
element: e,
|
|
1606
|
-
...
|
|
1646
|
+
...P(t)
|
|
1607
1647
|
});
|
|
1608
1648
|
}
|
|
1609
|
-
var
|
|
1610
|
-
|
|
1649
|
+
var mn = /* @__PURE__ */ k("ZodMiniObject", (e, t) => {
|
|
1650
|
+
Mt.init(e, t), W.init(e, t), M(e, "shape", () => t.shape);
|
|
1611
1651
|
});
|
|
1612
1652
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1613
1653
|
function Y(e, t) {
|
|
1614
|
-
return new
|
|
1654
|
+
return new mn({
|
|
1615
1655
|
type: "object",
|
|
1616
1656
|
shape: e ?? {},
|
|
1617
|
-
...
|
|
1657
|
+
...P(t)
|
|
1618
1658
|
});
|
|
1619
1659
|
}
|
|
1620
1660
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1621
1661
|
function X(e, t) {
|
|
1622
|
-
return new
|
|
1662
|
+
return new mn({
|
|
1623
1663
|
type: "object",
|
|
1624
1664
|
shape: e,
|
|
1625
|
-
catchall: /* @__PURE__ */
|
|
1626
|
-
...
|
|
1665
|
+
catchall: /* @__PURE__ */ fn(),
|
|
1666
|
+
...P(t)
|
|
1627
1667
|
});
|
|
1628
1668
|
}
|
|
1629
|
-
var
|
|
1630
|
-
|
|
1669
|
+
var hn = /* @__PURE__ */ k("ZodMiniEnum", (e, t) => {
|
|
1670
|
+
Nt.init(e, t), W.init(e, t), e.options = Object.values(t.entries);
|
|
1631
1671
|
});
|
|
1632
1672
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1633
|
-
function
|
|
1634
|
-
return new
|
|
1673
|
+
function gn(e, t) {
|
|
1674
|
+
return new hn({
|
|
1635
1675
|
type: "enum",
|
|
1636
1676
|
entries: Array.isArray(e) ? Object.fromEntries(e.map((e) => [e, e])) : e,
|
|
1637
|
-
...
|
|
1677
|
+
...P(t)
|
|
1638
1678
|
});
|
|
1639
1679
|
}
|
|
1640
|
-
var
|
|
1641
|
-
|
|
1680
|
+
var _n = /* @__PURE__ */ k("ZodMiniTransform", (e, t) => {
|
|
1681
|
+
Pt.init(e, t), W.init(e, t);
|
|
1642
1682
|
});
|
|
1643
1683
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1644
|
-
function
|
|
1645
|
-
return new
|
|
1684
|
+
function vn(e) {
|
|
1685
|
+
return new _n({
|
|
1646
1686
|
type: "transform",
|
|
1647
1687
|
transform: e
|
|
1648
1688
|
});
|
|
1649
1689
|
}
|
|
1650
|
-
var
|
|
1651
|
-
|
|
1690
|
+
var yn = /* @__PURE__ */ k("ZodMiniOptional", (e, t) => {
|
|
1691
|
+
It.init(e, t), W.init(e, t);
|
|
1652
1692
|
});
|
|
1653
1693
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1654
1694
|
function Z(e) {
|
|
1655
|
-
return new
|
|
1695
|
+
return new yn({
|
|
1656
1696
|
type: "optional",
|
|
1657
1697
|
innerType: e
|
|
1658
1698
|
});
|
|
1659
1699
|
}
|
|
1660
|
-
var
|
|
1661
|
-
|
|
1700
|
+
var bn = /* @__PURE__ */ k("ZodMiniDefault", (e, t) => {
|
|
1701
|
+
Lt.init(e, t), W.init(e, t);
|
|
1662
1702
|
});
|
|
1663
1703
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1664
1704
|
function Q(e, t) {
|
|
1665
|
-
return new
|
|
1705
|
+
return new bn({
|
|
1666
1706
|
type: "default",
|
|
1667
1707
|
innerType: e,
|
|
1668
1708
|
get defaultValue() {
|
|
@@ -1670,12 +1710,12 @@ function Q(e, t) {
|
|
|
1670
1710
|
}
|
|
1671
1711
|
});
|
|
1672
1712
|
}
|
|
1673
|
-
var
|
|
1674
|
-
|
|
1713
|
+
var xn = /* @__PURE__ */ k("ZodMiniPrefault", (e, t) => {
|
|
1714
|
+
zt.init(e, t), W.init(e, t);
|
|
1675
1715
|
});
|
|
1676
1716
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1677
1717
|
function $(e, t) {
|
|
1678
|
-
return new
|
|
1718
|
+
return new xn({
|
|
1679
1719
|
type: "prefault",
|
|
1680
1720
|
innerType: e,
|
|
1681
1721
|
get defaultValue() {
|
|
@@ -1683,52 +1723,52 @@ function $(e, t) {
|
|
|
1683
1723
|
}
|
|
1684
1724
|
});
|
|
1685
1725
|
}
|
|
1686
|
-
var
|
|
1687
|
-
|
|
1726
|
+
var Sn = /* @__PURE__ */ k("ZodMiniCatch", (e, t) => {
|
|
1727
|
+
Bt.init(e, t), W.init(e, t);
|
|
1688
1728
|
});
|
|
1689
1729
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1690
|
-
function
|
|
1691
|
-
return new
|
|
1730
|
+
function Cn(e, t) {
|
|
1731
|
+
return new Sn({
|
|
1692
1732
|
type: "catch",
|
|
1693
1733
|
innerType: e,
|
|
1694
1734
|
catchValue: typeof t == "function" ? t : () => t
|
|
1695
1735
|
});
|
|
1696
1736
|
}
|
|
1697
|
-
var
|
|
1698
|
-
|
|
1737
|
+
var wn = /* @__PURE__ */ k("ZodMiniPipe", (e, t) => {
|
|
1738
|
+
Vt.init(e, t), W.init(e, t);
|
|
1699
1739
|
});
|
|
1700
1740
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1701
|
-
function
|
|
1702
|
-
return new
|
|
1741
|
+
function Tn(e, t) {
|
|
1742
|
+
return new wn({
|
|
1703
1743
|
type: "pipe",
|
|
1704
1744
|
in: e,
|
|
1705
1745
|
out: t
|
|
1706
1746
|
});
|
|
1707
1747
|
}
|
|
1708
|
-
var
|
|
1709
|
-
|
|
1748
|
+
var En = /* @__PURE__ */ k("ZodMiniCustom", (e, t) => {
|
|
1749
|
+
Ht.init(e, t), W.init(e, t);
|
|
1710
1750
|
});
|
|
1711
1751
|
/* @__NO_SIDE_EFFECTS__ */
|
|
1712
|
-
function
|
|
1713
|
-
return /* @__PURE__ */
|
|
1752
|
+
function Dn(e, t = {}) {
|
|
1753
|
+
return /* @__PURE__ */ tn(En, e, t);
|
|
1714
1754
|
}
|
|
1715
1755
|
//#endregion
|
|
1716
1756
|
//#region src/schema.ts
|
|
1717
|
-
var
|
|
1757
|
+
var On = /* @__PURE__ */ Y({
|
|
1718
1758
|
ui: /* @__PURE__ */ $(/* @__PURE__ */ Y({
|
|
1719
|
-
primary: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1720
|
-
headerFrom: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1721
|
-
headerTo: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1722
|
-
footerFrom: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1723
|
-
footerTo: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1724
|
-
backgroundTilesSeed: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1725
|
-
showLogos: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1759
|
+
primary: /* @__PURE__ */ Q(/* @__PURE__ */ G(), "#255b8f"),
|
|
1760
|
+
headerFrom: /* @__PURE__ */ Q(/* @__PURE__ */ G(), "#ccc074"),
|
|
1761
|
+
headerTo: /* @__PURE__ */ Q(/* @__PURE__ */ G(), "#4971af"),
|
|
1762
|
+
footerFrom: /* @__PURE__ */ Q(/* @__PURE__ */ G(), "#463932"),
|
|
1763
|
+
footerTo: /* @__PURE__ */ Q(/* @__PURE__ */ G(), "#7fbdbc"),
|
|
1764
|
+
backgroundTilesSeed: /* @__PURE__ */ Q(/* @__PURE__ */ ln(), 1),
|
|
1765
|
+
showLogos: /* @__PURE__ */ Q(/* @__PURE__ */ q(), !0),
|
|
1726
1766
|
cta: /* @__PURE__ */ Z(/* @__PURE__ */ Y({
|
|
1727
|
-
text: /* @__PURE__ */
|
|
1728
|
-
url: /* @__PURE__ */
|
|
1729
|
-
icon: /* @__PURE__ */ Q(/* @__PURE__ */ Z((/* @__PURE__ */
|
|
1767
|
+
text: /* @__PURE__ */ G(),
|
|
1768
|
+
url: /* @__PURE__ */ G(),
|
|
1769
|
+
icon: /* @__PURE__ */ Q(/* @__PURE__ */ Z((/* @__PURE__ */ G()).check(/* @__PURE__ */ en(/^[a-z]+:[a-z-]+$/))), "tabler:message-circle")
|
|
1730
1770
|
})),
|
|
1731
|
-
links: /* @__PURE__ */ Q(/* @__PURE__ */ J(/* @__PURE__ */
|
|
1771
|
+
links: /* @__PURE__ */ Q(/* @__PURE__ */ J(/* @__PURE__ */ G()), [
|
|
1732
1772
|
"phone",
|
|
1733
1773
|
"email",
|
|
1734
1774
|
"location",
|
|
@@ -1736,96 +1776,96 @@ var Dn = /* @__PURE__ */ Y({
|
|
|
1736
1776
|
])
|
|
1737
1777
|
}), {}),
|
|
1738
1778
|
seo: /* @__PURE__ */ $(/* @__PURE__ */ Y({
|
|
1739
|
-
title: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1740
|
-
description: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1741
|
-
canonical: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1742
|
-
favicon: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1743
|
-
ogImage: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1744
|
-
twitterImage: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1745
|
-
firstName: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1746
|
-
lastName: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1747
|
-
robots: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */
|
|
1779
|
+
title: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1780
|
+
description: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1781
|
+
canonical: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1782
|
+
favicon: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1783
|
+
ogImage: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1784
|
+
twitterImage: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1785
|
+
firstName: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1786
|
+
lastName: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1787
|
+
robots: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ G()), "index, follow")
|
|
1748
1788
|
}), {}),
|
|
1749
|
-
modest: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1750
|
-
}),
|
|
1751
|
-
name: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1752
|
-
company: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1753
|
-
location: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1754
|
-
description: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1755
|
-
position: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1756
|
-
url: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1757
|
-
website: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1758
|
-
startDate: /* @__PURE__ */
|
|
1759
|
-
endDate: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1760
|
-
summary: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1761
|
-
highlights: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */
|
|
1762
|
-
logo: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1763
|
-
})).check(/* @__PURE__ */
|
|
1789
|
+
modest: /* @__PURE__ */ Q(/* @__PURE__ */ q(), !1)
|
|
1790
|
+
}), kn = /* @__PURE__ */ Tn((/* @__PURE__ */ X({
|
|
1791
|
+
name: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1792
|
+
company: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1793
|
+
location: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1794
|
+
description: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1795
|
+
position: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1796
|
+
url: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1797
|
+
website: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1798
|
+
startDate: /* @__PURE__ */ G(),
|
|
1799
|
+
endDate: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1800
|
+
summary: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1801
|
+
highlights: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ G())),
|
|
1802
|
+
logo: /* @__PURE__ */ Z(/* @__PURE__ */ K())
|
|
1803
|
+
})).check(/* @__PURE__ */ Dn(({ name: e, company: t }) => !!(e || t), {
|
|
1764
1804
|
path: ["name"],
|
|
1765
1805
|
message: "Either 'name' or 'company' must be provided."
|
|
1766
|
-
})), /* @__PURE__ */
|
|
1806
|
+
})), /* @__PURE__ */ vn(({ company: e, name: t, url: n, website: r, ...i }) => ({
|
|
1767
1807
|
...i,
|
|
1768
1808
|
name: t ?? e,
|
|
1769
1809
|
...n || r ? { url: n ?? r } : {}
|
|
1770
|
-
}))),
|
|
1771
|
-
network: /* @__PURE__ */
|
|
1772
|
-
username: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1773
|
-
url: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1774
|
-
}),
|
|
1775
|
-
address: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1776
|
-
postalCode: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1777
|
-
city: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1778
|
-
countryCode: /* @__PURE__ */ Z((/* @__PURE__ */
|
|
1779
|
-
region: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1780
|
-
}),
|
|
1810
|
+
}))), An = /* @__PURE__ */ X({
|
|
1811
|
+
network: /* @__PURE__ */ G(),
|
|
1812
|
+
username: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1813
|
+
url: /* @__PURE__ */ Z(/* @__PURE__ */ K())
|
|
1814
|
+
}), jn = /* @__PURE__ */ X({
|
|
1815
|
+
address: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1816
|
+
postalCode: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1817
|
+
city: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1818
|
+
countryCode: /* @__PURE__ */ Z((/* @__PURE__ */ G()).check(/* @__PURE__ */ $t(2))),
|
|
1819
|
+
region: /* @__PURE__ */ Z(/* @__PURE__ */ G())
|
|
1820
|
+
}), Mn = /* @__PURE__ */ Y({
|
|
1781
1821
|
meta: /* @__PURE__ */ $(/* @__PURE__ */ X({
|
|
1782
|
-
lang: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1783
|
-
lastModified: /* @__PURE__ */ Q(/* @__PURE__ */
|
|
1784
|
-
themeConfig: /* @__PURE__ */ $(
|
|
1822
|
+
lang: /* @__PURE__ */ Q(/* @__PURE__ */ Cn(/* @__PURE__ */ gn(["en", "fr"]), "en"), "en"),
|
|
1823
|
+
lastModified: /* @__PURE__ */ Q(/* @__PURE__ */ G(), () => (/* @__PURE__ */ new Date()).toISOString()),
|
|
1824
|
+
themeConfig: /* @__PURE__ */ $(On, {})
|
|
1785
1825
|
}), {}),
|
|
1786
|
-
work: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(
|
|
1826
|
+
work: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(kn)), []),
|
|
1787
1827
|
basics: /* @__PURE__ */ X({
|
|
1788
|
-
name: /* @__PURE__ */
|
|
1789
|
-
label: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1790
|
-
image: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1791
|
-
email: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1792
|
-
phone: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1793
|
-
birthDate: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1794
|
-
url: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1795
|
-
summary: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1796
|
-
location: /* @__PURE__ */ Z(
|
|
1797
|
-
profiles: /* @__PURE__ */ Z(/* @__PURE__ */ J(
|
|
1828
|
+
name: /* @__PURE__ */ G(),
|
|
1829
|
+
label: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1830
|
+
image: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1831
|
+
email: /* @__PURE__ */ Z(/* @__PURE__ */ on()),
|
|
1832
|
+
phone: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1833
|
+
birthDate: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1834
|
+
url: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1835
|
+
summary: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1836
|
+
location: /* @__PURE__ */ Z(jn),
|
|
1837
|
+
profiles: /* @__PURE__ */ Z(/* @__PURE__ */ J(An))
|
|
1798
1838
|
}),
|
|
1799
1839
|
education: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ Y({
|
|
1800
|
-
institution: /* @__PURE__ */
|
|
1801
|
-
url: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1802
|
-
area: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1803
|
-
studyType: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1804
|
-
startDate: /* @__PURE__ */
|
|
1805
|
-
endDate: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1806
|
-
score: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1807
|
-
courses: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */
|
|
1840
|
+
institution: /* @__PURE__ */ G(),
|
|
1841
|
+
url: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1842
|
+
area: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1843
|
+
studyType: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1844
|
+
startDate: /* @__PURE__ */ G(),
|
|
1845
|
+
endDate: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1846
|
+
score: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1847
|
+
courses: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ G()))
|
|
1808
1848
|
}))), []),
|
|
1809
1849
|
certificates: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ Y({
|
|
1810
|
-
name: /* @__PURE__ */
|
|
1811
|
-
date: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1812
|
-
url: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1813
|
-
issuer: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1850
|
+
name: /* @__PURE__ */ G(),
|
|
1851
|
+
date: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1852
|
+
url: /* @__PURE__ */ Z(/* @__PURE__ */ K()),
|
|
1853
|
+
issuer: /* @__PURE__ */ Z(/* @__PURE__ */ G())
|
|
1814
1854
|
}))), []),
|
|
1815
1855
|
skills: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ Y({
|
|
1816
|
-
name: /* @__PURE__ */
|
|
1817
|
-
level: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1818
|
-
keywords: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */
|
|
1856
|
+
name: /* @__PURE__ */ G(),
|
|
1857
|
+
level: /* @__PURE__ */ Z(/* @__PURE__ */ G()),
|
|
1858
|
+
keywords: /* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ G()))
|
|
1819
1859
|
}))), []),
|
|
1820
1860
|
languages: /* @__PURE__ */ Q(/* @__PURE__ */ Z(/* @__PURE__ */ J(/* @__PURE__ */ X({
|
|
1821
|
-
language: /* @__PURE__ */
|
|
1822
|
-
fluency: /* @__PURE__ */ Z(/* @__PURE__ */
|
|
1861
|
+
language: /* @__PURE__ */ G(),
|
|
1862
|
+
fluency: /* @__PURE__ */ Z(/* @__PURE__ */ G())
|
|
1823
1863
|
}))), [])
|
|
1824
1864
|
});
|
|
1825
1865
|
//#endregion
|
|
1826
1866
|
//#region src/components/WorkExperience.tsx
|
|
1827
|
-
function
|
|
1828
|
-
return !e || e.length === 0 ? null : /* @__PURE__ */ _(
|
|
1867
|
+
function Nn({ works: e, showLogos: t }) {
|
|
1868
|
+
return !e || e.length === 0 ? null : /* @__PURE__ */ _(E, {
|
|
1829
1869
|
name: S("work_experience"),
|
|
1830
1870
|
children: /* @__PURE__ */ _("ol", {
|
|
1831
1871
|
className: "timeline",
|
|
@@ -1850,52 +1890,40 @@ function Mn({ works: e, showLogos: t }) {
|
|
|
1850
1890
|
className: "flex h-12 w-12 items-center justify-center rounded-lg bg-gray-100 font-bold text-gray-400 uppercase select-none dark:bg-slate-800 dark:text-slate-500",
|
|
1851
1891
|
children: e.name?.charAt(0)
|
|
1852
1892
|
})
|
|
1853
|
-
}), /* @__PURE__ */
|
|
1893
|
+
}), /* @__PURE__ */ _("div", {
|
|
1854
1894
|
className: "min-w-0 flex-1",
|
|
1855
|
-
children:
|
|
1856
|
-
className: "
|
|
1857
|
-
children: [/* @__PURE__ */
|
|
1858
|
-
className: "
|
|
1859
|
-
children:
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1895
|
+
children: /* @__PURE__ */ v("div", {
|
|
1896
|
+
className: "grid grid-cols-1 gap-x-4 md:grid-cols-[1fr_auto]",
|
|
1897
|
+
children: [/* @__PURE__ */ v("div", {
|
|
1898
|
+
className: "min-w-0",
|
|
1899
|
+
children: [/* @__PURE__ */ _("header", { children: /* @__PURE__ */ _("h3", {
|
|
1900
|
+
className: "truncate text-xl font-bold tracking-tight text-gray-900 md:whitespace-normal dark:text-white",
|
|
1901
|
+
children: e.position
|
|
1902
|
+
}) }), /* @__PURE__ */ v("div", {
|
|
1903
|
+
className: "mt-1 text-gray-600 dark:text-slate-300",
|
|
1904
|
+
children: [e.url ? /* @__PURE__ */ _("a", {
|
|
1905
|
+
href: e.url,
|
|
1906
|
+
target: "_blank",
|
|
1907
|
+
rel: "noopener noreferrer",
|
|
1908
|
+
translate: "no",
|
|
1909
|
+
className: "hover:text-primary font-medium text-gray-700 underline-offset-4 transition-colors hover:underline dark:text-slate-200",
|
|
1910
|
+
children: e.name
|
|
1871
1911
|
}) : /* @__PURE__ */ _("span", {
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1912
|
+
translate: "no",
|
|
1913
|
+
className: "font-medium text-gray-700 dark:text-slate-200",
|
|
1914
|
+
children: e.name
|
|
1915
|
+
}), e.description && /* @__PURE__ */ v("span", {
|
|
1916
|
+
className: "ml-2 text-sm text-gray-500",
|
|
1917
|
+
children: ["- ", e.description]
|
|
1918
|
+
})]
|
|
1919
|
+
})]
|
|
1920
|
+
}), /* @__PURE__ */ _(T, {
|
|
1921
|
+
startDate: e.startDate,
|
|
1922
|
+
endDate: e.endDate,
|
|
1923
|
+
format: "month",
|
|
1924
|
+
className: "mt-1 flex shrink-0 text-sm text-gray-500 capitalize md:mt-1.5 md:items-start md:text-right dark:text-slate-400"
|
|
1876
1925
|
})]
|
|
1877
|
-
})
|
|
1878
|
-
className: "mt-1 text-gray-600 dark:text-slate-300",
|
|
1879
|
-
children: [e.url ? /* @__PURE__ */ _("a", {
|
|
1880
|
-
href: e.url,
|
|
1881
|
-
target: "_blank",
|
|
1882
|
-
rel: "noopener noreferrer",
|
|
1883
|
-
translate: "no",
|
|
1884
|
-
className: "hover:text-primary font-medium text-gray-700 underline-offset-4 transition-colors hover:underline dark:text-slate-200",
|
|
1885
|
-
children: e.name
|
|
1886
|
-
}) : /* @__PURE__ */ _("span", {
|
|
1887
|
-
translate: "no",
|
|
1888
|
-
className: "font-medium text-gray-700 dark:text-slate-200",
|
|
1889
|
-
children: e.name
|
|
1890
|
-
}), e.description && /* @__PURE__ */ v("span", {
|
|
1891
|
-
className: "ml-2 text-sm text-gray-400",
|
|
1892
|
-
children: [/* @__PURE__ */ _("span", {
|
|
1893
|
-
className: "mr-1 opacity-50",
|
|
1894
|
-
"aria-hidden": "true",
|
|
1895
|
-
children: ","
|
|
1896
|
-
}), e.description]
|
|
1897
|
-
})]
|
|
1898
|
-
})]
|
|
1926
|
+
})
|
|
1899
1927
|
})]
|
|
1900
1928
|
}),
|
|
1901
1929
|
e.summary && /* @__PURE__ */ _("p", {
|
|
@@ -1917,7 +1945,7 @@ function Mn({ works: e, showLogos: t }) {
|
|
|
1917
1945
|
}
|
|
1918
1946
|
//#endregion
|
|
1919
1947
|
//#region src/components/Layout.tsx
|
|
1920
|
-
var
|
|
1948
|
+
var Pn = async ({ resume: e, css: t, ...n }) => {
|
|
1921
1949
|
let { basics: r, work: i, education: a, certificates: o, skills: s, meta: c } = e, { ui: l, modest: u } = c.themeConfig, d = be({
|
|
1922
1950
|
seed: l.backgroundTilesSeed,
|
|
1923
1951
|
cellSize: 60,
|
|
@@ -1940,6 +1968,12 @@ var Nn = async ({ resume: e, css: t, ...n }) => {
|
|
|
1940
1968
|
content: "JSON Resume Theme CJEAN"
|
|
1941
1969
|
}),
|
|
1942
1970
|
/* @__PURE__ */ _(Re, { resume: e }),
|
|
1971
|
+
r.image && /* @__PURE__ */ _("link", {
|
|
1972
|
+
rel: "preload",
|
|
1973
|
+
as: "image",
|
|
1974
|
+
href: r.image,
|
|
1975
|
+
fetchPriority: "high"
|
|
1976
|
+
}),
|
|
1943
1977
|
/* @__PURE__ */ _("style", { dangerouslySetInnerHTML: { __html: `
|
|
1944
1978
|
:root {
|
|
1945
1979
|
--theme-primary: ${l.primary};
|
|
@@ -1975,6 +2009,7 @@ var Nn = async ({ resume: e, css: t, ...n }) => {
|
|
|
1975
2009
|
alt: S("portrait_alt", { name: r.name }),
|
|
1976
2010
|
width: "200",
|
|
1977
2011
|
height: "200",
|
|
2012
|
+
fetchPriority: "high",
|
|
1978
2013
|
className: "relative aspect-square min-w-30 rounded-full object-cover"
|
|
1979
2014
|
})
|
|
1980
2015
|
}), r.summary && /* @__PURE__ */ _("p", {
|
|
@@ -1982,7 +2017,7 @@ var Nn = async ({ resume: e, css: t, ...n }) => {
|
|
|
1982
2017
|
children: r.summary
|
|
1983
2018
|
})]
|
|
1984
2019
|
}),
|
|
1985
|
-
/* @__PURE__ */ _(
|
|
2020
|
+
/* @__PURE__ */ _(Nn, {
|
|
1986
2021
|
works: i,
|
|
1987
2022
|
showLogos: l.showLogos
|
|
1988
2023
|
}),
|
|
@@ -2010,16 +2045,16 @@ var Nn = async ({ resume: e, css: t, ...n }) => {
|
|
|
2010
2045
|
};
|
|
2011
2046
|
//#endregion
|
|
2012
2047
|
//#region src/lib/image.ts
|
|
2013
|
-
function
|
|
2048
|
+
function Fn(e, t = 64) {
|
|
2014
2049
|
return `https://www.google.com/s2/favicons?domain=${encodeURIComponent(e)}&sz=${t}`;
|
|
2015
2050
|
}
|
|
2016
|
-
function
|
|
2051
|
+
function In(e, t = {}) {
|
|
2017
2052
|
let n = new URL("https://wsrv.nl/");
|
|
2018
2053
|
return n.searchParams.set("url", e), t.w && n.searchParams.set("w", t.w.toString()), t.h && n.searchParams.set("h", t.h.toString()), t.output && n.searchParams.set("output", t.output), t.encoding && n.searchParams.set("encoding", t.encoding), t.fit && n.searchParams.set("fit", t.fit), t.a && n.searchParams.set("a", t.a), n.toString();
|
|
2019
2054
|
}
|
|
2020
|
-
async function
|
|
2055
|
+
async function Ln(e, t = 64) {
|
|
2021
2056
|
if (e) try {
|
|
2022
|
-
let n = Fn(
|
|
2057
|
+
let n = In(Fn(e, t), {
|
|
2023
2058
|
w: t,
|
|
2024
2059
|
h: t,
|
|
2025
2060
|
output: "webp",
|
|
@@ -2036,17 +2071,17 @@ async function In(e, t = 64) {
|
|
|
2036
2071
|
}
|
|
2037
2072
|
//#endregion
|
|
2038
2073
|
//#region src/styles/tailwind.input.css?inline
|
|
2039
|
-
var Ln = "/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */\n@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:\"\";--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-space-y-reverse:0;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-slate-950:oklch(12.9% .042 264.695);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-5xl:64rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--font-weight-light:300;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--tracking-tight:-.025em;--tracking-wide:.025em;--tracking-widest:.1em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--ease-in-out:cubic-bezier(.4, 0, .2, 1);--blur-sm:8px;--blur-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-primary:var(--theme-primary);--color-header-from:var(--theme-header-from);--color-header-to:var(--theme-header-to);--color-footer-from:var(--theme-footer-from);--color-footer-to:var(--theme-footer-to);--min-width-30:7.5rem}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components{.timeline{list-style-type:none;position:relative}:where(.timeline>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)))}.timeline{border-color:#e5e7eb99}@supports (color:color-mix(in lab, red, red)){.timeline{border-color:color-mix(in oklab, var(--color-gray-200) 60%, transparent)}}@media (width>=48rem){.timeline{margin-left:calc(var(--spacing) * 4);border-left-style:var(--tw-border-style);padding-left:calc(var(--spacing) * 8);border-left-width:2px}}.timeline:where(.dark,.dark *){border-color:#31415880}@supports (color:color-mix(in lab, red, red)){.timeline:where(.dark,.dark *){border-color:color-mix(in oklab, var(--color-slate-700) 50%, transparent)}}.timeline-item{break-inside:avoid;position:relative}.timeline-item:before{top:calc(var(--spacing) * 1.5);height:calc(var(--spacing) * 4);width:calc(var(--spacing) * 4);--tw-translate-x:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y);border-style:var(--tw-border-style);border-width:3px;border-color:var(--color-primary);background-color:var(--color-white);--tw-content:\"\";content:var(--tw-content);border-radius:3.40282e38px;display:none;position:absolute;left:-33px}@media (width>=48rem){.timeline-item:before{display:block}}.timeline-item:before:where(){background-color:var(--color-slate-900)}.timeline-item-secondary:before{border-color:var(--color-gray-200)}.timeline-item-secondary:before:where(){border-color:var(--color-slate-800)}.bullet-list{margin-top:calc(var(--spacing) * 3);margin-left:calc(var(--spacing) * 5);list-style-type:disc}:where(.bullet-list>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)))}.bullet-list ::marker{color:var(--color-gray-300)}.bullet-list::marker{color:var(--color-gray-300)}.bullet-list ::-webkit-details-marker{color:var(--color-gray-300)}.bullet-list::-webkit-details-marker{color:var(--color-gray-300)}.bullet-list:where(.dark,.dark *) ::marker{color:var(--color-slate-700)}.bullet-list:where(.dark,.dark *)::marker{color:var(--color-slate-700)}.bullet-list:where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-slate-700)}.bullet-list:where(.dark,.dark *)::-webkit-details-marker{color:var(--color-slate-700)}.bullet-item{padding-left:calc(var(--spacing) * 1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--color-gray-600)}.bullet-item:where(.dark,.dark *){color:var(--color-slate-400)}.badge{border-radius:var(--radius-md);background-color:var(--color-gray-50);padding-inline:calc(var(--spacing) * 2);padding-block:calc(var(--spacing) * 1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--color-gray-600);--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);--tw-inset-ring-color:#6a72821a;align-items:center;display:inline-flex}@supports (color:color-mix(in lab, red, red)){.badge{--tw-inset-ring-color:color-mix(in oklab, var(--color-gray-500) 10%, transparent)}}.badge:where(.dark,.dark *){background-color:var(--color-slate-800);color:var(--color-slate-300);--tw-inset-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.badge:where(.dark,.dark *){--tw-inset-ring-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}}@layer utilities{.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing) * 0)}.start{inset-inline-start:var(--spacing)}.end{inset-inline-end:var(--spacing)}.right-8{right:calc(var(--spacing) * 8)}.bottom-8{bottom:calc(var(--spacing) * 8)}.isolate{isolation:isolate}.-z-10{z-index:calc(10 * -1)}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.mx-1{margin-inline:calc(var(--spacing) * 1)}.mx-auto{margin-inline:auto}.my-3{margin-block:calc(var(--spacing) * 3)}.-mt-10{margin-top:calc(var(--spacing) * -10)}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-3{margin-top:calc(var(--spacing) * 3)}.mt-8{margin-top:calc(var(--spacing) * 8)}.-mr-2{margin-right:calc(var(--spacing) * -2)}.mr-1{margin-right:calc(var(--spacing) * 1)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.ml-2{margin-left:calc(var(--spacing) * 2)}.flex{display:flex}.grid{display:grid}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.aspect-square{aspect-ratio:1}.size-full{width:100%;height:100%}.h-2\\.5{height:calc(var(--spacing) * 2.5)}.h-12{height:calc(var(--spacing) * 12)}.h-32{height:calc(var(--spacing) * 32)}.w-12{width:calc(var(--spacing) * 12)}.max-w-0{max-width:calc(var(--spacing) * 0)}.max-w-5xl{max-width:var(--container-5xl)}.min-w-0{min-width:calc(var(--spacing) * 0)}.min-w-30{min-width:var(--min-width-30)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.break-inside-avoid{break-inside:avoid}.break-after-avoid{break-after:avoid}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.content-center{align-content:center}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-center{justify-content:center}.gap-2{gap:calc(var(--spacing) * 2)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-x-1{column-gap:calc(var(--spacing) * 1)}.gap-x-3{column-gap:calc(var(--spacing) * 3)}.gap-x-4{column-gap:calc(var(--spacing) * 4)}.gap-x-\\[2ch\\]{column-gap:2ch}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)))}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-gray-100{border-color:var(--color-gray-100)}.bg-black\\/80{background-color:#000c}@supports (color:color-mix(in lab, red, red)){.bg-black\\/80{background-color:color-mix(in oklab, var(--color-black) 80%, transparent)}}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-primary{background-color:var(--color-primary)}.bg-white{background-color:var(--color-white)}.bg-angled-gradient{--gradient-angle:16deg;background-image:linear-gradient(var(--gradient-angle), var(--tw-gradient-from,transparent), var(--tw-gradient-to,transparent))}.from-footer-from{--tw-gradient-from:var(--color-footer-from);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-header-from{--tw-gradient-from:var(--color-header-from);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-footer-to{--tw-gradient-to:var(--color-footer-to);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-header-to{--tw-gradient-to:var(--color-header-to);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.object-center{object-position:center}.p-4{padding:calc(var(--spacing) * 4)}.pt-12{padding-top:calc(var(--spacing) * 12)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pb-8{padding-bottom:calc(var(--spacing) * 8)}.text-center{text-align:center}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-8{--tw-leading:calc(var(--spacing) * 8);line-height:calc(var(--spacing) * 8)}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.text-pretty{text-wrap:pretty}.whitespace-nowrap{white-space:nowrap}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-primary{color:var(--color-primary)}.text-transparent{color:#0000}.text-white{color:var(--color-white)}.uppercase{text-transform:uppercase}.italic{font-style:italic}.underline{text-decoration-line:underline}.decoration-white\\/30{text-decoration-color:#ffffff4d}@supports (color:color-mix(in lab, red, red)){.decoration-white\\/30{-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent)}}.underline-offset-2{text-underline-offset:2px}.underline-offset-4{text-underline-offset:4px}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.backdrop-blur-3xl{--tw-backdrop-blur:blur(var(--blur-3xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.select-none{-webkit-user-select:none;user-select:none}.kerning-normal{font-kerning:normal}@media (hover:hover){.group-hover\\:mr-0:is(:where(.group):hover *){margin-right:calc(var(--spacing) * 0)}.group-hover\\:max-w-96:is(:where(.group):hover *){max-width:calc(var(--spacing) * 96)}.group-hover\\:text-inherit:is(:where(.group):hover *){color:inherit}}.group-focus\\:mr-0:is(:where(.group):focus *){margin-right:calc(var(--spacing) * 0)}.group-focus\\:max-w-96:is(:where(.group):focus *){max-width:calc(var(--spacing) * 96)}.group-focus\\:text-inherit:is(:where(.group):focus *){color:inherit}.group-\\[\\.fab--extended\\]\\:mr-0:is(:where(.group).fab--extended *){margin-right:calc(var(--spacing) * 0)}.group-\\[\\.fab--extended\\]\\:max-w-96:is(:where(.group).fab--extended *){max-width:calc(var(--spacing) * 96)}.group-\\[\\.fab--extended\\]\\:text-inherit:is(:where(.group).fab--extended *){color:inherit}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:-bottom-1:before{content:var(--tw-content);bottom:calc(var(--spacing) * -1)}.before\\:left-0:before{content:var(--tw-content);left:calc(var(--spacing) * 0)}.before\\:h-1:before{content:var(--tw-content);height:calc(var(--spacing) * 1)}.before\\:w-\\[3ch\\]:before{content:var(--tw-content);width:3ch}.before\\:rounded-\\[0_0\\.25rem_0\\.25rem_0\\]:before{content:var(--tw-content);border-radius:0 .25rem .25rem 0}.before\\:bg-primary:before{content:var(--tw-content);background-color:var(--color-primary)}@media (hover:hover){.hover\\:bg-black:hover{background-color:var(--color-black)}.hover\\:text-primary:hover{color:var(--color-primary)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:decoration-white\\/80:hover{text-decoration-color:#fffc}@supports (color:color-mix(in lab, red, red)){.hover\\:decoration-white\\/80:hover{-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent)}}}@media (width>=40rem){.sm\\:flex-nowrap{flex-wrap:nowrap}.sm\\:text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}}@media (width>=48rem){.md\\:mt-4{margin-top:calc(var(--spacing) * 4)}.md\\:-mb-60{margin-bottom:calc(var(--spacing) * -60)}.md\\:h-80{height:calc(var(--spacing) * 80)}.md\\:flex-row{flex-direction:row}.md\\:items-baseline{align-items:baseline}.md\\:items-center{align-items:center}.md\\:justify-between{justify-content:space-between}.md\\:p-6{padding:calc(var(--spacing) * 6)}.md\\:text-right{text-align:right}.md\\:whitespace-normal{white-space:normal}}.dark\\:border-white\\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.dark\\:border-white\\/5:where(.dark,.dark *){border-color:color-mix(in oklab, var(--color-white) 5%, transparent)}}.dark\\:bg-gray-700:where(.dark,.dark *){background-color:var(--color-gray-700)}.dark\\:bg-slate-800:where(.dark,.dark *){background-color:var(--color-slate-800)}.dark\\:bg-slate-900\\/95:where(.dark,.dark *){background-color:#0f172bf2}@supports (color:color-mix(in lab, red, red)){.dark\\:bg-slate-900\\/95:where(.dark,.dark *){background-color:color-mix(in oklab, var(--color-slate-900) 95%, transparent)}}.dark\\:bg-slate-950:where(.dark,.dark *){background-color:var(--color-slate-950)}.dark\\:text-slate-200:where(.dark,.dark *){color:var(--color-slate-200)}.dark\\:text-slate-300:where(.dark,.dark *){color:var(--color-slate-300)}.dark\\:text-slate-400:where(.dark,.dark *){color:var(--color-slate-400)}.dark\\:text-slate-500:where(.dark,.dark *){color:var(--color-slate-500)}.dark\\:text-white:where(.dark,.dark *){color:var(--color-white)}.dark\\:opacity-90:where(.dark,.dark *){opacity:.9}.dark\\:shadow-2xl:where(.dark,.dark *){--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.dark\\:ring-1:where(.dark,.dark *){--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.dark\\:ring-white\\/10:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.dark\\:ring-white\\/10:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.dark\\:contrast-125:where(.dark,.dark *){--tw-contrast:contrast(125%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.dark\\:saturate-50:where(.dark,.dark *){--tw-saturate:saturate(50%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}@media print{.print\\:hidden{display:none}.print\\:rounded-none{border-radius:0}.print\\:bg-transparent{background-color:#0000}.print\\:text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.print\\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.print\\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}}.before\\:print\\:\\[print-color-adjust\\:exact\\]:before{content:var(--tw-content)}@media print{.before\\:print\\:\\[print-color-adjust\\:exact\\]:before{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.\\[\\&_a\\]\\:underline a{text-decoration-line:underline}}.dark{--color-primary:oklch(from var(--theme-primary) calc(l * .9) calc(c * .7) h)}@property --tw-space-x-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-border-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:\"*\";inherits:false}@property --tw-gradient-from{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:\"*\";inherits:false}@property --tw-gradient-via-stops{syntax:\"*\";inherits:false}@property --tw-gradient-from-position{syntax:\"<length-percentage>\";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:\"<length-percentage>\";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:\"<length-percentage>\";inherits:false;initial-value:100%}@property --tw-leading{syntax:\"*\";inherits:false}@property --tw-font-weight{syntax:\"*\";inherits:false}@property --tw-tracking{syntax:\"*\";inherits:false}@property --tw-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:\"*\";inherits:false}@property --tw-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:\"*\";inherits:false}@property --tw-inset-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:\"*\";inherits:false}@property --tw-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:\"*\";inherits:false}@property --tw-inset-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:\"*\";inherits:false}@property --tw-ring-offset-width{syntax:\"<length>\";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:\"*\";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-backdrop-blur{syntax:\"*\";inherits:false}@property --tw-backdrop-brightness{syntax:\"*\";inherits:false}@property --tw-backdrop-contrast{syntax:\"*\";inherits:false}@property --tw-backdrop-grayscale{syntax:\"*\";inherits:false}@property --tw-backdrop-hue-rotate{syntax:\"*\";inherits:false}@property --tw-backdrop-invert{syntax:\"*\";inherits:false}@property --tw-backdrop-opacity{syntax:\"*\";inherits:false}@property --tw-backdrop-saturate{syntax:\"*\";inherits:false}@property --tw-backdrop-sepia{syntax:\"*\";inherits:false}@property --tw-duration{syntax:\"*\";inherits:false}@property --tw-ease{syntax:\"*\";inherits:false}@property --tw-content{syntax:\"*\";inherits:false;initial-value:\"\"}@property --tw-blur{syntax:\"*\";inherits:false}@property --tw-brightness{syntax:\"*\";inherits:false}@property --tw-contrast{syntax:\"*\";inherits:false}@property --tw-grayscale{syntax:\"*\";inherits:false}@property --tw-hue-rotate{syntax:\"*\";inherits:false}@property --tw-invert{syntax:\"*\";inherits:false}@property --tw-opacity{syntax:\"*\";inherits:false}@property --tw-saturate{syntax:\"*\";inherits:false}@property --tw-sepia{syntax:\"*\";inherits:false}@property --tw-drop-shadow{syntax:\"*\";inherits:false}@property --tw-drop-shadow-color{syntax:\"*\";inherits:false}@property --tw-drop-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:\"*\";inherits:false}@property --tw-space-y-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-x{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-y{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-z{syntax:\"*\";inherits:false;initial-value:0}";
|
|
2074
|
+
var Rn = "/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */\n@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-content:\"\";--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-space-y-reverse:0;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-slate-950:oklch(12.9% .042 264.695);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-5xl:64rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--font-weight-light:300;--font-weight-medium:500;--font-weight-bold:700;--font-weight-extrabold:800;--tracking-tight:-.025em;--tracking-wide:.025em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--ease-in-out:cubic-bezier(.4, 0, .2, 1);--blur-sm:8px;--blur-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-primary:var(--theme-primary);--color-header-from:var(--theme-header-from);--color-header-to:var(--theme-header-to);--color-footer-from:var(--theme-footer-from);--color-footer-to:var(--theme-footer-to);--min-width-30:7.5rem}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components{.timeline{list-style-type:none;position:relative}:where(.timeline>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)))}.timeline{border-color:#e5e7eb99}@supports (color:color-mix(in lab, red, red)){.timeline{border-color:color-mix(in oklab, var(--color-gray-200) 60%, transparent)}}@media (width>=48rem){.timeline{margin-left:calc(var(--spacing) * 4);border-left-style:var(--tw-border-style);padding-left:calc(var(--spacing) * 8);border-left-width:4px}}.timeline:where(.dark,.dark *){border-color:#31415880}@supports (color:color-mix(in lab, red, red)){.timeline:where(.dark,.dark *){border-color:color-mix(in oklab, var(--color-slate-700) 50%, transparent)}}.timeline-item{break-inside:avoid;position:relative}.timeline-item:before{top:calc(var(--spacing) * 1.5);height:calc(var(--spacing) * 4);width:calc(var(--spacing) * 4);--tw-translate-x:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y);border-style:var(--tw-border-style);border-width:3px;border-color:var(--color-primary);background-color:var(--color-white);--tw-content:\"\";content:var(--tw-content);border-radius:3.40282e38px;display:none;position:absolute;left:-34px}@media (width>=48rem){.timeline-item:before{display:block}}.timeline-item:before:where(){background-color:var(--color-slate-900)}.timeline-item-secondary:before{border-color:var(--color-gray-200)}.timeline-item-secondary:before:where(){border-color:var(--color-slate-800)}.bullet-list{margin-top:calc(var(--spacing) * 3);margin-left:calc(var(--spacing) * 5);list-style-type:disc}:where(.bullet-list>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)))}.bullet-list ::marker{color:var(--color-gray-300)}.bullet-list::marker{color:var(--color-gray-300)}.bullet-list ::-webkit-details-marker{color:var(--color-gray-300)}.bullet-list::-webkit-details-marker{color:var(--color-gray-300)}.bullet-list:where(.dark,.dark *) ::marker{color:var(--color-slate-900)}.bullet-list:where(.dark,.dark *)::marker{color:var(--color-slate-900)}.bullet-list:where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-slate-900)}.bullet-list:where(.dark,.dark *)::-webkit-details-marker{color:var(--color-slate-900)}.bullet-item{padding-left:calc(var(--spacing) * 1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:var(--color-gray-600)}.bullet-item:where(.dark,.dark *){color:var(--color-slate-400)}.badge{border-radius:var(--radius-md);background-color:var(--color-gray-50);padding-inline:calc(var(--spacing) * 2);padding-block:calc(var(--spacing) * 1);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);color:var(--color-gray-600);--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);--tw-inset-ring-color:#6a72821a;align-items:center;display:inline-flex}@supports (color:color-mix(in lab, red, red)){.badge{--tw-inset-ring-color:color-mix(in oklab, var(--color-gray-500) 10%, transparent)}}.badge:where(.dark,.dark *){background-color:var(--color-slate-800);color:var(--color-slate-300);--tw-inset-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.badge:where(.dark,.dark *){--tw-inset-ring-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}}@layer utilities{.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing) * 0)}.start{inset-inline-start:var(--spacing)}.end{inset-inline-end:var(--spacing)}.right-8{right:calc(var(--spacing) * 8)}.bottom-8{bottom:calc(var(--spacing) * 8)}.isolate{isolation:isolate}.-z-10{z-index:calc(10 * -1)}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.mx-auto{margin-inline:auto}.my-3{margin-block:calc(var(--spacing) * 3)}.-mt-10{margin-top:calc(var(--spacing) * -10)}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-3{margin-top:calc(var(--spacing) * 3)}.mt-8{margin-top:calc(var(--spacing) * 8)}.-mr-2{margin-right:calc(var(--spacing) * -2)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.ml-2{margin-left:calc(var(--spacing) * 2)}.flex{display:flex}.grid{display:grid}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.aspect-square{aspect-ratio:1}.size-full{width:100%;height:100%}.h-2\\.5{height:calc(var(--spacing) * 2.5)}.h-12{height:calc(var(--spacing) * 12)}.h-32{height:calc(var(--spacing) * 32)}.w-12{width:calc(var(--spacing) * 12)}.max-w-0{max-width:calc(var(--spacing) * 0)}.max-w-5xl{max-width:var(--container-5xl)}.min-w-0{min-width:calc(var(--spacing) * 0)}.min-w-30{min-width:var(--min-width-30)}.flex-1{flex:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.break-inside-avoid{break-inside:avoid}.break-after-avoid{break-after:avoid}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-wrap{flex-wrap:wrap}.content-center{align-content:center}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-center{justify-content:center}.gap-2{gap:calc(var(--spacing) * 2)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-x-1{column-gap:calc(var(--spacing) * 1)}.gap-x-4{column-gap:calc(var(--spacing) * 4)}.gap-x-\\[2ch\\]{column-gap:2ch}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)))}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-gray-100{border-color:var(--color-gray-100)}.bg-black\\/80{background-color:#000c}@supports (color:color-mix(in lab, red, red)){.bg-black\\/80{background-color:color-mix(in oklab, var(--color-black) 80%, transparent)}}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-primary{background-color:var(--color-primary)}.bg-white{background-color:var(--color-white)}.bg-angled-gradient{--gradient-angle:16deg;background-image:linear-gradient(var(--gradient-angle), var(--tw-gradient-from,transparent), var(--tw-gradient-to,transparent))}.from-footer-from{--tw-gradient-from:var(--color-footer-from);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-header-from{--tw-gradient-from:var(--color-header-from);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-footer-to{--tw-gradient-to:var(--color-footer-to);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-header-to{--tw-gradient-to:var(--color-header-to);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.object-center{object-position:center}.p-4{padding:calc(var(--spacing) * 4)}.pt-12{padding-top:calc(var(--spacing) * 12)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pb-8{padding-bottom:calc(var(--spacing) * 8)}.text-center{text-align:center}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-8{--tw-leading:calc(var(--spacing) * 8);line-height:calc(var(--spacing) * 8)}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.text-pretty{text-wrap:pretty}.whitespace-nowrap{white-space:nowrap}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-primary{color:var(--color-primary)}.text-transparent{color:#0000}.text-white{color:var(--color-white)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.decoration-white\\/30{text-decoration-color:#ffffff4d}@supports (color:color-mix(in lab, red, red)){.decoration-white\\/30{-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent);text-decoration-color:color-mix(in oklab, var(--color-white) 30%, transparent)}}.underline-offset-2{text-underline-offset:2px}.underline-offset-4{text-underline-offset:4px}.opacity-75{opacity:.75}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.backdrop-blur-3xl{--tw-backdrop-blur:blur(var(--blur-3xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.select-none{-webkit-user-select:none;user-select:none}.kerning-normal{font-kerning:normal}@media (hover:hover){.group-hover\\:mr-0:is(:where(.group):hover *){margin-right:calc(var(--spacing) * 0)}.group-hover\\:max-w-96:is(:where(.group):hover *){max-width:calc(var(--spacing) * 96)}.group-hover\\:text-inherit:is(:where(.group):hover *){color:inherit}}.group-focus\\:mr-0:is(:where(.group):focus *){margin-right:calc(var(--spacing) * 0)}.group-focus\\:max-w-96:is(:where(.group):focus *){max-width:calc(var(--spacing) * 96)}.group-focus\\:text-inherit:is(:where(.group):focus *){color:inherit}.group-\\[\\.fab--extended\\]\\:mr-0:is(:where(.group).fab--extended *){margin-right:calc(var(--spacing) * 0)}.group-\\[\\.fab--extended\\]\\:max-w-96:is(:where(.group).fab--extended *){max-width:calc(var(--spacing) * 96)}.group-\\[\\.fab--extended\\]\\:text-inherit:is(:where(.group).fab--extended *){color:inherit}.before\\:absolute:before{content:var(--tw-content);position:absolute}.before\\:-bottom-1:before{content:var(--tw-content);bottom:calc(var(--spacing) * -1)}.before\\:left-0:before{content:var(--tw-content);left:calc(var(--spacing) * 0)}.before\\:h-1:before{content:var(--tw-content);height:calc(var(--spacing) * 1)}.before\\:w-\\[3ch\\]:before{content:var(--tw-content);width:3ch}.before\\:rounded-\\[0_0\\.25rem_0\\.25rem_0\\]:before{content:var(--tw-content);border-radius:0 .25rem .25rem 0}.before\\:bg-primary:before{content:var(--tw-content);background-color:var(--color-primary)}@media (hover:hover){.hover\\:bg-black:hover{background-color:var(--color-black)}.hover\\:text-primary:hover{color:var(--color-primary)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:decoration-white\\/80:hover{text-decoration-color:#fffc}@supports (color:color-mix(in lab, red, red)){.hover\\:decoration-white\\/80:hover{-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);-webkit-text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent);text-decoration-color:color-mix(in oklab, var(--color-white) 80%, transparent)}}}@media (width>=40rem){.sm\\:flex-nowrap{flex-wrap:nowrap}.sm\\:text-6xl{font-size:var(--text-6xl);line-height:var(--tw-leading,var(--text-6xl--line-height))}}@media (width>=48rem){.md\\:mt-1\\.5{margin-top:calc(var(--spacing) * 1.5)}.md\\:-mb-60{margin-bottom:calc(var(--spacing) * -60)}.md\\:h-80{height:calc(var(--spacing) * 80)}.md\\:grid-cols-\\[1fr_auto\\]{grid-template-columns:1fr auto}.md\\:items-start{align-items:flex-start}.md\\:p-6{padding:calc(var(--spacing) * 6)}.md\\:text-right{text-align:right}.md\\:whitespace-normal{white-space:normal}}.dark\\:border-white\\/5:where(.dark,.dark *){border-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.dark\\:border-white\\/5:where(.dark,.dark *){border-color:color-mix(in oklab, var(--color-white) 5%, transparent)}}.dark\\:bg-gray-700:where(.dark,.dark *){background-color:var(--color-gray-700)}.dark\\:bg-slate-800:where(.dark,.dark *){background-color:var(--color-slate-800)}.dark\\:bg-slate-900\\/95:where(.dark,.dark *){background-color:#0f172bf2}@supports (color:color-mix(in lab, red, red)){.dark\\:bg-slate-900\\/95:where(.dark,.dark *){background-color:color-mix(in oklab, var(--color-slate-900) 95%, transparent)}}.dark\\:bg-slate-950:where(.dark,.dark *){background-color:var(--color-slate-950)}.dark\\:text-slate-200:where(.dark,.dark *){color:var(--color-slate-200)}.dark\\:text-slate-300:where(.dark,.dark *){color:var(--color-slate-300)}.dark\\:text-slate-400:where(.dark,.dark *){color:var(--color-slate-400)}.dark\\:text-slate-500:where(.dark,.dark *){color:var(--color-slate-500)}.dark\\:text-white:where(.dark,.dark *){color:var(--color-white)}.dark\\:opacity-90:where(.dark,.dark *){opacity:.9}.dark\\:shadow-2xl:where(.dark,.dark *){--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.dark\\:ring-1:where(.dark,.dark *){--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.dark\\:ring-white\\/10:where(.dark,.dark *){--tw-ring-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.dark\\:ring-white\\/10:where(.dark,.dark *){--tw-ring-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.dark\\:contrast-125:where(.dark,.dark *){--tw-contrast:contrast(125%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.dark\\:saturate-50:where(.dark,.dark *){--tw-saturate:saturate(50%);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}@media print{.print\\:hidden{display:none}.print\\:rounded-none{border-radius:0}.print\\:bg-transparent{background-color:#0000}.print\\:text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.print\\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.print\\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}}.before\\:print\\:\\[print-color-adjust\\:exact\\]:before{content:var(--tw-content)}@media print{.before\\:print\\:\\[print-color-adjust\\:exact\\]:before{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.\\[\\&_a\\]\\:underline a{text-decoration-line:underline}}.dark{--color-primary:oklch(from var(--theme-primary) calc(l * .9) calc(c * .7) h)}@property --tw-space-x-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-border-style{syntax:\"*\";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:\"*\";inherits:false}@property --tw-gradient-from{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:\"<color>\";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:\"*\";inherits:false}@property --tw-gradient-via-stops{syntax:\"*\";inherits:false}@property --tw-gradient-from-position{syntax:\"<length-percentage>\";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:\"<length-percentage>\";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:\"<length-percentage>\";inherits:false;initial-value:100%}@property --tw-leading{syntax:\"*\";inherits:false}@property --tw-font-weight{syntax:\"*\";inherits:false}@property --tw-tracking{syntax:\"*\";inherits:false}@property --tw-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:\"*\";inherits:false}@property --tw-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:\"*\";inherits:false}@property --tw-inset-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:\"*\";inherits:false}@property --tw-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:\"*\";inherits:false}@property --tw-inset-ring-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:\"*\";inherits:false}@property --tw-ring-offset-width{syntax:\"<length>\";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:\"*\";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:\"*\";inherits:false;initial-value:0 0 #0000}@property --tw-backdrop-blur{syntax:\"*\";inherits:false}@property --tw-backdrop-brightness{syntax:\"*\";inherits:false}@property --tw-backdrop-contrast{syntax:\"*\";inherits:false}@property --tw-backdrop-grayscale{syntax:\"*\";inherits:false}@property --tw-backdrop-hue-rotate{syntax:\"*\";inherits:false}@property --tw-backdrop-invert{syntax:\"*\";inherits:false}@property --tw-backdrop-opacity{syntax:\"*\";inherits:false}@property --tw-backdrop-saturate{syntax:\"*\";inherits:false}@property --tw-backdrop-sepia{syntax:\"*\";inherits:false}@property --tw-duration{syntax:\"*\";inherits:false}@property --tw-ease{syntax:\"*\";inherits:false}@property --tw-content{syntax:\"*\";inherits:false;initial-value:\"\"}@property --tw-blur{syntax:\"*\";inherits:false}@property --tw-brightness{syntax:\"*\";inherits:false}@property --tw-contrast{syntax:\"*\";inherits:false}@property --tw-grayscale{syntax:\"*\";inherits:false}@property --tw-hue-rotate{syntax:\"*\";inherits:false}@property --tw-invert{syntax:\"*\";inherits:false}@property --tw-opacity{syntax:\"*\";inherits:false}@property --tw-saturate{syntax:\"*\";inherits:false}@property --tw-sepia{syntax:\"*\";inherits:false}@property --tw-drop-shadow{syntax:\"*\";inherits:false}@property --tw-drop-shadow-color{syntax:\"*\";inherits:false}@property --tw-drop-shadow-alpha{syntax:\"<percentage>\";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:\"*\";inherits:false}@property --tw-space-y-reverse{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-x{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-y{syntax:\"*\";inherits:false;initial-value:0}@property --tw-translate-z{syntax:\"*\";inherits:false;initial-value:0}";
|
|
2040
2075
|
//#endregion
|
|
2041
2076
|
//#region src/index.ts
|
|
2042
|
-
async function
|
|
2043
|
-
let t =
|
|
2077
|
+
async function zn(e) {
|
|
2078
|
+
let t = Mn.parse(e);
|
|
2044
2079
|
return ve(t.meta.lang), t.meta.themeConfig.ui.showLogos && await Promise.all(t.work.filter((e) => !e.logo).map(async (e) => {
|
|
2045
|
-
e.logo = await
|
|
2046
|
-
})), `<!doctype html>${await
|
|
2080
|
+
e.logo = await Ln(e.url);
|
|
2081
|
+
})), `<!doctype html>${await Pn({
|
|
2047
2082
|
resume: t,
|
|
2048
|
-
css:
|
|
2083
|
+
css: Rn
|
|
2049
2084
|
})}`;
|
|
2050
2085
|
}
|
|
2051
2086
|
//#endregion
|
|
2052
|
-
export {
|
|
2087
|
+
export { zn as render };
|