@tarsis/toolkit 0.5.0 → 0.5.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/dist/{gl-BlKJDzVL.cjs → gl-DkwP1ATh.cjs} +1 -1
- package/dist/{gl-DA94DTyS.js → gl-MYQC24ZU.js} +1 -1
- package/dist/hooks.cjs +1 -1
- package/dist/hooks.js +1 -1
- package/dist/{index-BlpASwt4.js → index-B6Kl363b.js} +1 -1
- package/dist/{index-DrShaNFt.cjs → index-CEXzqVuq.cjs} +409 -494
- package/dist/{index-B_kRoqUz.cjs → index-CmzNwlcp.cjs} +1 -1
- package/dist/{index-B9O5nl2I.js → index-DqgylTr3.js} +409 -494
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +6 -6
- package/dist/index.js +3 -3
- package/dist/styles.css +482 -482
- package/dist/{svg-6fNe-PW5.cjs → svg-Bi5ULzxB.cjs} +10 -5
- package/dist/{svg-C0Ykxk94.js → svg-CoSCBw2u.js} +10 -5
- package/dist/{useWindowReady-CIGrizO6.js → useWindowReady-CpmawCsz.js} +19 -5
- package/dist/{useWindowReady-CESjx5iD.cjs → useWindowReady-ow3ZpIjd.cjs} +19 -5
- package/dist/utils.cjs +1 -1
- package/dist/utils.js +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const useWindowReady = require('./useWindowReady-
|
|
4
|
-
const svg$q = require('./svg-
|
|
3
|
+
const useWindowReady = require('./useWindowReady-ow3ZpIjd.cjs');
|
|
4
|
+
const svg$q = require('./svg-Bi5ULzxB.cjs');
|
|
5
5
|
const jsxRuntime = require('react/jsx-runtime');
|
|
6
6
|
const React = require('react');
|
|
7
7
|
const ReactDOM = require('react-dom');
|
|
@@ -27,127 +27,7 @@ function _interopNamespaceDefault(e) {
|
|
|
27
27
|
const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
|
|
28
28
|
const ReactDOM__namespace = /*#__PURE__*/_interopNamespaceDefault(ReactDOM);
|
|
29
29
|
|
|
30
|
-
var
|
|
31
|
-
|
|
32
|
-
function getDefaultExportFromCjs (x) {
|
|
33
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
function getAugmentedNamespace(n) {
|
|
37
|
-
if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
|
|
38
|
-
var f = n.default;
|
|
39
|
-
if (typeof f == "function") {
|
|
40
|
-
var a = function a () {
|
|
41
|
-
var isInstance = false;
|
|
42
|
-
try {
|
|
43
|
-
isInstance = this instanceof a;
|
|
44
|
-
} catch {}
|
|
45
|
-
if (isInstance) {
|
|
46
|
-
return Reflect.construct(f, arguments, this.constructor);
|
|
47
|
-
}
|
|
48
|
-
return f.apply(this, arguments);
|
|
49
|
-
};
|
|
50
|
-
a.prototype = f.prototype;
|
|
51
|
-
} else a = {};
|
|
52
|
-
Object.defineProperty(a, '__esModule', {value: true});
|
|
53
|
-
Object.keys(n).forEach(function (k) {
|
|
54
|
-
var d = Object.getOwnPropertyDescriptor(n, k);
|
|
55
|
-
Object.defineProperty(a, k, d.get ? d : {
|
|
56
|
-
enumerable: true,
|
|
57
|
-
get: function () {
|
|
58
|
-
return n[k];
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
});
|
|
62
|
-
return a;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
var classnames = {exports: {}};
|
|
66
|
-
|
|
67
|
-
/*!
|
|
68
|
-
Copyright (c) 2018 Jed Watson.
|
|
69
|
-
Licensed under the MIT License (MIT), see
|
|
70
|
-
http://jedwatson.github.io/classnames
|
|
71
|
-
*/
|
|
72
|
-
|
|
73
|
-
var hasRequiredClassnames;
|
|
74
|
-
|
|
75
|
-
function requireClassnames () {
|
|
76
|
-
if (hasRequiredClassnames) return classnames.exports;
|
|
77
|
-
hasRequiredClassnames = 1;
|
|
78
|
-
(function (module) {
|
|
79
|
-
/* global define */
|
|
80
|
-
|
|
81
|
-
(function () {
|
|
82
|
-
|
|
83
|
-
var hasOwn = {}.hasOwnProperty;
|
|
84
|
-
|
|
85
|
-
function classNames () {
|
|
86
|
-
var classes = '';
|
|
87
|
-
|
|
88
|
-
for (var i = 0; i < arguments.length; i++) {
|
|
89
|
-
var arg = arguments[i];
|
|
90
|
-
if (arg) {
|
|
91
|
-
classes = appendClass(classes, parseValue(arg));
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
return classes;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
function parseValue (arg) {
|
|
99
|
-
if (typeof arg === 'string' || typeof arg === 'number') {
|
|
100
|
-
return arg;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
if (typeof arg !== 'object') {
|
|
104
|
-
return '';
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
if (Array.isArray(arg)) {
|
|
108
|
-
return classNames.apply(null, arg);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
|
|
112
|
-
return arg.toString();
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
var classes = '';
|
|
116
|
-
|
|
117
|
-
for (var key in arg) {
|
|
118
|
-
if (hasOwn.call(arg, key) && arg[key]) {
|
|
119
|
-
classes = appendClass(classes, key);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
return classes;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
function appendClass (value, newClass) {
|
|
127
|
-
if (!newClass) {
|
|
128
|
-
return value;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
if (value) {
|
|
132
|
-
return value + ' ' + newClass;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
return value + newClass;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
if (module.exports) {
|
|
139
|
-
classNames.default = classNames;
|
|
140
|
-
module.exports = classNames;
|
|
141
|
-
} else {
|
|
142
|
-
window.classNames = classNames;
|
|
143
|
-
}
|
|
144
|
-
}());
|
|
145
|
-
} (classnames));
|
|
146
|
-
return classnames.exports;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
var classnamesExports = requireClassnames();
|
|
150
|
-
const cn = /*@__PURE__*/getDefaultExportFromCjs(classnamesExports);
|
|
30
|
+
function r$1(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r$1(e[t]))&&(n&&(n+=" "),n+=f);}else for(f in e)e[f]&&(n&&(n+=" "),n+=f);return n}function clsx(){for(var e,t,f=0,n="",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r$1(e))&&(n&&(n+=" "),n+=t);return n}
|
|
151
31
|
|
|
152
32
|
const root$4v = "_root_1k8u7_1";
|
|
153
33
|
const isExpanded = "_isExpanded_1k8u7_9";
|
|
@@ -173,7 +53,7 @@ const Expand = ({ isExpanded, children, className = "" }) => {
|
|
|
173
53
|
"div",
|
|
174
54
|
{
|
|
175
55
|
ref,
|
|
176
|
-
className:
|
|
56
|
+
className: clsx(styles$4T.root, className, {
|
|
177
57
|
[styles$4T.isExpanded]: isExpanded
|
|
178
58
|
}),
|
|
179
59
|
"aria-hidden": !isExpanded,
|
|
@@ -238,7 +118,7 @@ const GridAccordion = () => {
|
|
|
238
118
|
]
|
|
239
119
|
}
|
|
240
120
|
),
|
|
241
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
121
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$4S.content, { [styles$4S.expanded]: expanded }), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4S.textWrapper, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4S.text, children: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla necessitatibus iusto laborum autem placeat aspernatur inventore eius deleniti reprehenderit? Numquam commodi totam mollitia quod iure quibusdam corrupti eos quos perspiciatis?" }) }) })
|
|
242
122
|
] });
|
|
243
123
|
};
|
|
244
124
|
|
|
@@ -254,7 +134,7 @@ const styles$4R = {
|
|
|
254
134
|
const BackgroundCircles = () => {
|
|
255
135
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4R.root, children: [
|
|
256
136
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { className: styles$4R.circle }),
|
|
257
|
-
/* @__PURE__ */ jsxRuntime.jsx("circle", { className:
|
|
137
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { className: clsx(styles$4R.circle, styles$4R.reverse) }),
|
|
258
138
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { className: styles$4R.circle })
|
|
259
139
|
] });
|
|
260
140
|
};
|
|
@@ -288,7 +168,7 @@ const styles$4P = {
|
|
|
288
168
|
|
|
289
169
|
const RaysBackground = () => {
|
|
290
170
|
const [checked, setChecked] = React.useState(false);
|
|
291
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("section", { className:
|
|
171
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("section", { className: clsx(styles$4P.root, { [styles$4P.checked]: checked }), children: [
|
|
292
172
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4P.hero }),
|
|
293
173
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4P.content, children: [
|
|
294
174
|
/* @__PURE__ */ jsxRuntime.jsx("h1", { className: styles$4P.h1ScalingSize, "data-text": "An awesome title", children: "An awesome title" }),
|
|
@@ -320,7 +200,7 @@ const Texture$1 = ({ className = "" }) => {
|
|
|
320
200
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
321
201
|
"img",
|
|
322
202
|
{
|
|
323
|
-
className:
|
|
203
|
+
className: clsx(styles$4O.root, className),
|
|
324
204
|
src: textureImage,
|
|
325
205
|
alt: "",
|
|
326
206
|
"aria-hidden": true,
|
|
@@ -51894,7 +51774,7 @@ const ActivateButton = () => {
|
|
|
51894
51774
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4M.root, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
51895
51775
|
"button",
|
|
51896
51776
|
{
|
|
51897
|
-
className:
|
|
51777
|
+
className: clsx(styles$4M.btn, {
|
|
51898
51778
|
[styles$4M.activate]: state === "ACTIVATE" /* ACTIVATE */,
|
|
51899
51779
|
[styles$4M.waiting]: state === "ACTIVATING" /* ACTIVATING */,
|
|
51900
51780
|
[styles$4M.activated]: state === "ACTIVATED" /* ACTIVATED */
|
|
@@ -52078,7 +51958,7 @@ const AirplaneAnimation = () => {
|
|
|
52078
51958
|
"label",
|
|
52079
51959
|
{
|
|
52080
51960
|
ref: rootRef,
|
|
52081
|
-
className:
|
|
51961
|
+
className: clsx(styles$4L.root, { [styles$4L.indeterminate]: indeterminate }),
|
|
52082
51962
|
children: [
|
|
52083
51963
|
/* @__PURE__ */ jsxRuntime.jsx("input", { className: styles$4L.input, type: "checkbox", onChange: emitSmoke }),
|
|
52084
51964
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4L.sr, children: "Airplane Mode" }),
|
|
@@ -52110,7 +51990,7 @@ const AnimatedHoverButton = ({
|
|
|
52110
51990
|
className = "",
|
|
52111
51991
|
...rest
|
|
52112
51992
|
}) => {
|
|
52113
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("button", { type: "button", ...rest, className:
|
|
51993
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("button", { type: "button", ...rest, className: clsx(styles$4K.root, className), children: [
|
|
52114
51994
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4K.absolute }),
|
|
52115
51995
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4K.relative, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4K.content, children }) })
|
|
52116
51996
|
] });
|
|
@@ -52228,11 +52108,11 @@ const BubblyParticlesButton = () => {
|
|
|
52228
52108
|
);
|
|
52229
52109
|
};
|
|
52230
52110
|
|
|
52231
|
-
const root$4i = "
|
|
52232
|
-
const button$o = "
|
|
52233
|
-
const p$1 = "
|
|
52234
|
-
const text$z = "
|
|
52235
|
-
const effects = "
|
|
52111
|
+
const root$4i = "_root_6u0yf_1";
|
|
52112
|
+
const button$o = "_button_6u0yf_13";
|
|
52113
|
+
const p$1 = "_p_6u0yf_26";
|
|
52114
|
+
const text$z = "_text_6u0yf_26";
|
|
52115
|
+
const effects = "_effects_6u0yf_240";
|
|
52236
52116
|
const styles$4G = {
|
|
52237
52117
|
root: root$4i,
|
|
52238
52118
|
button: button$o,
|
|
@@ -52282,7 +52162,7 @@ const ButtonHoverFill = () => {
|
|
|
52282
52162
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
52283
52163
|
"button",
|
|
52284
52164
|
{
|
|
52285
|
-
className:
|
|
52165
|
+
className: clsx(styles$4F.root, { [styles$4F.full]: isFull }),
|
|
52286
52166
|
onClick: () => setIsFull((state) => !state),
|
|
52287
52167
|
children: [
|
|
52288
52168
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4F.icon, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -52341,7 +52221,7 @@ const styles$4D = {
|
|
|
52341
52221
|
};
|
|
52342
52222
|
|
|
52343
52223
|
const ButtonWithDot = () => {
|
|
52344
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("button", { className:
|
|
52224
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("button", { className: clsx(styles$4D.root, styles$4D.withDot), children: [
|
|
52345
52225
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4D.dot }),
|
|
52346
52226
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4D.text, children: "Dotted button" })
|
|
52347
52227
|
] });
|
|
@@ -58883,11 +58763,11 @@ const ColorfulButtons = () => {
|
|
|
58883
58763
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
58884
58764
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4A.grid, children: [
|
|
58885
58765
|
/* @__PURE__ */ jsxRuntime.jsx("button", { className: styles$4A.button, children: /* @__PURE__ */ jsxRuntime.jsx(Wrapper, { title: "Primary" }) }),
|
|
58886
|
-
/* @__PURE__ */ jsxRuntime.jsx("button", { className:
|
|
58766
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", { className: clsx(styles$4A.button, styles$4A.dark), children: /* @__PURE__ */ jsxRuntime.jsx(Wrapper, { title: "Dark" }) })
|
|
58887
58767
|
] }),
|
|
58888
58768
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid", children: [
|
|
58889
|
-
/* @__PURE__ */ jsxRuntime.jsx("button", { className:
|
|
58890
|
-
/* @__PURE__ */ jsxRuntime.jsx("button", { className:
|
|
58769
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", { className: clsx(styles$4A.button, styles$4A.secondary), children: /* @__PURE__ */ jsxRuntime.jsx(Wrapper, { title: "Secondary" }) }),
|
|
58770
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", { className: clsx(styles$4A.button, styles$4A.light), children: /* @__PURE__ */ jsxRuntime.jsx(Wrapper, { title: "Light" }) })
|
|
58891
58771
|
] })
|
|
58892
58772
|
] });
|
|
58893
58773
|
};
|
|
@@ -58898,7 +58778,7 @@ function Wrapper({ title }) {
|
|
|
58898
58778
|
() => Array.from({ length: 12 }, (_, i) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
58899
58779
|
"div",
|
|
58900
58780
|
{
|
|
58901
|
-
className:
|
|
58781
|
+
className: clsx(styles$4A.circle, styles$4A[`circle${i + 1}`])
|
|
58902
58782
|
},
|
|
58903
58783
|
i
|
|
58904
58784
|
)).reverse(),
|
|
@@ -64874,7 +64754,7 @@ const ConfettiButton = ({
|
|
|
64874
64754
|
"button",
|
|
64875
64755
|
{
|
|
64876
64756
|
type: "button",
|
|
64877
|
-
className:
|
|
64757
|
+
className: clsx(styles$4z.root, className),
|
|
64878
64758
|
onClick: handleClick,
|
|
64879
64759
|
...props,
|
|
64880
64760
|
children
|
|
@@ -65257,7 +65137,7 @@ const DDDButton = ({
|
|
|
65257
65137
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
65258
65138
|
"button",
|
|
65259
65139
|
{
|
|
65260
|
-
className:
|
|
65140
|
+
className: clsx(styles$4x.root, className),
|
|
65261
65141
|
type: "button",
|
|
65262
65142
|
onClick,
|
|
65263
65143
|
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4x.content, children })
|
|
@@ -65280,7 +65160,7 @@ const DockButton = ({
|
|
|
65280
65160
|
ref,
|
|
65281
65161
|
type: "button",
|
|
65282
65162
|
...rest,
|
|
65283
|
-
className:
|
|
65163
|
+
className: clsx(styles$4w.root, className),
|
|
65284
65164
|
children
|
|
65285
65165
|
}
|
|
65286
65166
|
);
|
|
@@ -65313,9 +65193,9 @@ const DoubleArrowButton = () => {
|
|
|
65313
65193
|
onClick: () => {
|
|
65314
65194
|
setBounceAlpha((prev) => !prev);
|
|
65315
65195
|
},
|
|
65316
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
65317
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65318
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65196
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$4v.cta, { [styles$4v.bounceAlpha]: bounceAlpha }), children: [
|
|
65197
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4v.arrow, styles$4v.next, styles$4v.first) }),
|
|
65198
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4v.arrow, styles$4v.next, styles$4v.second) })
|
|
65319
65199
|
] })
|
|
65320
65200
|
}
|
|
65321
65201
|
) });
|
|
@@ -65405,9 +65285,9 @@ const styles$4u = {
|
|
|
65405
65285
|
const DoubleArrowCollabButton = ({ onClick, children }) => {
|
|
65406
65286
|
return /* @__PURE__ */ jsxRuntime.jsxs("button", { type: "button", className: styles$4u.root, onClick, children: [
|
|
65407
65287
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4u.round, children: [
|
|
65408
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
65409
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65410
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65288
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$4u.cta), children: [
|
|
65289
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4u.arrow, styles$4u.next, styles$4u.first) }),
|
|
65290
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4u.arrow, styles$4u.next, styles$4u.second) })
|
|
65411
65291
|
] }),
|
|
65412
65292
|
/* @__PURE__ */ jsxRuntime.jsx(ImSpotify, { className: styles$4u.collab })
|
|
65413
65293
|
] }),
|
|
@@ -65453,7 +65333,7 @@ const DoubleStateButton = ({
|
|
|
65453
65333
|
ref,
|
|
65454
65334
|
type: "button",
|
|
65455
65335
|
...rest,
|
|
65456
|
-
className:
|
|
65336
|
+
className: clsx(styles$4t.root, className),
|
|
65457
65337
|
children: [
|
|
65458
65338
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4t.wrapper, children: [
|
|
65459
65339
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4t.first, children }),
|
|
@@ -65665,14 +65545,14 @@ const styles$4q = {
|
|
|
65665
65545
|
const ElectrifiedButton = () => {
|
|
65666
65546
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$4q.root, children: [
|
|
65667
65547
|
/* @__PURE__ */ jsxRuntime.jsxs("button", { className: styles$4q.electric, children: [
|
|
65668
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65669
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65670
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65671
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
65548
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4q.part, styles$4q.part1) }),
|
|
65549
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4q.part, styles$4q.part2) }),
|
|
65550
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4q.part, styles$4q.part3) }),
|
|
65551
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$4q.part, styles$4q.part4) }),
|
|
65672
65552
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
65673
65553
|
"svg",
|
|
65674
65554
|
{
|
|
65675
|
-
className:
|
|
65555
|
+
className: clsx(styles$4q.svg, styles$4q.yellow, styles$4q.yellow1),
|
|
65676
65556
|
width: "415",
|
|
65677
65557
|
height: "181",
|
|
65678
65558
|
viewBox: "0 0 415 181",
|
|
@@ -65692,7 +65572,7 @@ const ElectrifiedButton = () => {
|
|
|
65692
65572
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
65693
65573
|
"svg",
|
|
65694
65574
|
{
|
|
65695
|
-
className:
|
|
65575
|
+
className: clsx(styles$4q.svg, styles$4q.yellow, styles$4q.yellow2),
|
|
65696
65576
|
width: "461",
|
|
65697
65577
|
height: "227",
|
|
65698
65578
|
viewBox: "0 0 461 227",
|
|
@@ -65745,7 +65625,7 @@ const ElectrifiedButton = () => {
|
|
|
65745
65625
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
65746
65626
|
"svg",
|
|
65747
65627
|
{
|
|
65748
|
-
className:
|
|
65628
|
+
className: clsx(styles$4q.svg, styles$4q.blue, styles$4q.blue1),
|
|
65749
65629
|
width: "423",
|
|
65750
65630
|
height: "192",
|
|
65751
65631
|
viewBox: "0 0 423 192",
|
|
@@ -65765,7 +65645,7 @@ const ElectrifiedButton = () => {
|
|
|
65765
65645
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
65766
65646
|
"svg",
|
|
65767
65647
|
{
|
|
65768
|
-
className:
|
|
65648
|
+
className: clsx(styles$4q.svg, styles$4q.blue, styles$4q.blue2),
|
|
65769
65649
|
width: "470",
|
|
65770
65650
|
height: "240",
|
|
65771
65651
|
viewBox: "0 0 470 240",
|
|
@@ -65817,7 +65697,7 @@ const ElectrifiedButton = () => {
|
|
|
65817
65697
|
),
|
|
65818
65698
|
"Button"
|
|
65819
65699
|
] }),
|
|
65820
|
-
/* @__PURE__ */ jsxRuntime.jsx("button", { className:
|
|
65700
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", { className: clsx(styles$4q.electric, styles$4q.electric2), children: "Button" })
|
|
65821
65701
|
] });
|
|
65822
65702
|
};
|
|
65823
65703
|
|
|
@@ -66537,7 +66417,7 @@ const FailedDownloadButton = () => {
|
|
|
66537
66417
|
"button",
|
|
66538
66418
|
{
|
|
66539
66419
|
type: "button",
|
|
66540
|
-
className:
|
|
66420
|
+
className: clsx(styles$4o.btn, { [styles$4o.failed]: failed }),
|
|
66541
66421
|
onClick: fail,
|
|
66542
66422
|
disabled: failed,
|
|
66543
66423
|
children: [
|
|
@@ -66698,7 +66578,7 @@ const GlowButton = ({
|
|
|
66698
66578
|
ref,
|
|
66699
66579
|
type,
|
|
66700
66580
|
...rest,
|
|
66701
|
-
className:
|
|
66581
|
+
className: clsx(styles$4l.root, className),
|
|
66702
66582
|
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$4l.text, children })
|
|
66703
66583
|
}
|
|
66704
66584
|
);
|
|
@@ -66989,7 +66869,7 @@ const HeartFoldButton = () => {
|
|
|
66989
66869
|
"button",
|
|
66990
66870
|
{
|
|
66991
66871
|
type: "button",
|
|
66992
|
-
className:
|
|
66872
|
+
className: clsx(styles$4g.heart, { [styles$4g.active]: active }),
|
|
66993
66873
|
onClick: handleClick,
|
|
66994
66874
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4g.flip })
|
|
66995
66875
|
}
|
|
@@ -66998,7 +66878,7 @@ const HeartFoldButton = () => {
|
|
|
66998
66878
|
"button",
|
|
66999
66879
|
{
|
|
67000
66880
|
type: "button",
|
|
67001
|
-
className:
|
|
66881
|
+
className: clsx(styles$4g.button, { [styles$4g.active]: active }),
|
|
67002
66882
|
onClick: handleClick,
|
|
67003
66883
|
children: [
|
|
67004
66884
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$4g.flip }),
|
|
@@ -67058,7 +66938,7 @@ const HoldSubmitButton = () => {
|
|
|
67058
66938
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
67059
66939
|
"button",
|
|
67060
66940
|
{
|
|
67061
|
-
className:
|
|
66941
|
+
className: clsx(styles$4f.root, {
|
|
67062
66942
|
[styles$4f.process]: process,
|
|
67063
66943
|
[styles$4f.success]: success
|
|
67064
66944
|
}),
|
|
@@ -67211,7 +67091,7 @@ const HoverGlowButton = ({
|
|
|
67211
67091
|
{
|
|
67212
67092
|
ref,
|
|
67213
67093
|
type: "button",
|
|
67214
|
-
className:
|
|
67094
|
+
className: clsx(styles$4e.root, className),
|
|
67215
67095
|
onPointerMove: (e) => {
|
|
67216
67096
|
const el = ref.current;
|
|
67217
67097
|
if (!el) {
|
|
@@ -67273,7 +67153,7 @@ const Ios15Button = () => {
|
|
|
67273
67153
|
return Array.from({ length: count$1 }, (_, i) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
67274
67154
|
"div",
|
|
67275
67155
|
{
|
|
67276
|
-
className:
|
|
67156
|
+
className: clsx(styles$4d.circle, styles$4d[`circle-${i + 1}`])
|
|
67277
67157
|
},
|
|
67278
67158
|
i
|
|
67279
67159
|
));
|
|
@@ -67433,7 +67313,7 @@ const MorphingSubmitButton = () => {
|
|
|
67433
67313
|
"button",
|
|
67434
67314
|
{
|
|
67435
67315
|
type: "button",
|
|
67436
|
-
className:
|
|
67316
|
+
className: clsx(styles$4a.root, {
|
|
67437
67317
|
[styles$4a.running]: state === 1 /* RUNNING */,
|
|
67438
67318
|
[styles$4a.done]: state === 2 /* DONE */
|
|
67439
67319
|
}),
|
|
@@ -67750,7 +67630,7 @@ const MultiStageButton = () => {
|
|
|
67750
67630
|
{
|
|
67751
67631
|
id: "button",
|
|
67752
67632
|
ref: button,
|
|
67753
|
-
className:
|
|
67633
|
+
className: clsx(styles$49.button, {
|
|
67754
67634
|
[styles$49.ready]: ready,
|
|
67755
67635
|
[styles$49.complete]: complete,
|
|
67756
67636
|
[styles$49.loading]: loading
|
|
@@ -67758,7 +67638,7 @@ const MultiStageButton = () => {
|
|
|
67758
67638
|
onClick: clickButton,
|
|
67759
67639
|
disabled,
|
|
67760
67640
|
children: [
|
|
67761
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
67641
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$49.message, styles$49.submitMessage), children: [
|
|
67762
67642
|
/* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 13 12.2", children: [
|
|
67763
67643
|
/* @__PURE__ */ jsxRuntime.jsx("polyline", { stroke: "currentColor", points: "2,7.1 6.5,11.1 11,7.1 " }),
|
|
67764
67644
|
/* @__PURE__ */ jsxRuntime.jsx("line", { stroke: "currentColor", x1: "6.5", y1: "1.2", x2: "6.5", y2: "10.3" })
|
|
@@ -67776,7 +67656,7 @@ const MultiStageButton = () => {
|
|
|
67776
67656
|
char + index
|
|
67777
67657
|
)) })
|
|
67778
67658
|
] }),
|
|
67779
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
67659
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$49.message, styles$49.loadingMessage), children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 19 17", children: [
|
|
67780
67660
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { className: styles$49.loadingCircle, cx: "2.2", cy: "10", r: "1.6" }),
|
|
67781
67661
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { className: styles$49.loadingCircle, cx: "9.5", cy: "10", r: "1.6" }),
|
|
67782
67662
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -67789,7 +67669,7 @@ const MultiStageButton = () => {
|
|
|
67789
67669
|
}
|
|
67790
67670
|
)
|
|
67791
67671
|
] }) }),
|
|
67792
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
67672
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$49.message, styles$49.successMessage), children: [
|
|
67793
67673
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 13 11", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
67794
67674
|
"polyline",
|
|
67795
67675
|
{
|
|
@@ -67823,12 +67703,12 @@ const styles$48 = {
|
|
|
67823
67703
|
};
|
|
67824
67704
|
|
|
67825
67705
|
const NeonButton = ({ className = "", ...rest }) => {
|
|
67826
|
-
return /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", ...rest, className:
|
|
67706
|
+
return /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", ...rest, className: clsx(styles$48.root, className), children: "Neon" });
|
|
67827
67707
|
};
|
|
67828
67708
|
|
|
67829
|
-
const root$3P = "
|
|
67830
|
-
const i$6 = "
|
|
67831
|
-
const text$s = "
|
|
67709
|
+
const root$3P = "_root_v0k72_2";
|
|
67710
|
+
const i$6 = "_i_v0k72_22";
|
|
67711
|
+
const text$s = "_text_v0k72_482";
|
|
67832
67712
|
const styles$47 = {
|
|
67833
67713
|
root: root$3P,
|
|
67834
67714
|
i: i$6,
|
|
@@ -67866,7 +67746,7 @@ const OrbitalSubmitButton = () => {
|
|
|
67866
67746
|
"button",
|
|
67867
67747
|
{
|
|
67868
67748
|
type: "button",
|
|
67869
|
-
className:
|
|
67749
|
+
className: clsx(styles$46.root, { [styles$46.processing]: processing }),
|
|
67870
67750
|
onClick: () => {
|
|
67871
67751
|
setProcessing((prev) => !prev);
|
|
67872
67752
|
},
|
|
@@ -68043,7 +67923,7 @@ const PlayPauseButton = () => {
|
|
|
68043
67923
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
68044
67924
|
"svg",
|
|
68045
67925
|
{
|
|
68046
|
-
className:
|
|
67926
|
+
className: clsx(styles$44.svg, { [styles$44.isPlay]: isPlay }),
|
|
68047
67927
|
width: 16,
|
|
68048
67928
|
height: 16,
|
|
68049
67929
|
viewBox: "0 0 16 16",
|
|
@@ -68074,7 +67954,7 @@ const PlayPauseMusicButton = () => {
|
|
|
68074
67954
|
"button",
|
|
68075
67955
|
{
|
|
68076
67956
|
type: "button",
|
|
68077
|
-
className:
|
|
67957
|
+
className: clsx(styles$43.root, {
|
|
68078
67958
|
[styles$43.paused]: paused,
|
|
68079
67959
|
[styles$43.playing]: playing
|
|
68080
67960
|
}),
|
|
@@ -68115,8 +67995,8 @@ const styles$42 = {
|
|
|
68115
67995
|
|
|
68116
67996
|
const PositionHover = () => {
|
|
68117
67997
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$42.root, children: [
|
|
68118
|
-
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "#0", className:
|
|
68119
|
-
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "#0", className:
|
|
67998
|
+
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "#0", className: clsx(styles$42.selfAware, styles$42.button), children: "I'm a self-aware button" }),
|
|
67999
|
+
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "#0", className: clsx(styles$42.selfAware, styles$42.underline), children: "I'm a self-aware underline" })
|
|
68120
68000
|
] });
|
|
68121
68001
|
};
|
|
68122
68002
|
|
|
@@ -68216,7 +68096,7 @@ const PredictionButton = () => {
|
|
|
68216
68096
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
68217
68097
|
"button",
|
|
68218
68098
|
{
|
|
68219
|
-
className:
|
|
68099
|
+
className: clsx(styles$41.btn, {
|
|
68220
68100
|
[styles$41.inactive]: Boolean(prediction && show)
|
|
68221
68101
|
}),
|
|
68222
68102
|
onClick: () => {
|
|
@@ -68241,7 +68121,7 @@ const PredictionButton = () => {
|
|
|
68241
68121
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
68242
68122
|
"svg",
|
|
68243
68123
|
{
|
|
68244
|
-
className:
|
|
68124
|
+
className: clsx(styles$41.stars, {
|
|
68245
68125
|
[styles$41.rotate]: Boolean(prediction && !show)
|
|
68246
68126
|
}),
|
|
68247
68127
|
width: "960",
|
|
@@ -68336,7 +68216,7 @@ const ProgressButton = ({
|
|
|
68336
68216
|
"button",
|
|
68337
68217
|
{
|
|
68338
68218
|
type: "button",
|
|
68339
|
-
className:
|
|
68219
|
+
className: clsx(styles$40.root, className, { [styles$40.loading]: isLoading }),
|
|
68340
68220
|
onClick: (e) => {
|
|
68341
68221
|
onClick(e);
|
|
68342
68222
|
if (timeoutRef.current) {
|
|
@@ -68367,7 +68247,7 @@ const styles$3$ = {
|
|
|
68367
68247
|
};
|
|
68368
68248
|
|
|
68369
68249
|
const PsychedelicButton = ({ variant }) => {
|
|
68370
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3$.root, children: /* @__PURE__ */ jsxRuntime.jsx("button", { className:
|
|
68250
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3$.root, children: /* @__PURE__ */ jsxRuntime.jsx("button", { className: clsx(styles$3$.button, styles$3$[variant]), children: "hover me" }) });
|
|
68371
68251
|
};
|
|
68372
68252
|
|
|
68373
68253
|
const root$3G = "_root_qhbgz_1";
|
|
@@ -68455,24 +68335,24 @@ const RunningButton = () => {
|
|
|
68455
68335
|
const [active, setActive] = React.useState(false);
|
|
68456
68336
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3Y.root, children: [
|
|
68457
68337
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3Y.running, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3Y.outer, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3Y.body, children: [
|
|
68458
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68459
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68460
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68461
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68338
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.arm, styles$3Y.behind) }),
|
|
68339
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.arm, styles$3Y.front) }),
|
|
68340
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.leg, styles$3Y.behind) }),
|
|
68341
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.leg, styles$3Y.front) })
|
|
68462
68342
|
] }) }) }),
|
|
68463
68343
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
68464
68344
|
"button",
|
|
68465
68345
|
{
|
|
68466
|
-
className:
|
|
68346
|
+
className: clsx(styles$3Y.runningButton, { [styles$3Y.active]: active }),
|
|
68467
68347
|
onClick: () => setActive((prev) => !prev),
|
|
68468
68348
|
children: [
|
|
68469
68349
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$3Y.default, children: "Start" }),
|
|
68470
68350
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$3Y.active, children: "Tracking" }),
|
|
68471
68351
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3Y.running, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3Y.outer, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3Y.body, children: [
|
|
68472
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68473
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68474
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68475
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
68352
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.arm, styles$3Y.behind) }),
|
|
68353
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.arm, styles$3Y.front) }),
|
|
68354
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.leg, styles$3Y.behind) }),
|
|
68355
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3Y.leg, styles$3Y.front) })
|
|
68476
68356
|
] }) }) })
|
|
68477
68357
|
]
|
|
68478
68358
|
}
|
|
@@ -68764,7 +68644,7 @@ function Button({
|
|
|
68764
68644
|
{
|
|
68765
68645
|
onMouseEnter: () => setButtonFocus(true),
|
|
68766
68646
|
onMouseLeave: () => setButtonFocus(false),
|
|
68767
|
-
className:
|
|
68647
|
+
className: clsx(styles$3V.buttonContainer, {
|
|
68768
68648
|
[styles$3V.pressed]: buttonPressed
|
|
68769
68649
|
}),
|
|
68770
68650
|
children: [
|
|
@@ -68805,7 +68685,7 @@ function Button({
|
|
|
68805
68685
|
"video",
|
|
68806
68686
|
{
|
|
68807
68687
|
ref: surfaceReflectionRef,
|
|
68808
|
-
className:
|
|
68688
|
+
className: clsx(styles$3V.surfaceReflection, {
|
|
68809
68689
|
[styles$3V.pressed]: buttonPressed
|
|
68810
68690
|
})
|
|
68811
68691
|
}
|
|
@@ -68813,7 +68693,7 @@ function Button({
|
|
|
68813
68693
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
68814
68694
|
"div",
|
|
68815
68695
|
{
|
|
68816
|
-
className:
|
|
68696
|
+
className: clsx(styles$3V.button, { [styles$3V.pressed]: buttonPressed }),
|
|
68817
68697
|
onMouseDown: handleMouseDown,
|
|
68818
68698
|
onTouchStart: handleTouchStart,
|
|
68819
68699
|
onMouseUp: () => setButtonPressed(false),
|
|
@@ -68868,7 +68748,7 @@ const SkeuomorphicLikeButton = () => {
|
|
|
68868
68748
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
68869
68749
|
"button",
|
|
68870
68750
|
{
|
|
68871
|
-
className:
|
|
68751
|
+
className: clsx(styles$3U.root, {
|
|
68872
68752
|
[styles$3U.active]: active,
|
|
68873
68753
|
[styles$3U.bounce]: bounce
|
|
68874
68754
|
}),
|
|
@@ -68886,8 +68766,8 @@ const SkeuomorphicLikeButton = () => {
|
|
|
68886
68766
|
active && /* @__PURE__ */ jsxRuntime.jsx("span", { children: "d" })
|
|
68887
68767
|
] }),
|
|
68888
68768
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3U.numbers, children: [
|
|
68889
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
68890
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
68769
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$3U.item, styles$3U.current), children: "24" }),
|
|
68770
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$3U.item, styles$3U.next), children: "25" })
|
|
68891
68771
|
] })
|
|
68892
68772
|
]
|
|
68893
68773
|
}
|
|
@@ -68909,9 +68789,9 @@ const styles$3T = {
|
|
|
68909
68789
|
|
|
68910
68790
|
const SlidingButton = () => {
|
|
68911
68791
|
return /* @__PURE__ */ jsxRuntime.jsxs("button", { className: styles$3T.root, children: [
|
|
68912
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
68792
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$3T.icon, styles$3T.iconLogo) }),
|
|
68913
68793
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$3T.text, children: "Cool button" }),
|
|
68914
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
68794
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$3T.icon, styles$3T.iconArrow) })
|
|
68915
68795
|
] });
|
|
68916
68796
|
};
|
|
68917
68797
|
|
|
@@ -68952,7 +68832,7 @@ const SlidingStepper = () => {
|
|
|
68952
68832
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
68953
68833
|
"button",
|
|
68954
68834
|
{
|
|
68955
|
-
className:
|
|
68835
|
+
className: clsx(styles$3S.root, {
|
|
68956
68836
|
[styles$3S.moveLeft]: move === 1,
|
|
68957
68837
|
[styles$3S.moveRight]: move === -1
|
|
68958
68838
|
}),
|
|
@@ -69126,7 +69006,7 @@ const SparklyButton = () => {
|
|
|
69126
69006
|
"button",
|
|
69127
69007
|
{
|
|
69128
69008
|
ref,
|
|
69129
|
-
className:
|
|
69009
|
+
className: clsx(styles$3Q.button, { [styles$3Q.over]: isOver }),
|
|
69130
69010
|
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$3Q.content, children: "Sparkly Button" })
|
|
69131
69011
|
}
|
|
69132
69012
|
),
|
|
@@ -69151,7 +69031,7 @@ const styles$3P = {
|
|
|
69151
69031
|
};
|
|
69152
69032
|
|
|
69153
69033
|
const SquishButton = ({ children, className = "", ...rest }) => {
|
|
69154
|
-
return /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", ...rest, className:
|
|
69034
|
+
return /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", ...rest, className: clsx(styles$3P.root, className), children });
|
|
69155
69035
|
};
|
|
69156
69036
|
|
|
69157
69037
|
const root$3w = "_root_v4ko6_1";
|
|
@@ -69190,7 +69070,7 @@ const Fingerprint = ({ className = "" }) => {
|
|
|
69190
69070
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
69191
69071
|
"svg",
|
|
69192
69072
|
{
|
|
69193
|
-
className:
|
|
69073
|
+
className: clsx(styles$3N.root, className),
|
|
69194
69074
|
width: "34px",
|
|
69195
69075
|
height: "34px",
|
|
69196
69076
|
viewBox: "0 0 34 34",
|
|
@@ -69212,35 +69092,35 @@ const Fingerprint = ({ className = "" }) => {
|
|
|
69212
69092
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69213
69093
|
"path",
|
|
69214
69094
|
{
|
|
69215
|
-
className:
|
|
69095
|
+
className: clsx(styles$3N.a, { [styles$3N.active]: isActive }),
|
|
69216
69096
|
d: "M3.14414922,1.97419264 C3.14414922,1.97419264 5.30885997,0.506351808 9.06036082,0.506351808 C12.8118617,0.506351808 14.781903,1.97419264 14.781903,1.97419264"
|
|
69217
69097
|
}
|
|
69218
69098
|
),
|
|
69219
69099
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69220
69100
|
"path",
|
|
69221
69101
|
{
|
|
69222
|
-
className:
|
|
69102
|
+
className: clsx(styles$3N.b, { [styles$3N.active]: isActive }),
|
|
69223
69103
|
d: "M0.466210729,7.27628774 C0.466210729,7.27628774 3.19024811,2.75878123 9.09512428,2.96502806 C15.0000005,3.17127489 17.4745821,7.17202872 17.4745821,7.17202872"
|
|
69224
69104
|
}
|
|
69225
69105
|
),
|
|
69226
69106
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69227
69107
|
"path",
|
|
69228
69108
|
{
|
|
69229
|
-
className:
|
|
69109
|
+
className: clsx(styles$3N.c, { [styles$3N.active]: isActive }),
|
|
69230
69110
|
d: "M2,16.4687762 C2,16.4687762 1.12580828,14.9305411 1.27082278,11.9727304 C1.45871447,8.14036841 5.19587478,5.30175361 9.05270871,5.30175361 C12.9095426,5.30175361 15.0000001,7.82879552 15.8975926,9.33195218 C16.5919575,10.4947729 17.7597991,14.4361492 14.6226101,15.0206592 C12.41268,15.4324056 11.5911303,13.4911155 11.5911303,12.9859143 C11.5911303,11.9727302 11.1054172,10.2336826 9.05270848,10.2336826 C6.99999978,10.2336826 6.11384543,11.8665663 6.4593664,13.7955614 C6.6532895,14.8782069 7.59887942,18.3701197 12.0173963,19.5605638"
|
|
69231
69111
|
}
|
|
69232
69112
|
),
|
|
69233
69113
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69234
69114
|
"path",
|
|
69235
69115
|
{
|
|
69236
|
-
className:
|
|
69116
|
+
className: clsx(styles$3N.d, { [styles$3N.active]: isActive }),
|
|
69237
69117
|
d: "M7.0204614,19.6657197 C7.0204614,19.6657197 3.88328263,16.5690127 3.88328268,12.9603117 C3.88328274,9.35161068 6.59923746,7.80642537 9.0076008,7.80642554 C11.4159641,7.8064257 14.1798468,9.55747124 14.1798468,12.759562"
|
|
69238
69118
|
}
|
|
69239
69119
|
),
|
|
69240
69120
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69241
69121
|
"path",
|
|
69242
69122
|
{
|
|
69243
|
-
className:
|
|
69123
|
+
className: clsx(styles$3N.e, { [styles$3N.active]: isActive }),
|
|
69244
69124
|
d: "M8.95538742,12.6694189 C8.95538742,12.6694189 9.04883608,18.1288401 15.069217,17.3610597"
|
|
69245
69125
|
}
|
|
69246
69126
|
)
|
|
@@ -69254,7 +69134,7 @@ const Fingerprint = ({ className = "" }) => {
|
|
|
69254
69134
|
const SuccessLoader = ({ status }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
69255
69135
|
"div",
|
|
69256
69136
|
{
|
|
69257
|
-
className:
|
|
69137
|
+
className: clsx(styles$3O.root, {
|
|
69258
69138
|
[styles$3O.success]: status === "success",
|
|
69259
69139
|
[styles$3O.loading]: status === "loading",
|
|
69260
69140
|
[styles$3O.pending]: status === "pending"
|
|
@@ -69292,7 +69172,7 @@ const SuccessLoadingButton = ({
|
|
|
69292
69172
|
"button",
|
|
69293
69173
|
{
|
|
69294
69174
|
type: "button",
|
|
69295
|
-
className:
|
|
69175
|
+
className: clsx(styles$3M.root, className, {
|
|
69296
69176
|
[styles$3M.success]: status === "success"
|
|
69297
69177
|
}),
|
|
69298
69178
|
disabled,
|
|
@@ -69336,7 +69216,7 @@ const ThreadsLikeButton = () => {
|
|
|
69336
69216
|
"button",
|
|
69337
69217
|
{
|
|
69338
69218
|
type: "button",
|
|
69339
|
-
className:
|
|
69219
|
+
className: clsx(styles$3L.root, { [styles$3L.liked]: liked }),
|
|
69340
69220
|
onClick: () => setLiked((prev) => !prev),
|
|
69341
69221
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
69342
69222
|
"svg",
|
|
@@ -69390,7 +69270,7 @@ const ThumbsUpButton = () => {
|
|
|
69390
69270
|
"button",
|
|
69391
69271
|
{
|
|
69392
69272
|
type: "button",
|
|
69393
|
-
className:
|
|
69273
|
+
className: clsx(styles$3K.root, { [styles$3K.liked]: liked }),
|
|
69394
69274
|
onClick: (e) => {
|
|
69395
69275
|
const button = e.currentTarget;
|
|
69396
69276
|
setLiked((prev) => !prev);
|
|
@@ -69634,11 +69514,11 @@ const BrandCard = ({
|
|
|
69634
69514
|
className = "",
|
|
69635
69515
|
contentClassName = ""
|
|
69636
69516
|
}) => {
|
|
69637
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
69517
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$3F.root, className), children: [
|
|
69638
69518
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
69639
69519
|
"div",
|
|
69640
69520
|
{
|
|
69641
|
-
className:
|
|
69521
|
+
className: clsx(styles$3F.content, contentClassName),
|
|
69642
69522
|
style: {
|
|
69643
69523
|
"--hoverColor": hoverColor
|
|
69644
69524
|
},
|
|
@@ -69692,7 +69572,7 @@ const CaptionCard = ({
|
|
|
69692
69572
|
description = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores,\n blanditiis?",
|
|
69693
69573
|
className = ""
|
|
69694
69574
|
}) => {
|
|
69695
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("button", { type: "button", className:
|
|
69575
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("button", { type: "button", className: clsx(styles$3D.root, className), children: [
|
|
69696
69576
|
/* @__PURE__ */ jsxRuntime.jsx("figure", { className: styles$3D.imageWrapper, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
69697
69577
|
"img",
|
|
69698
69578
|
{
|
|
@@ -69833,7 +69713,7 @@ const CardGlow = () => {
|
|
|
69833
69713
|
strokeWidth: 1.5,
|
|
69834
69714
|
stroke: "none",
|
|
69835
69715
|
"data-slot": "icon",
|
|
69836
|
-
className:
|
|
69716
|
+
className: clsx(styles$3C.w6, styles$3C.h6),
|
|
69837
69717
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
69838
69718
|
"path",
|
|
69839
69719
|
{
|
|
@@ -69853,7 +69733,7 @@ const CardGlow = () => {
|
|
|
69853
69733
|
strokeWidth: 1.5,
|
|
69854
69734
|
stroke: "none",
|
|
69855
69735
|
"data-slot": "icon",
|
|
69856
|
-
className:
|
|
69736
|
+
className: clsx(styles$3C.w6, styles$3C.h6),
|
|
69857
69737
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
69858
69738
|
"path",
|
|
69859
69739
|
{
|
|
@@ -69873,7 +69753,7 @@ const CardGlow = () => {
|
|
|
69873
69753
|
strokeWidth: 1.5,
|
|
69874
69754
|
stroke: "none",
|
|
69875
69755
|
"data-slot": "icon",
|
|
69876
|
-
className:
|
|
69756
|
+
className: clsx(styles$3C.w6, styles$3C.h6),
|
|
69877
69757
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
69878
69758
|
"path",
|
|
69879
69759
|
{
|
|
@@ -69893,7 +69773,7 @@ const CardGlow = () => {
|
|
|
69893
69773
|
strokeWidth: 1.5,
|
|
69894
69774
|
stroke: "none",
|
|
69895
69775
|
"data-slot": "icon",
|
|
69896
|
-
className:
|
|
69776
|
+
className: clsx(styles$3C.w6, styles$3C.h6),
|
|
69897
69777
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
69898
69778
|
"path",
|
|
69899
69779
|
{
|
|
@@ -69937,7 +69817,7 @@ const CardTile = ({
|
|
|
69937
69817
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
69938
69818
|
"button",
|
|
69939
69819
|
{
|
|
69940
|
-
className:
|
|
69820
|
+
className: clsx(styles$3B.root, className),
|
|
69941
69821
|
type: "button",
|
|
69942
69822
|
onClick,
|
|
69943
69823
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3B.wrapper, children })
|
|
@@ -69998,7 +69878,7 @@ const ChequeredCard = () => {
|
|
|
69998
69878
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
69999
69879
|
"div",
|
|
70000
69880
|
{
|
|
70001
|
-
className:
|
|
69881
|
+
className: clsx(styles$3A.root, { [styles$3A.light]: light }),
|
|
70002
69882
|
onClick: () => {
|
|
70003
69883
|
setLight((prev) => !prev);
|
|
70004
69884
|
},
|
|
@@ -70021,20 +69901,20 @@ const ChequeredCard = () => {
|
|
|
70021
69901
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3A.shine }),
|
|
70022
69902
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3A.background, children: [
|
|
70023
69903
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3A.tiles, children: [
|
|
70024
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70025
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70026
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70027
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70028
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70029
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70030
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70031
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70032
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70033
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
69904
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile1) }),
|
|
69905
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile2) }),
|
|
69906
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile3) }),
|
|
69907
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile4) }),
|
|
69908
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile5) }),
|
|
69909
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile6) }),
|
|
69910
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile7) }),
|
|
69911
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile8) }),
|
|
69912
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile9) }),
|
|
69913
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.tile, styles$3A.tile10) })
|
|
70034
69914
|
] }),
|
|
70035
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70036
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
70037
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
69915
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.line, styles$3A.line1) }),
|
|
69916
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.line, styles$3A.line2) }),
|
|
69917
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3A.line, styles$3A.line3) })
|
|
70038
69918
|
] })
|
|
70039
69919
|
]
|
|
70040
69920
|
}
|
|
@@ -70069,7 +69949,7 @@ const styles$3y = {
|
|
|
70069
69949
|
image: image$j
|
|
70070
69950
|
};
|
|
70071
69951
|
|
|
70072
|
-
const EnvelopeTile = ({ className = "", header, children }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
69952
|
+
const EnvelopeTile = ({ className = "", header, children }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$3y.root, className), children: [
|
|
70073
69953
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3y.corner, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3y.url, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
70074
69954
|
"img",
|
|
70075
69955
|
{
|
|
@@ -70121,7 +70001,7 @@ const GlowingTile = () => {
|
|
|
70121
70001
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70122
70002
|
"button",
|
|
70123
70003
|
{
|
|
70124
|
-
className:
|
|
70004
|
+
className: clsx(styles$3x.button, styles$3x.minus),
|
|
70125
70005
|
onClick: () => setSpeed((state) => state - 1),
|
|
70126
70006
|
children: "-"
|
|
70127
70007
|
}
|
|
@@ -70130,7 +70010,7 @@ const GlowingTile = () => {
|
|
|
70130
70010
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70131
70011
|
"button",
|
|
70132
70012
|
{
|
|
70133
|
-
className:
|
|
70013
|
+
className: clsx(styles$3x.button, styles$3x.plus),
|
|
70134
70014
|
onClick: () => setSpeed((state) => state + 1),
|
|
70135
70015
|
children: "+"
|
|
70136
70016
|
}
|
|
@@ -70138,7 +70018,7 @@ const GlowingTile = () => {
|
|
|
70138
70018
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70139
70019
|
"button",
|
|
70140
70020
|
{
|
|
70141
|
-
className:
|
|
70021
|
+
className: clsx(styles$3x.button, styles$3x.reset),
|
|
70142
70022
|
onClick: () => setSpeed(0),
|
|
70143
70023
|
children: "reset"
|
|
70144
70024
|
}
|
|
@@ -70206,7 +70086,7 @@ const HoverTile = ({ color, global, children }) => {
|
|
|
70206
70086
|
}
|
|
70207
70087
|
ref.current.style.setProperty("--color", color);
|
|
70208
70088
|
}, [color]);
|
|
70209
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, className:
|
|
70089
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, className: clsx(styles$3v.root, { [styles$3v.global]: global }), children: [
|
|
70210
70090
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3v.border }),
|
|
70211
70091
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3v.content, children })
|
|
70212
70092
|
] });
|
|
@@ -70370,7 +70250,7 @@ const ProductTile = ({
|
|
|
70370
70250
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
70371
70251
|
"button",
|
|
70372
70252
|
{
|
|
70373
|
-
className:
|
|
70253
|
+
className: clsx(styles$3r.root, className),
|
|
70374
70254
|
type: "button",
|
|
70375
70255
|
onClick,
|
|
70376
70256
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3r.content, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3r.icon, children }) })
|
|
@@ -70431,7 +70311,7 @@ const ProfileCard = () => {
|
|
|
70431
70311
|
const [state, setState] = React.useState(
|
|
70432
70312
|
"about"
|
|
70433
70313
|
);
|
|
70434
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
70314
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$3q.root, { [styles$3q.isActive]: isActive }), children: [
|
|
70435
70315
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3q.header, children: [
|
|
70436
70316
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70437
70317
|
"div",
|
|
@@ -70457,7 +70337,7 @@ const ProfileCard = () => {
|
|
|
70457
70337
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
70458
70338
|
"div",
|
|
70459
70339
|
{
|
|
70460
|
-
className:
|
|
70340
|
+
className: clsx(styles$3q.section, {
|
|
70461
70341
|
[styles$3q.isActive]: state === "about"
|
|
70462
70342
|
}),
|
|
70463
70343
|
id: "about",
|
|
@@ -70482,7 +70362,7 @@ const ProfileCard = () => {
|
|
|
70482
70362
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70483
70363
|
"div",
|
|
70484
70364
|
{
|
|
70485
|
-
className:
|
|
70365
|
+
className: clsx(styles$3q.section, {
|
|
70486
70366
|
[styles$3q.isActive]: state === "experience"
|
|
70487
70367
|
}),
|
|
70488
70368
|
id: "experience",
|
|
@@ -70524,7 +70404,7 @@ const ProfileCard = () => {
|
|
|
70524
70404
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70525
70405
|
"div",
|
|
70526
70406
|
{
|
|
70527
|
-
className:
|
|
70407
|
+
className: clsx(styles$3q.section, {
|
|
70528
70408
|
[styles$3q.isActive]: state === "contact"
|
|
70529
70409
|
}),
|
|
70530
70410
|
id: "contact",
|
|
@@ -70594,7 +70474,7 @@ const ProfileCard = () => {
|
|
|
70594
70474
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70595
70475
|
"button",
|
|
70596
70476
|
{
|
|
70597
|
-
className:
|
|
70477
|
+
className: clsx(styles$3q.button, {
|
|
70598
70478
|
[styles$3q.isActive]: state === "about"
|
|
70599
70479
|
}),
|
|
70600
70480
|
onClick: () => {
|
|
@@ -70607,7 +70487,7 @@ const ProfileCard = () => {
|
|
|
70607
70487
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70608
70488
|
"button",
|
|
70609
70489
|
{
|
|
70610
|
-
className:
|
|
70490
|
+
className: clsx(styles$3q.button, {
|
|
70611
70491
|
[styles$3q.isActive]: state === "experience"
|
|
70612
70492
|
}),
|
|
70613
70493
|
onClick: () => {
|
|
@@ -70620,7 +70500,7 @@ const ProfileCard = () => {
|
|
|
70620
70500
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70621
70501
|
"button",
|
|
70622
70502
|
{
|
|
70623
|
-
className:
|
|
70503
|
+
className: clsx(styles$3q.button, {
|
|
70624
70504
|
[styles$3q.isActive]: state === "contact"
|
|
70625
70505
|
}),
|
|
70626
70506
|
onClick: () => {
|
|
@@ -70660,7 +70540,7 @@ const ShineCard = ({ children, className, style, ...props }) => {
|
|
|
70660
70540
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
70661
70541
|
"div",
|
|
70662
70542
|
{
|
|
70663
|
-
className:
|
|
70543
|
+
className: clsx(styles$3o.shineCard, className),
|
|
70664
70544
|
style,
|
|
70665
70545
|
...props,
|
|
70666
70546
|
children
|
|
@@ -70859,7 +70739,7 @@ const CardCarouselItem = ({
|
|
|
70859
70739
|
hrefTitle,
|
|
70860
70740
|
active
|
|
70861
70741
|
}) => {
|
|
70862
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
70742
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$3l.item, { [styles$3l.active]: active }), children: [
|
|
70863
70743
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
70864
70744
|
"div",
|
|
70865
70745
|
{
|
|
@@ -71114,7 +70994,7 @@ const FullScreenImageCarousel = () => {
|
|
|
71114
70994
|
"button",
|
|
71115
70995
|
{
|
|
71116
70996
|
type: "button",
|
|
71117
|
-
className:
|
|
70997
|
+
className: clsx(styles$3j.btn, styles$3j.prev),
|
|
71118
70998
|
onClick: handlePrevClick,
|
|
71119
70999
|
"aria-controls": "fullscreen-image-carousel-slides",
|
|
71120
71000
|
"aria-label": "Previous slide",
|
|
@@ -71125,7 +71005,7 @@ const FullScreenImageCarousel = () => {
|
|
|
71125
71005
|
"button",
|
|
71126
71006
|
{
|
|
71127
71007
|
type: "button",
|
|
71128
|
-
className:
|
|
71008
|
+
className: clsx(styles$3j.btn, styles$3j.next),
|
|
71129
71009
|
onClick: throttledHandleNextClick,
|
|
71130
71010
|
"aria-controls": "fullscreen-image-carousel-slides",
|
|
71131
71011
|
"aria-label": "Next slide",
|
|
@@ -71287,7 +71167,7 @@ const GalleryReverseScroll = () => {
|
|
|
71287
71167
|
return { firstColumn: first, secondColumn: second, thirdColumn: third };
|
|
71288
71168
|
}, []);
|
|
71289
71169
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3i.root, children: [
|
|
71290
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
71170
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3i.column, styles$3i.reverse), children: firstColumn.map((record, i) => /* @__PURE__ */ jsxRuntime.jsxs("figure", { className: styles$3i.columnItem, children: [
|
|
71291
71171
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3i.itemImgWrap, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: record.url, alt: "", height: "", width: "" }) }),
|
|
71292
71172
|
/* @__PURE__ */ jsxRuntime.jsxs("figcaption", { className: styles$3i.itemCaption, children: [
|
|
71293
71173
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: record.description }),
|
|
@@ -71303,7 +71183,7 @@ const GalleryReverseScroll = () => {
|
|
|
71303
71183
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: record.date })
|
|
71304
71184
|
] })
|
|
71305
71185
|
] }, i)) }),
|
|
71306
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
71186
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3i.column, styles$3i.reverse), children: thirdColumn.map((record, i) => /* @__PURE__ */ jsxRuntime.jsxs("figure", { className: styles$3i.columnItem, children: [
|
|
71307
71187
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3i.itemImgWrap, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: record.url, alt: "", height: "", width: "" }) }),
|
|
71308
71188
|
/* @__PURE__ */ jsxRuntime.jsxs("figcaption", { className: styles$3i.itemCaption, children: [
|
|
71309
71189
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: record.description }),
|
|
@@ -71718,7 +71598,7 @@ const Scroller = ({
|
|
|
71718
71598
|
}
|
|
71719
71599
|
};
|
|
71720
71600
|
}, [handleScroll, withArrows]);
|
|
71721
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3e.root, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3e.carousel, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
71601
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3e.root, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$3e.carousel, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$3e.wrapper, { [styles$3e.hasArrow]: hasArrows }), children: [
|
|
71722
71602
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3e.header, children: [
|
|
71723
71603
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$3e.heading, children: [
|
|
71724
71604
|
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: styles$3e.headline, children: headline }),
|
|
@@ -71729,7 +71609,7 @@ const Scroller = ({
|
|
|
71729
71609
|
"button",
|
|
71730
71610
|
{
|
|
71731
71611
|
type: "button",
|
|
71732
|
-
className:
|
|
71612
|
+
className: clsx(styles$3e.arrow, styles$3e.arrowPrev, {
|
|
71733
71613
|
[styles$3e.disabled]: isPrevDisabled
|
|
71734
71614
|
}),
|
|
71735
71615
|
disabled: isPrevDisabled,
|
|
@@ -71752,7 +71632,7 @@ const Scroller = ({
|
|
|
71752
71632
|
"button",
|
|
71753
71633
|
{
|
|
71754
71634
|
type: "button",
|
|
71755
|
-
className:
|
|
71635
|
+
className: clsx(styles$3e.arrow, styles$3e.arrowNext, {
|
|
71756
71636
|
[styles$3e.disabled]: isNextDisabled
|
|
71757
71637
|
}),
|
|
71758
71638
|
disabled: isNextDisabled,
|
|
@@ -71950,10 +71830,10 @@ const Checkbox = ({
|
|
|
71950
71830
|
{
|
|
71951
71831
|
ref,
|
|
71952
71832
|
role: "presentation",
|
|
71953
|
-
className:
|
|
71833
|
+
className: clsx(styles$3b.root, rootClassName),
|
|
71954
71834
|
children: [
|
|
71955
|
-
/* @__PURE__ */ jsxRuntime.jsx("input", { className:
|
|
71956
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { role: "presentation", className:
|
|
71835
|
+
/* @__PURE__ */ jsxRuntime.jsx("input", { className: clsx(styles$3b.realbox, inputClassName), type: "checkbox" }),
|
|
71836
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { role: "presentation", className: clsx(styles$3b.fauxbox, className) })
|
|
71957
71837
|
]
|
|
71958
71838
|
}
|
|
71959
71839
|
);
|
|
@@ -72131,7 +72011,7 @@ const StrikethroughCheckbox = ({
|
|
|
72131
72011
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72132
72012
|
"input",
|
|
72133
72013
|
{
|
|
72134
|
-
className:
|
|
72014
|
+
className: clsx(styles$39.input, { [styles$39.pristine]: pristine }),
|
|
72135
72015
|
type: "checkbox",
|
|
72136
72016
|
name: typeof children === "string" ? children : void 0,
|
|
72137
72017
|
defaultChecked,
|
|
@@ -72176,7 +72056,7 @@ const Chips = () => {
|
|
|
72176
72056
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$38.root, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$38.wrapper, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
72177
72057
|
"div",
|
|
72178
72058
|
{
|
|
72179
|
-
className:
|
|
72059
|
+
className: clsx(styles$38.chips, styles$38.chipsInitial, styles$38.inputField),
|
|
72180
72060
|
children: [
|
|
72181
72061
|
chips.map((chip, i) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$38.chip, children: [
|
|
72182
72062
|
chip,
|
|
@@ -72391,6 +72271,41 @@ function translateY(distance) {
|
|
|
72391
72271
|
|
|
72392
72272
|
var e$2=function(t){return "number"==typeof t},i$5=function(t){return "function"==typeof t},n=function(t){return "[object Object]"===Object.prototype.toString.call(t)},r=function(t){return Array.prototype.slice.apply(t)},s$1=function(t){var e=t.reduce(function(t,e){return t[e]=(t[e]||0)+1,t},{});return Object.keys(e).filter(function(t){return e[t]>1})};function a$2(t){return [].slice.call(arguments,1).forEach(function(e){if(e)for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);}),t}var o,l=function(t,e,i){return t+(e-t)*i},p={__proto__:null,isNumber:e$2,isFunction:i$5,isObject:n,toArray:r,getDuplicateValsAsStrings:s$1,assign:a$2,tweenProp:l},c$2="data-flip-id",u$2="data-inverse-flip-id",d$2="data-portal-key",f$3="data-exit-container",h$1={__proto__:null,DATA_FLIP_ID:c$2,DATA_INVERSE_FLIP_ID:u$2,DATA_FLIP_CONFIG:"data-flip-config",DATA_PORTAL_KEY:d$2},g$1={noWobble:{stiffness:200,damping:26},gentle:{stiffness:120,damping:14},veryGentle:{stiffness:130,damping:17},wobbly:{stiffness:180,damping:12},stiff:{stiffness:260,damping:26}},m$1=function(t){return n(t)?t:Object.keys(g$1).indexOf(t)>-1?g$1[t]:{}};"undefined"!=typeof window&&(o=window.requestAnimationFrame);var v$1=o=o||function(t){window.setTimeout(t,1e3/60);},y$1=Date.now(),_="object"==typeof performance&&"function"==typeof performance.now?function(){return performance.now()}:function(){return Date.now()-y$1};function S(t,e){var i=t.indexOf(e);-1!==i&&t.splice(i,1);}var E$1=/*#__PURE__*/function(){function t(){}return t.prototype.run=function(){var t=this;v$1(function(){t.springSystem.loop(_());});},t}(),A$1=function(){this.position=0,this.velocity=0;},C=0,b$1=.001,I=/*#__PURE__*/function(){function t(t){this._id="s"+C++,this._springSystem=t,this.listeners=[],this._startValue=0,this._currentState=new A$1,this._displacementFromRestThreshold=.001,this._endValue=0,this._overshootClampingEnabled=false,this._previousState=new A$1,this._restSpeedThreshold=.001,this._tempState=new A$1,this._timeAccumulator=0,this._wasAtRest=true,this._cachedSpringConfig={};}var e=t.prototype;return e.getId=function(){return this._id},e.destroy=function(){this.listeners=[],this._springSystem.deregisterSpring(this);},e.setSpringConfig=function(t){return this._springConfig=t,this},e.getCurrentValue=function(){return this._currentState.position},e.getDisplacementDistanceForState=function(t){return Math.abs(this._endValue-t.position)},e.setEndValue=function(t){if(t===this._endValue)return this;if(this.prevEndValue=t,this._endValue===t&&this.isAtRest())return this;this._startValue=this.getCurrentValue(),this._endValue=t,this._springSystem.activateSpring(this.getId());for(var e=0,i=this.listeners.length;e<i;e++){var n=this.listeners[e].onSpringEndStateChange;n&&n(this);}return this},e.setVelocity=function(t){return t===this._currentState.velocity||(this._currentState.velocity=t,this._springSystem.activateSpring(this.getId())),this},e.setCurrentValue=function(t){this._startValue=t,this._currentState.position=t;for(var e=0,i=this.listeners.length;e<i;e++){var n=this.listeners[e];n.onSpringUpdate&&n.onSpringUpdate(this);}return this},e.setAtRest=function(){return this._endValue=this._currentState.position,this._tempState.position=this._currentState.position,this._currentState.velocity=0,this},e.setOvershootClampingEnabled=function(t){return this._overshootClampingEnabled=t,this},e.isOvershooting=function(){var t=this._startValue,e=this._endValue;return this._springConfig.tension>0&&(t<e&&this.getCurrentValue()>e||t>e&&this.getCurrentValue()<e)},e.advance=function(t,e){var i=this.isAtRest();if(!i||!this._wasAtRest){var n=e;e>.064&&(n=.064),this._timeAccumulator+=n;for(var r,s,a,o,l,p,c=this._springConfig.tension,u=this._springConfig.friction,d=this._currentState.position,f=this._currentState.velocity,h=this._tempState.position,g=this._tempState.velocity;this._timeAccumulator>=b$1;)this._timeAccumulator-=b$1,this._timeAccumulator<b$1&&(this._previousState.position=d,this._previousState.velocity=f),s=c*(this._endValue-h)-u*f,o=c*(this._endValue-(h=d+(r=f)*b$1*.5))-u*(g=f+s*b$1*.5),p=c*(this._endValue-(h=d+(a=g)*b$1*.5))-u*(g=f+o*b$1*.5),h=d+(l=g)*b$1,d+=1/6*(r+2*(a+l)+(g=f+p*b$1))*b$1,f+=1/6*(s+2*(o+p)+(c*(this._endValue-h)-u*g))*b$1;this._tempState.position=h,this._tempState.velocity=g,this._currentState.position=d,this._currentState.velocity=f,this._timeAccumulator>0&&this._interpolate(this._timeAccumulator/b$1),(this.isAtRest()||this._overshootClampingEnabled&&this.isOvershooting())&&(this._springConfig.tension>0?(this._startValue=this._endValue,this._currentState.position=this._endValue):(this._endValue=this._currentState.position,this._startValue=this._endValue),this.setVelocity(0),i=true);var m=false;this._wasAtRest&&(this._wasAtRest=false,m=true);var v=false;i&&(this._wasAtRest=true,v=true),this.notifyPositionUpdated(m,v);}},e.notifyPositionUpdated=function(t,e){var i=this;this.listeners.filter(Boolean).forEach(function(n){t&&n.onSpringActivate&&!i._onActivateCalled&&(n.onSpringActivate(i),i._onActivateCalled=true),n.onSpringUpdate&&n.onSpringUpdate(i),e&&n.onSpringAtRest&&n.onSpringAtRest(i);});},e.systemShouldAdvance=function(){return !this.isAtRest()||!this.wasAtRest()},e.wasAtRest=function(){return this._wasAtRest},e.isAtRest=function(){return Math.abs(this._currentState.velocity)<this._restSpeedThreshold&&(this.getDisplacementDistanceForState(this._currentState)<=this._displacementFromRestThreshold||0===this._springConfig.tension)},e._interpolate=function(t){this._currentState.position=this._currentState.position*t+this._previousState.position*(1-t),this._currentState.velocity=this._currentState.velocity*t+this._previousState.velocity*(1-t);},e.addListener=function(t){return this.listeners.push(t),this},e.addOneTimeListener=function(t){var e=this;return Object.keys(t).forEach(function(i){var n;t[i]=(n=t[i],function(){n.apply(void 0,[].slice.call(arguments)),e.removeListener(t);});}),this.listeners.push(t),this},e.removeListener=function(t){return S(this.listeners,t),this},t}(),w=/*#__PURE__*/function(){function t(t){this.looper=t||new E$1,this.looper.springSystem=this,this.listeners=[],this._activeSprings=[],this._idleSpringIndices=[],this._isIdle=true,this._lastTimeMillis=-1,this._springRegistry={};}var e=t.prototype;return e.createSpring=function(t,e){return this.createSpringWithConfig({tension:t,friction:e})},e.createSpringWithConfig=function(t){var e=new I(this);return this.registerSpring(e),e.setSpringConfig(t),e},e.getIsIdle=function(){return this._isIdle},e.registerSpring=function(t){this._springRegistry[t.getId()]=t;},e.deregisterSpring=function(t){S(this._activeSprings,t),delete this._springRegistry[t.getId()];},e.advance=function(t,e){for(var i=this;this._idleSpringIndices.length>0;)this._idleSpringIndices.pop();for(this._activeSprings.filter(Boolean).forEach(function(n){n.systemShouldAdvance()?n.advance(t/1e3,e/1e3):i._idleSpringIndices.push(i._activeSprings.indexOf(n));});this._idleSpringIndices.length>0;){var n=this._idleSpringIndices.pop();n>=0&&this._activeSprings.splice(n,1);}},e.loop=function(t){var e;-1===this._lastTimeMillis&&(this._lastTimeMillis=t-1);var i=t-this._lastTimeMillis;this._lastTimeMillis=t;var n=0,r=this.listeners.length;for(n=0;n<r;n++)(e=this.listeners[n]).onBeforeIntegrate&&e.onBeforeIntegrate(this);for(this.advance(t,i),0===this._activeSprings.length&&(this._isIdle=true,this._lastTimeMillis=-1),n=0;n<r;n++)(e=this.listeners[n]).onAfterIntegrate&&e.onAfterIntegrate(this);this._isIdle||this.looper.run();},e.activateSpring=function(t){var e=this._springRegistry[t];-1===this._activeSprings.indexOf(e)&&this._activeSprings.push(e),this.getIsIdle()&&(this._isIdle=false,this.looper.run());},t}(),O=new w,x=function(t){var e=t.springConfig,i=e.overshootClamping,n=t.getOnUpdateFunc,r=t.onAnimationEnd,s=t.onSpringActivate,a=O.createSpring(e.stiffness,e.damping);a.setOvershootClampingEnabled(!!i);var o={onSpringActivate:s,onSpringAtRest:function(){a.destroy(),r();},onSpringUpdate:n({spring:a,onAnimationEnd:r})};return a.addListener(o),a},U$1=function(t){var e=x(t);return e.setEndValue(1),e},V$2=function(t,e){if(void 0===e&&(e={}),t&&t.length){e.reverse&&t.reverse();var i,n="number"!=typeof(i=e.speed)?1.1:1+Math.min(Math.max(5*i,0),5),r=1/Math.max(Math.min(t.length,100),10),s=t.map(function(t,e){var i=t.getOnUpdateFunc;return t.getOnUpdateFunc=function(t){var a=i(t);return function(t){var i=t.getCurrentValue();(i=i<.01?0:i>.99?1:i)>=r&&s[e+1]&&s[e+1](Math.max(Math.min(i*n,1),0)),a(t);}},t}).map(function(t){var e=x(t);if(e)return e.setEndValue.bind(e)}).filter(Boolean);s[0]&&s[0](1);}},F$1=function(t){return [0,1,4,5,12,13].map(function(e){return t[e]})},P=function(t){return t.top<window.innerHeight&&t.bottom>0&&t.left<window.innerWidth&&t.right>0};function D(t){return JSON.parse(t.dataset.flipConfig||"{}")}var R=function(t,e){var i;return a$2(t,((i={})[e[0]]=e[1],i))},T$1=function(t,e){return r(e?document.querySelectorAll("["+d$2+'="'+e+'"]'):t.querySelectorAll("["+c$2+"]"))},M=function(t){return t.map(function(t){return [t,t.getBoundingClientRect()]})},L$1=function(n){var o=n.cachedOrderedFlipIds,p=void 0===o?[]:o,f=n.inProgressAnimations,h=void 0===f?{}:f,v=n.flippedElementPositionsBeforeUpdate,y=void 0===v?{}:v,_=n.flipCallbacks,S=void 0===_?{}:_,E=n.containerEl,A=n.applyTransformOrigin,C=n.spring,b=n.debug,I=n.portalKey,w=n.staggerConfig,O=void 0===w?{}:w,x=n.decisionData,j=void 0===x?{}:x,B=n.handleEnterUpdateDelete,N=n.onComplete,L=n.onStart;if(!window.matchMedia("(prefers-reduced-motion: reduce)").matches){var q,X=M(T$1((q={element:E,portalKey:I}).element,q.portalKey)).map(function(t){var e=t[0],i=t[1],n=window.getComputedStyle(e);return [e.dataset.flipId,{element:e,rect:i,opacity:parseFloat(n.opacity),transform:n.transform}]}).reduce(R,{}),Y=function(t){var e=t.containerEl,i=t.portalKey;return i?function(t){return function(e){return r(document.querySelectorAll("["+d$2+'="'+t+'"]'+e))}}(i):e?function(t){var e=Math.random().toFixed(5);return t.dataset.flipperId=e,function(i){return r(t.querySelectorAll('[data-flipper-id="'+e+'"] '+i))}}(e):function(){return []}}({containerEl:E,portalKey:I}),W=function(t){return function(e){return t("["+c$2+'="'+e+'"]')[0]}}(Y),K=function(t){return y[t]&&X[t]},H=Object.keys(y).concat(Object.keys(X)).filter(function(t){return !K(t)}),J={flipCallbacks:S,getElement:W,flippedElementPositionsBeforeUpdate:y,flippedElementPositionsAfterUpdate:X,inProgressAnimations:h,decisionData:j},z=function(t){var e,i=t.unflippedIds,n=t.flipCallbacks,r=t.getElement,s=t.flippedElementPositionsBeforeUpdate,a=t.flippedElementPositionsAfterUpdate,o=t.inProgressAnimations,l=t.decisionData,p=i.filter(function(t){return a[t]}).filter(function(t){return n[t]&&n[t].onAppear}),c=i.filter(function(t){return s[t]&&n[t]&&n[t].onExit}),u=new Promise(function(t){e=t;}),d=[],f=0,h=c.map(function(t,i){var r=s[t].domDataForExitAnimations,a=r.element,p=r.parent,c=r.childPosition,u=c.top,h=c.left,g=c.width,m=c.height;"static"===getComputedStyle(p).position&&(p.style.position="relative"),a.style.transform="matrix(1, 0, 0, 1, 0, 0)",a.style.position="absolute",a.style.top=u+"px",a.style.left=h+"px",a.style.height=m+"px",a.style.width=g+"px";var v=d.filter(function(t){return t[0]===p})[0];v||(v=[p,document.createDocumentFragment()],d.push(v)),v[1].appendChild(a),f+=1;var y=function(){try{p.removeChild(a);}catch(t){}finally{0==(f-=1)&&e();}};return o[t]={stop:y},function(){return n[t].onExit(a,i,y,l)}});return d.forEach(function(t){t[0].appendChild(t[1]);}),h.length||e(),{hideEnteringElements:function(){p.forEach(function(t){var e=r(t);e&&(e.style.opacity="0");});},animateEnteringElements:function(){p.forEach(function(t,e){var i=r(t);i&&n[t].onAppear(i,e,l);});},animateExitingElements:function(){return h.forEach(function(t){return t()}),u}}}(a$2({},J,{unflippedIds:H})),G=z.hideEnteringElements,Q=z.animateEnteringElements,Z=z.animateExitingElements,$=a$2({},J,{containerEl:E,flippedIds:p.filter(K),applyTransformOrigin:A,spring:C,debug:b,staggerConfig:O,scopedSelector:Y,onComplete:N});L&&L(E,j);var tt=function(n){var o,p=n.flippedIds,c=n.flipCallbacks,d=n.inProgressAnimations,f=n.flippedElementPositionsBeforeUpdate,h=n.flippedElementPositionsAfterUpdate,v=n.applyTransformOrigin,y=n.spring,_=n.getElement,S=n.debug,E=n.staggerConfig,A=void 0===E?{}:E,C=n.decisionData,b=void 0===C?{}:C,I=n.onComplete,w=n.containerEl,O=new Promise(function(t){o=t;});if(I&&O.then(function(){return I(w,b)}),!p.length)return function(){return o([]),O};var x=[],R=_(p[0]),T=R?R.ownerDocument.querySelector("body"):document.querySelector("body");s$1(p);var M=p.map(function(n){var s=f[n].rect,p=h[n].rect,_=f[n].opacity,S=h[n].opacity,E=p.width<1||p.height<1,A=h[n].element;if(!P(s)&&!P(p))return false;if(!A)return false;var C,I,w,O=D(A),U=(w=(I=void 0===(C={flipperSpring:y,flippedSpring:O.spring})?{}:C).flippedSpring,a$2({},g$1.noWobble,m$1(I.flipperSpring),m$1(w))),V=true===O.stagger?"default":O.stagger,R={element:A,id:n,stagger:V,springConfig:U};if(c[n]&&c[n].shouldFlip&&!c[n].shouldFlip(b.previous,b.current))return false;var k=Math.abs(s.left-p.left)+Math.abs(s.top-p.top),j=Math.abs(s.width-p.width)+Math.abs(s.height-p.height),B=Math.abs(S-_);if(0===s.height&&0===p.height||0===s.width&&0===p.width||k<.5&&j<.5&&B<.01)return false;var N=parse$2(h[n].transform),L={matrix:N},q={matrix:[]},X=[N];O.translate&&(X.push(translateX(s.left-p.left)),X.push(translateY(s.top-p.top))),O.scale&&(X.push(scaleX(Math.max(s.width,1)/Math.max(p.width,1))),X.push(scaleY(Math.max(s.height,1)/Math.max(p.height,1)))),O.opacity&&(q.opacity=_,L.opacity=S);var Y=[];if(!c[n]||!c[n].shouldInvert||c[n].shouldInvert(b.previous,b.current)){var W=function(t,e){return r(t.querySelectorAll("["+u$2+'="'+e+'"]'))}(A,n);Y=W.map(function(t){return [t,D(t)]});}q.matrix=F$1(X.reduce(multiply)),L.matrix=F$1(L.matrix);var K,H=function(t){var i=t.element,n=t.invertedChildren,r=t.body;return function(t){var s=t.matrix,a=t.opacity,o=t.forceMinVals;if(e$2(a)&&(i.style.opacity=a+""),o&&(i.style.minHeight="1px",i.style.minWidth="1px"),s){var l=function(t){return "matrix("+t.join(", ")+")"}(s);i.style.transform=l,n&&function(t){var e=t.matrix,i=t.body;t.invertedChildren.forEach(function(t){var n=t[0],r=t[1];if(i.contains(n)){var s=e[0],a=e[3],o=e[5],l={translateX:0,translateY:0,scaleX:1,scaleY:1},p="";r.translate&&(l.translateX=-e[4]/s,l.translateY=-o/a,p+="translate("+l.translateX+"px, "+l.translateY+"px)"),r.scale&&(l.scaleX=1/s,l.scaleY=1/a,p+=" scale("+l.scaleX+", "+l.scaleY+")"),n.style.transform=p;}});}({invertedChildren:n,matrix:s,body:r});}}}({element:A,invertedChildren:Y,body:T});if(c[n]&&c[n].onComplete){var J=c[n].onComplete;K=function(){return J(A,b)};}var z=e$2(q.opacity)&&e$2(L.opacity)&&q.opacity!==L.opacity,G=false;return a$2({},R,{stagger:V,springConfig:U,getOnUpdateFunc:function(t){var e=t.spring,i=t.onAnimationEnd;return d[n]={destroy:e.destroy.bind(e),onAnimationEnd:i},function(t){c[n]&&c[n].onSpringUpdate&&c[n].onSpringUpdate(t.getCurrentValue()),G||(G=true,c[n]&&c[n].onStart&&c[n].onStart(A,b));var e=t.getCurrentValue();if(T.contains(A)){var i={matrix:[]};i.matrix=q.matrix.map(function(t,i){return l(t,L.matrix[i],e)}),z&&(i.opacity=l(q.opacity,L.opacity,e)),H(i);}else t.destroy();}},initializeFlip:function(){H({matrix:q.matrix,opacity:z?q.opacity:void 0,forceMinVals:E}),c[n]&&c[n].onStartImmediate&&c[n].onStartImmediate(A,b),O.transformOrigin?A.style.transformOrigin=O.transformOrigin:v&&(A.style.transformOrigin="0 0"),Y.forEach(function(t){var e=t[0],i=t[1];i.transformOrigin?e.style.transformOrigin=i.transformOrigin:v&&(e.style.transformOrigin="0 0");});},onAnimationEnd:function(t){delete d[n],i$5(K)&&K(),A.style.transform="",Y.forEach(function(t){t[0].style.transform="";}),E&&A&&(A.style.minHeight="",A.style.minWidth=""),t||(x.push(n),x.length>=M.length&&o(x));},delayUntil:O.delayUntil})}).filter(Boolean);if(M.forEach(function(t){return (0, t.initializeFlip)()}),S)return function(){};var k=M.filter(function(t){return t.delayUntil&&(e=t.delayUntil,M.filter(function(t){return t.id===e}).length);var e;}),j={},B={},N={};k.forEach(function(t){t.stagger?(N[t.stagger]=true,B[t.delayUntil]?B[t.delayUntil].push(t.stagger):B[t.delayUntil]=[t.stagger]):j[t.delayUntil]?j[t.delayUntil].push(t):j[t.delayUntil]=[t];});var L=M.filter(function(t){return t.stagger}).reduce(function(t,e){return t[e.stagger]?t[e.stagger].push(e):t[e.stagger]=[e],t},{}),q=M.filter(function(t){return -1===k.indexOf(t)});return q.forEach(function(t){t.onSpringActivate=function(){j[t.id]&&j[t.id].forEach(U$1),B[t.id]&&Object.keys(B[t.id].reduce(function(t,e){var i;return a$2(t,((i={})[e]=true,i))},{})).forEach(function(t){V$2(L[t],A[t]);});};}),function(){return M.length||o([]),q.filter(function(t){return !t.stagger}).forEach(U$1),Object.keys(L).forEach(function(t){N[t]||V$2(L[t],A[t]);}),O}}($);B?B({hideEnteringElements:G,animateEnteringElements:Q,animateExitingElements:Z,animateFlippedElements:tt}):(G(),Z().then(Q),tt());}},q=function(t){var e=t.element,i=t.flipCallbacks,n=void 0===i?{}:i,s=t.inProgressAnimations,o=void 0===s?{}:s,l=T$1(e,t.portalKey),p=r(e.querySelectorAll("["+u$2+"]")),c={},d=[],h={};l.filter(function(t){return n&&n[t.dataset.flipId]&&n[t.dataset.flipId].onExit}).forEach(function(t){var e=t.parentNode;if(t.closest){var i=t.closest("["+f$3+"]");i&&(e=i);}var n=d.findIndex(function(t){return t[0]===e});-1===n&&(d.push([e,e.getBoundingClientRect()]),n=d.length-1),c[t.dataset.flipId]=d[n][1],h[t.dataset.flipId]=e;});var g=M(l),m=g.map(function(t){var e=t[0],i=t[1],r={};if(n&&n[e.dataset.flipId]&&n[e.dataset.flipId].onExit){var s=c[e.dataset.flipId];a$2(r,{element:e,parent:h[e.dataset.flipId],childPosition:{top:i.top-s.top,left:i.left-s.left,width:i.width,height:i.height}});}return [e.dataset.flipId,{rect:i,opacity:parseFloat(window.getComputedStyle(e).opacity||"1"),domDataForExitAnimations:r}]}).reduce(R,{});return function(t,e){Object.keys(t).forEach(function(e){t[e].destroy&&t[e].destroy(),t[e].onAnimationEnd&&t[e].onAnimationEnd(true),delete t[e];}),e.forEach(function(t){t.style.transform="",t.style.opacity="";});}(o,l.concat(p)),{flippedElementPositions:m,cachedOrderedFlipIds:g.map(function(t){return t[0].dataset.flipId})}};new w;
|
|
72393
72273
|
|
|
72274
|
+
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
72275
|
+
|
|
72276
|
+
function getDefaultExportFromCjs (x) {
|
|
72277
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
72278
|
+
}
|
|
72279
|
+
|
|
72280
|
+
function getAugmentedNamespace(n) {
|
|
72281
|
+
if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
|
|
72282
|
+
var f = n.default;
|
|
72283
|
+
if (typeof f == "function") {
|
|
72284
|
+
var a = function a () {
|
|
72285
|
+
var isInstance = false;
|
|
72286
|
+
try {
|
|
72287
|
+
isInstance = this instanceof a;
|
|
72288
|
+
} catch {}
|
|
72289
|
+
if (isInstance) {
|
|
72290
|
+
return Reflect.construct(f, arguments, this.constructor);
|
|
72291
|
+
}
|
|
72292
|
+
return f.apply(this, arguments);
|
|
72293
|
+
};
|
|
72294
|
+
a.prototype = f.prototype;
|
|
72295
|
+
} else a = {};
|
|
72296
|
+
Object.defineProperty(a, '__esModule', {value: true});
|
|
72297
|
+
Object.keys(n).forEach(function (k) {
|
|
72298
|
+
var d = Object.getOwnPropertyDescriptor(n, k);
|
|
72299
|
+
Object.defineProperty(a, k, d.get ? d : {
|
|
72300
|
+
enumerable: true,
|
|
72301
|
+
get: function () {
|
|
72302
|
+
return n[k];
|
|
72303
|
+
}
|
|
72304
|
+
});
|
|
72305
|
+
});
|
|
72306
|
+
return a;
|
|
72307
|
+
}
|
|
72308
|
+
|
|
72394
72309
|
function s(){return s=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n]);}return e},s.apply(this,arguments)}function c$1(e,t){return c$1=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},c$1(e,t)}function d$1(e,t){if(null==e)return {};var r,n,i={},o=Object.keys(e);for(n=0;n<o.length;n++)t.indexOf(r=o[n])>=0||(i[r]=e[r]);return i}var f$2=/*#__PURE__*/React.createContext({}),u$1=/*#__PURE__*/React.createContext("portal"),h=/*#__PURE__*/function(r){var n,o;function p(){for(var e,t=arguments.length,n=new Array(t),i=0;i<t;i++)n[i]=arguments[i];return (e=r.call.apply(r,[this].concat(n))||this).inProgressAnimations={},e.flipCallbacks={},e.el=void 0,e}o=r,(n=p).prototype=Object.create(o.prototype),n.prototype.constructor=n,c$1(n,o);var l=p.prototype;return l.getSnapshotBeforeUpdate=function(t){return t.flipKey!==this.props.flipKey&&this.el?q({element:this.el,flipCallbacks:this.flipCallbacks,inProgressAnimations:this.inProgressAnimations,portalKey:this.props.portalKey}):null},l.componentDidUpdate=function(e,r,n){this.props.flipKey!==e.flipKey&&this.el&&L$1({flippedElementPositionsBeforeUpdate:n.flippedElementPositions,cachedOrderedFlipIds:n.cachedOrderedFlipIds,containerEl:this.el,inProgressAnimations:this.inProgressAnimations,flipCallbacks:this.flipCallbacks,applyTransformOrigin:this.props.applyTransformOrigin,spring:this.props.spring,debug:this.props.debug,portalKey:this.props.portalKey,staggerConfig:this.props.staggerConfig,handleEnterUpdateDelete:this.props.handleEnterUpdateDelete,decisionData:{previous:e.decisionData,current:this.props.decisionData},onComplete:this.props.onComplete,onStart:this.props.onStart});},l.render=function(){var e=this,t=this.props,r=t.portalKey,n=/*#__PURE__*/React.createElement(f$2.Provider,{value:this.flipCallbacks},/*#__PURE__*/React.createElement(t.element,{className:t.className,ref:function(t){return e.el=t}},this.props.children));return r&&(n=/*#__PURE__*/React.createElement(u$1.Provider,{value:r},n)),n},p}(React.Component);h.defaultProps={applyTransformOrigin:true,element:"div"};var m=["children","flipId","inverseFlipId","portalKey"],y=["children","flipId","shouldFlip","shouldInvert","onAppear","onStart","onStartImmediate","onComplete","onExit","onSpringUpdate"],g=function(e){var t,i=e.children,o=e.flipId,p$1=e.inverseFlipId,s=e.portalKey,c=d$1(e,m),f=i,u=function(e){return "function"==typeof e}(f);if(!u)try{f=React.Children.only(i);}catch(e){throw new Error("Each Flipped component must wrap a single child")}c.scale||c.translate||c.opacity||p.assign(c,{translate:true,scale:true,opacity:true});var h=((t={})[h$1.DATA_FLIP_CONFIG]=JSON.stringify(c),t);return void 0!==o?h[h$1.DATA_FLIP_ID]=String(o):p$1&&(h[h$1.DATA_INVERSE_FLIP_ID]=String(p$1)),void 0!==s&&(h[h$1.DATA_PORTAL_KEY]=s),u?f(h):/*#__PURE__*/React.cloneElement(f,h)},v=function(e){var t=e.children,n=e.flipId,o=e.shouldFlip,p$1=e.shouldInvert,l=e.onAppear,a=e.onStart,c=e.onStartImmediate,h=e.onComplete,m=e.onExit,v=e.onSpringUpdate,I=d$1(e,y);return t?I.inverseFlipId?/*#__PURE__*/React.createElement(g,s({},I),t):/*#__PURE__*/React.createElement(u$1.Consumer,null,function(e){return React.createElement(f$2.Consumer,null,function(d){return p.isObject(d)&&n&&(d[n]={shouldFlip:o,shouldInvert:p$1,onAppear:l,onStart:a,onStartImmediate:c,onComplete:h,onExit:m,onSpringUpdate:v}),/*#__PURE__*/React.createElement(g,s({flipId:n},I,{portalKey:e}),t)})}):null};v.displayName="Flipped";
|
|
72395
72310
|
|
|
72396
72311
|
// THIS FILE IS AUTO GENERATED
|
|
@@ -72501,7 +72416,7 @@ const DailClock = () => {
|
|
|
72501
72416
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72502
72417
|
"div",
|
|
72503
72418
|
{
|
|
72504
|
-
className:
|
|
72419
|
+
className: clsx(styles$36.seconds, { [styles$36.pause]: seconds === 0 }),
|
|
72505
72420
|
style: {
|
|
72506
72421
|
"--dRotate": `${6 * seconds}deg`
|
|
72507
72422
|
},
|
|
@@ -72511,7 +72426,7 @@ const DailClock = () => {
|
|
|
72511
72426
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72512
72427
|
"div",
|
|
72513
72428
|
{
|
|
72514
|
-
className:
|
|
72429
|
+
className: clsx(styles$36.minutes, { [styles$36.pause]: minutes === 0 }),
|
|
72515
72430
|
style: {
|
|
72516
72431
|
"--dRotate": `${6 * minutes}deg`
|
|
72517
72432
|
},
|
|
@@ -72577,7 +72492,7 @@ const MotionClock = () => {
|
|
|
72577
72492
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72578
72493
|
"div",
|
|
72579
72494
|
{
|
|
72580
|
-
className:
|
|
72495
|
+
className: clsx(styles$35.hand, styles$35.hr),
|
|
72581
72496
|
style: {
|
|
72582
72497
|
animationDelay: `${-delays[0]}s`
|
|
72583
72498
|
}
|
|
@@ -72586,7 +72501,7 @@ const MotionClock = () => {
|
|
|
72586
72501
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72587
72502
|
"div",
|
|
72588
72503
|
{
|
|
72589
|
-
className:
|
|
72504
|
+
className: clsx(styles$35.hand, styles$35.min),
|
|
72590
72505
|
style: {
|
|
72591
72506
|
animationDelay: `${-delays[1]}s`
|
|
72592
72507
|
}
|
|
@@ -72595,7 +72510,7 @@ const MotionClock = () => {
|
|
|
72595
72510
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72596
72511
|
"div",
|
|
72597
72512
|
{
|
|
72598
|
-
className:
|
|
72513
|
+
className: clsx(styles$35.hand, styles$35.sec),
|
|
72599
72514
|
style: {
|
|
72600
72515
|
animationDelay: `${-delays[2]}s`
|
|
72601
72516
|
},
|
|
@@ -72649,11 +72564,11 @@ const NeumorphicAnalogClock = ({ className }) => {
|
|
|
72649
72564
|
const secDelay = msInMin * (time % msInMin / msInMin) / msInSec;
|
|
72650
72565
|
return [hrDelay, minDelay, secDelay];
|
|
72651
72566
|
});
|
|
72652
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
72567
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$34.root, className), children: [
|
|
72653
72568
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72654
72569
|
"div",
|
|
72655
72570
|
{
|
|
72656
|
-
className:
|
|
72571
|
+
className: clsx(styles$34.hand, styles$34.hr),
|
|
72657
72572
|
style: {
|
|
72658
72573
|
animationDelay: `${-delays[0]}s`
|
|
72659
72574
|
}
|
|
@@ -72662,7 +72577,7 @@ const NeumorphicAnalogClock = ({ className }) => {
|
|
|
72662
72577
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72663
72578
|
"div",
|
|
72664
72579
|
{
|
|
72665
|
-
className:
|
|
72580
|
+
className: clsx(styles$34.hand, styles$34.min),
|
|
72666
72581
|
style: {
|
|
72667
72582
|
animationDelay: `${-delays[1]}s`
|
|
72668
72583
|
}
|
|
@@ -72671,7 +72586,7 @@ const NeumorphicAnalogClock = ({ className }) => {
|
|
|
72671
72586
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
72672
72587
|
"div",
|
|
72673
72588
|
{
|
|
72674
|
-
className:
|
|
72589
|
+
className: clsx(styles$34.hand, styles$34.sec),
|
|
72675
72590
|
style: {
|
|
72676
72591
|
animationDelay: `${-delays[2]}s`
|
|
72677
72592
|
}
|
|
@@ -72778,7 +72693,7 @@ const CircleTextHover = () => {
|
|
|
72778
72693
|
"div",
|
|
72779
72694
|
{
|
|
72780
72695
|
ref: cursorRef,
|
|
72781
|
-
className:
|
|
72696
|
+
className: clsx(styles$33.cursor, { [styles$33.active]: activeCursor }),
|
|
72782
72697
|
children: [
|
|
72783
72698
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$33.icon, children: Icon ? /* @__PURE__ */ jsxRuntime.jsx(Icon, {}) : null }),
|
|
72784
72699
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$33.link, children: inner })
|
|
@@ -73193,7 +73108,7 @@ const MagicMouseEffect = () => {
|
|
|
73193
73108
|
"text-shadow",
|
|
73194
73109
|
`0px 0px 1.5rem rgb(${color} / 0.5)`
|
|
73195
73110
|
);
|
|
73196
|
-
star.className =
|
|
73111
|
+
star.className = clsx(styles$2_.star, config$1.animations[countRef.current % 3]);
|
|
73197
73112
|
star.style.setProperty(
|
|
73198
73113
|
"animation-duration",
|
|
73199
73114
|
ms(config$1.starAnimationDuration)
|
|
@@ -73433,7 +73348,7 @@ const DialControl = ({ limit = true }) => {
|
|
|
73433
73348
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2Z.container, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2Z.nav, children: /* @__PURE__ */ jsxRuntime.jsx("ul", { className: styles$2Z.list, children: items$j.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
73434
73349
|
"li",
|
|
73435
73350
|
{
|
|
73436
|
-
className:
|
|
73351
|
+
className: clsx(styles$2Z.item, {
|
|
73437
73352
|
[styles$2Z.active]: active === index
|
|
73438
73353
|
}),
|
|
73439
73354
|
onClick: () => {
|
|
@@ -73469,7 +73384,7 @@ const DialFuturistic = () => {
|
|
|
73469
73384
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: styles$2Y.root, "data-theme": theme, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
73470
73385
|
"div",
|
|
73471
73386
|
{
|
|
73472
|
-
className:
|
|
73387
|
+
className: clsx(styles$2Y.selector, {
|
|
73473
73388
|
[styles$2Y.active]: activeIndex !== null
|
|
73474
73389
|
}),
|
|
73475
73390
|
children: [
|
|
@@ -73564,11 +73479,11 @@ const items$h = [
|
|
|
73564
73479
|
const MetalCircleController = () => {
|
|
73565
73480
|
const [active, setActive] = React.useState(2);
|
|
73566
73481
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$2X.root, children: [
|
|
73567
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
73482
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2X.dial, styles$2X[`pos${active}`]), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2X.grad }) }),
|
|
73568
73483
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2X.container, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2X.nav, children: /* @__PURE__ */ jsxRuntime.jsx("ul", { className: styles$2X.list, children: items$h.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
73569
73484
|
"li",
|
|
73570
73485
|
{
|
|
73571
|
-
className:
|
|
73486
|
+
className: clsx(styles$2X.item, {
|
|
73572
73487
|
[styles$2X.active]: active === index
|
|
73573
73488
|
}),
|
|
73574
73489
|
onClick: () => {
|
|
@@ -77784,7 +77699,7 @@ function useRole(context, props) {
|
|
|
77784
77699
|
} : {}, [enabled, reference, floating, item]);
|
|
77785
77700
|
}
|
|
77786
77701
|
|
|
77787
|
-
const tooltip = "
|
|
77702
|
+
const tooltip = "_tooltip_45btf_1";
|
|
77788
77703
|
const styles$2R = {
|
|
77789
77704
|
tooltip: tooltip
|
|
77790
77705
|
};
|
|
@@ -77859,7 +77774,7 @@ const Tooltip = ({
|
|
|
77859
77774
|
ref: refs.setFloating,
|
|
77860
77775
|
style: floatingStyles,
|
|
77861
77776
|
...getFloatingProps(),
|
|
77862
|
-
className:
|
|
77777
|
+
className: clsx(styles$2R.tooltip, className),
|
|
77863
77778
|
children: label
|
|
77864
77779
|
}
|
|
77865
77780
|
) })
|
|
@@ -77881,7 +77796,7 @@ const Tooltip = ({
|
|
|
77881
77796
|
ref: refs.setFloating,
|
|
77882
77797
|
style: floatingStyles,
|
|
77883
77798
|
...getFloatingProps(),
|
|
77884
|
-
className:
|
|
77799
|
+
className: clsx(styles$2R.tooltip, className),
|
|
77885
77800
|
children: label
|
|
77886
77801
|
}
|
|
77887
77802
|
) })
|
|
@@ -78103,13 +78018,13 @@ const DockMotionItem = ({
|
|
|
78103
78018
|
"div",
|
|
78104
78019
|
{
|
|
78105
78020
|
ref,
|
|
78106
|
-
className:
|
|
78021
|
+
className: clsx(styles$2S.root, { [styles$2S.block]: type === "block" }),
|
|
78107
78022
|
children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
78108
78023
|
ContentElement,
|
|
78109
78024
|
{
|
|
78110
78025
|
ref: scope,
|
|
78111
78026
|
layoutId: itemKey,
|
|
78112
|
-
className:
|
|
78027
|
+
className: clsx(styles$2S.item, className),
|
|
78113
78028
|
onMouseEnter,
|
|
78114
78029
|
style: contentStyle,
|
|
78115
78030
|
"data-action": isInteractive,
|
|
@@ -78181,7 +78096,7 @@ const DockMotion$1 = ({
|
|
|
78181
78096
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
78182
78097
|
"footer",
|
|
78183
78098
|
{
|
|
78184
|
-
className:
|
|
78099
|
+
className: clsx(styles$2U.root, className),
|
|
78185
78100
|
"data-dock": "motion",
|
|
78186
78101
|
children: [
|
|
78187
78102
|
embedded,
|
|
@@ -78221,7 +78136,7 @@ const DockMotion$1 = ({
|
|
|
78221
78136
|
props.onClick?.(e);
|
|
78222
78137
|
},
|
|
78223
78138
|
mouseX,
|
|
78224
|
-
className:
|
|
78139
|
+
className: clsx(props?.className, styles$2U.child)
|
|
78225
78140
|
});
|
|
78226
78141
|
}
|
|
78227
78142
|
if (item.type === DockMotionDivider) {
|
|
@@ -78283,21 +78198,21 @@ const styles$2O = {
|
|
|
78283
78198
|
|
|
78284
78199
|
const DenseGrid = () => {
|
|
78285
78200
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$2O.root, children: [
|
|
78286
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78287
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78288
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78289
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78290
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78201
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.horizontal), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1506252374453-ef5237291d83?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=968&q=80" }) }),
|
|
78202
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.vertical), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1536273176101-b3810e5cb3c0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2000&q=80" }) }),
|
|
78203
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.horizontal), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1524546101258-e99b0826ea9c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1936&q=80" }) }),
|
|
78204
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.big), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1486239154832-a989a601c41d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80" }) }),
|
|
78205
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.vertical), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1519458524098-335b2a5747b2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80" }) }),
|
|
78291
78206
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1548737787-a776beb45cfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=701&q=80" }) }),
|
|
78292
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78207
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.vertical), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80" }) }),
|
|
78293
78208
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1474218861938-d6b14818c8e2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1489&q=80" }) }),
|
|
78294
78209
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1502842113467-03fdcac39fe5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80" }) }),
|
|
78295
78210
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1548599042-0df640181771?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80" }) }),
|
|
78296
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78211
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.big), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1515405969538-5642ed9d0cc4?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=675&q=80" }) }),
|
|
78297
78212
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1519999482648-25049ddd37b1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=926&q=80" }) }),
|
|
78298
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78213
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.horizontal), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1460627390041-532a28402358?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80" }) }),
|
|
78299
78214
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2O.item, children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1514673309919-5998bbbadf7f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=688&q=80" }) }),
|
|
78300
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78215
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2O.item, styles$2O.horizontal), children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "https://images.unsplash.com/photo-1543335785-8aadf6d8183c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1489&q=80" }) })
|
|
78301
78216
|
] });
|
|
78302
78217
|
};
|
|
78303
78218
|
|
|
@@ -78452,7 +78367,7 @@ const items$d = [
|
|
|
78452
78367
|
}
|
|
78453
78368
|
];
|
|
78454
78369
|
const GridHover = () => {
|
|
78455
|
-
return /* @__PURE__ */ jsxRuntime.jsx("ul", { className:
|
|
78370
|
+
return /* @__PURE__ */ jsxRuntime.jsx("ul", { className: clsx(styles$2M.root, styles$2M.withColor, styles$2M.withBlur), children: items$d.map((image) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: styles$2M.item, children: /* @__PURE__ */ jsxRuntime.jsxs("a", { href: "#", children: [
|
|
78456
78371
|
/* @__PURE__ */ jsxRuntime.jsx("img", { src: image.src, alt: "" }),
|
|
78457
78372
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2M.description, children: image.title })
|
|
78458
78373
|
] }) }, image.title + image.src)) });
|
|
@@ -78486,23 +78401,23 @@ const styles$2L = {
|
|
|
78486
78401
|
};
|
|
78487
78402
|
|
|
78488
78403
|
const LIST = [
|
|
78489
|
-
|
|
78490
|
-
|
|
78491
|
-
|
|
78492
|
-
|
|
78493
|
-
|
|
78494
|
-
|
|
78404
|
+
clsx(styles$2L.card2, styles$2L.cardImg),
|
|
78405
|
+
clsx(styles$2L.card3, styles$2L.cardImg),
|
|
78406
|
+
clsx(styles$2L.cardImg, styles$2L.card1, styles$2L.cardMain),
|
|
78407
|
+
clsx(styles$2L.card4, styles$2L.cardImg),
|
|
78408
|
+
clsx(styles$2L.cardImg, styles$2L.card5),
|
|
78409
|
+
clsx(styles$2L.card6, styles$2L.cardImg)
|
|
78495
78410
|
];
|
|
78496
78411
|
const GridViewTransition = () => {
|
|
78497
78412
|
const [activeIndex, setActiveIndex] = React.useState(null);
|
|
78498
78413
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
78499
78414
|
"div",
|
|
78500
78415
|
{
|
|
78501
|
-
className:
|
|
78416
|
+
className: clsx(styles$2L.root, { [styles$2L.expanded]: activeIndex !== null }),
|
|
78502
78417
|
children: LIST.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
78503
78418
|
"div",
|
|
78504
78419
|
{
|
|
78505
|
-
className:
|
|
78420
|
+
className: clsx(styles$2L.card, item, {
|
|
78506
78421
|
[styles$2L.active]: activeIndex === index
|
|
78507
78422
|
}),
|
|
78508
78423
|
onClick: () => {
|
|
@@ -78586,7 +78501,7 @@ const BoldHamburger = () => {
|
|
|
78586
78501
|
"button",
|
|
78587
78502
|
{
|
|
78588
78503
|
type: "button",
|
|
78589
|
-
className:
|
|
78504
|
+
className: clsx(styles$2J.root, { [styles$2J.active]: isActive }),
|
|
78590
78505
|
onClick: () => setIsActive((prev) => !prev),
|
|
78591
78506
|
children: [
|
|
78592
78507
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2J.top }),
|
|
@@ -78628,7 +78543,7 @@ const HamburgerX = ({ isOpen, onClick = server.noop }) => /* @__PURE__ */ jsxRun
|
|
|
78628
78543
|
"button",
|
|
78629
78544
|
{
|
|
78630
78545
|
type: "button",
|
|
78631
|
-
className:
|
|
78546
|
+
className: clsx(styles$2H.root, { [styles$2H.isOpen]: isOpen }),
|
|
78632
78547
|
onClick,
|
|
78633
78548
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2H.icon })
|
|
78634
78549
|
}
|
|
@@ -78645,7 +78560,7 @@ const Header = ({
|
|
|
78645
78560
|
children,
|
|
78646
78561
|
className = "",
|
|
78647
78562
|
contentClassName = ""
|
|
78648
|
-
}) => /* @__PURE__ */ jsxRuntime.jsx("header", { className:
|
|
78563
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx("header", { className: clsx(styles$2G.root, className), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2G.content, contentClassName), children }) });
|
|
78649
78564
|
|
|
78650
78565
|
const root$2u = "_root_m9k88_1";
|
|
78651
78566
|
const main$4 = "_main_m9k88_6";
|
|
@@ -78697,7 +78612,7 @@ const StickyHeader = () => {
|
|
|
78697
78612
|
] }),
|
|
78698
78613
|
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "#", className: styles$2F.editButton, children: "✎" })
|
|
78699
78614
|
] }) }),
|
|
78700
|
-
/* @__PURE__ */ jsxRuntime.jsxs("main", { className:
|
|
78615
|
+
/* @__PURE__ */ jsxRuntime.jsxs("main", { className: clsx(styles$2F.main, styles$2F.limited), children: [
|
|
78701
78616
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$2F.col, children: [
|
|
78702
78617
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2F.box, style: { height: "20vh" } }),
|
|
78703
78618
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2F.box, style: { height: "5vh" } }),
|
|
@@ -78736,7 +78651,7 @@ const AnimatedHeroTitle = () => {
|
|
|
78736
78651
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
78737
78652
|
"span",
|
|
78738
78653
|
{
|
|
78739
|
-
className:
|
|
78654
|
+
className: clsx(styles$2E.bg, styles$2E.bg1),
|
|
78740
78655
|
style: {
|
|
78741
78656
|
"--content": "Develop.",
|
|
78742
78657
|
"--padding": "0.05em",
|
|
@@ -78745,14 +78660,14 @@ const AnimatedHeroTitle = () => {
|
|
|
78745
78660
|
},
|
|
78746
78661
|
children: [
|
|
78747
78662
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2E.shadow, children: "Develop." }),
|
|
78748
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
78663
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$2E.fg, styles$2E.fg1), children: "Develop." })
|
|
78749
78664
|
]
|
|
78750
78665
|
}
|
|
78751
78666
|
),
|
|
78752
78667
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
78753
78668
|
"span",
|
|
78754
78669
|
{
|
|
78755
|
-
className:
|
|
78670
|
+
className: clsx(styles$2E.bg, styles$2E.b2),
|
|
78756
78671
|
style: {
|
|
78757
78672
|
"--content": "Preview.",
|
|
78758
78673
|
"--padding": "0.05em",
|
|
@@ -78761,14 +78676,14 @@ const AnimatedHeroTitle = () => {
|
|
|
78761
78676
|
},
|
|
78762
78677
|
children: [
|
|
78763
78678
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2E.shadow, children: "Preview." }),
|
|
78764
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
78679
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$2E.fg, styles$2E.fg2, styles$2E.mx2), children: "Preview." })
|
|
78765
78680
|
]
|
|
78766
78681
|
}
|
|
78767
78682
|
),
|
|
78768
78683
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
78769
78684
|
"span",
|
|
78770
78685
|
{
|
|
78771
|
-
className:
|
|
78686
|
+
className: clsx(styles$2E.bg, styles$2E.b3),
|
|
78772
78687
|
style: {
|
|
78773
78688
|
"--content": "Ship.",
|
|
78774
78689
|
"--padding": "0.05em",
|
|
@@ -78777,7 +78692,7 @@ const AnimatedHeroTitle = () => {
|
|
|
78777
78692
|
},
|
|
78778
78693
|
children: [
|
|
78779
78694
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2E.shadow, children: "Ship." }),
|
|
78780
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
78695
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$2E.fg, styles$2E.fg3), children: "Ship." })
|
|
78781
78696
|
]
|
|
78782
78697
|
}
|
|
78783
78698
|
)
|
|
@@ -78978,7 +78893,7 @@ const SquircleAvatar = () => {
|
|
|
78978
78893
|
alt: ""
|
|
78979
78894
|
}
|
|
78980
78895
|
) }),
|
|
78981
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
78896
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2y.avatar, styles$2y.squircle), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
78982
78897
|
"img",
|
|
78983
78898
|
{
|
|
78984
78899
|
className: styles$2y.img,
|
|
@@ -79173,7 +79088,7 @@ const ClearInput = () => {
|
|
|
79173
79088
|
duration: 0.2
|
|
79174
79089
|
});
|
|
79175
79090
|
}, [svgLineProxy]);
|
|
79176
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, className:
|
|
79091
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref, className: clsx(styles$2x.root, { [styles$2x.clearing]: clearing }), children: [
|
|
79177
79092
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$2x.text, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
79178
79093
|
"input",
|
|
79179
79094
|
{
|
|
@@ -79209,7 +79124,7 @@ const regex = new RegExp(
|
|
|
79209
79124
|
);
|
|
79210
79125
|
const EmailInput = () => {
|
|
79211
79126
|
const [valid, setValid] = React.useState(false);
|
|
79212
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
79127
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$2w.root, { [styles$2w.valid]: valid }), children: [
|
|
79213
79128
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
79214
79129
|
"input",
|
|
79215
79130
|
{
|
|
@@ -79409,7 +79324,7 @@ function validateEmail(email) {
|
|
|
79409
79324
|
const NewsletterInput = () => {
|
|
79410
79325
|
const [valid, setValid] = React.useState(false);
|
|
79411
79326
|
const [submitting, setSubmitting] = React.useState(false);
|
|
79412
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
79327
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$2s.root, { [styles$2s.valid]: valid }), children: [
|
|
79413
79328
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
79414
79329
|
"input",
|
|
79415
79330
|
{
|
|
@@ -79425,7 +79340,7 @@ const NewsletterInput = () => {
|
|
|
79425
79340
|
"button",
|
|
79426
79341
|
{
|
|
79427
79342
|
type: "button",
|
|
79428
|
-
className:
|
|
79343
|
+
className: clsx(styles$2s.button, { [styles$2s.active]: submitting }),
|
|
79429
79344
|
disabled: submitting,
|
|
79430
79345
|
onClick: (e) => {
|
|
79431
79346
|
const button = e.currentTarget;
|
|
@@ -79632,7 +79547,7 @@ const PasswordInput = () => {
|
|
|
79632
79547
|
"div",
|
|
79633
79548
|
{
|
|
79634
79549
|
ref,
|
|
79635
|
-
className:
|
|
79550
|
+
className: clsx(styles$2r.root, { [styles$2r.show]: show }),
|
|
79636
79551
|
onPointerMove: (e) => {
|
|
79637
79552
|
const button = e.currentTarget;
|
|
79638
79553
|
const rect = button.getBoundingClientRect();
|
|
@@ -79751,7 +79666,7 @@ const styles$2p = {
|
|
|
79751
79666
|
const ShadowedClick = () => {
|
|
79752
79667
|
const [isActiveSubmit, setIsActiveSubmit] = React.useState(false);
|
|
79753
79668
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$2p.root, children: [
|
|
79754
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
79669
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2p.mask, { [styles$2p.active]: isActiveSubmit }) }),
|
|
79755
79670
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
79756
79671
|
"form",
|
|
79757
79672
|
{
|
|
@@ -79847,7 +79762,7 @@ const styles$2o = {
|
|
|
79847
79762
|
};
|
|
79848
79763
|
|
|
79849
79764
|
const BorderLink = ({ children, className = "", ...rest }) => {
|
|
79850
|
-
return /* @__PURE__ */ jsxRuntime.jsx("a", { ...rest, className:
|
|
79765
|
+
return /* @__PURE__ */ jsxRuntime.jsx("a", { ...rest, className: clsx(styles$2o.root, className), children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2o.background, children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$2o.border, children }) }) });
|
|
79851
79766
|
};
|
|
79852
79767
|
|
|
79853
79768
|
const root$2d = "_root_wu2q7_1";
|
|
@@ -79858,7 +79773,7 @@ const styles$2n = {
|
|
|
79858
79773
|
};
|
|
79859
79774
|
|
|
79860
79775
|
const CircleLink = ({ children, className = "", ...rest }) => {
|
|
79861
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("a", { ...rest, className:
|
|
79776
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("a", { ...rest, className: clsx(styles$2n.root, className), children: [
|
|
79862
79777
|
children,
|
|
79863
79778
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: styles$2n.svg, viewBox: "0 0 70 36", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.9739 30.8153H63.0244C65.5269 30.8152 75.5358 -3.68471 35.4998 2.81531C-16.1598 11.2025 0.894099 33.9766 26.9922 34.3153C104.062 35.3153 54.5169 -6.68469 23.489 9.31527" }) })
|
|
79864
79779
|
] });
|
|
@@ -79925,7 +79840,7 @@ const RegularLink = ({
|
|
|
79925
79840
|
"a",
|
|
79926
79841
|
{
|
|
79927
79842
|
...rest,
|
|
79928
|
-
className:
|
|
79843
|
+
className: clsx(styles$2k.root, className),
|
|
79929
79844
|
href,
|
|
79930
79845
|
target,
|
|
79931
79846
|
rel,
|
|
@@ -79976,7 +79891,7 @@ const UnderlinedLink = ({
|
|
|
79976
79891
|
"a",
|
|
79977
79892
|
{
|
|
79978
79893
|
...rest,
|
|
79979
|
-
className:
|
|
79894
|
+
className: clsx(styles$2i.root, className),
|
|
79980
79895
|
href,
|
|
79981
79896
|
target,
|
|
79982
79897
|
rel,
|
|
@@ -80111,8 +80026,8 @@ const CanOfDigits = ({
|
|
|
80111
80026
|
initialValue = 1e3
|
|
80112
80027
|
}) => {
|
|
80113
80028
|
const [value, setValue] = React.useState(initialValue);
|
|
80114
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("span", { className:
|
|
80115
|
-
/* @__PURE__ */ jsxRuntime.jsx("label", { className:
|
|
80029
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("span", { className: clsx(styles$2e.root, className), children: [
|
|
80030
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", { className: clsx(styles$2e.label, styles$2e.sr), htmlFor: "digits", children: "Digits" }),
|
|
80116
80031
|
controls && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
80117
80032
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
80118
80033
|
"input",
|
|
@@ -80195,7 +80110,7 @@ const styles$2c = {
|
|
|
80195
80110
|
};
|
|
80196
80111
|
|
|
80197
80112
|
const CircleDotsLoader = ({ type = "fade" }) => {
|
|
80198
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
80113
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2c.root, styles$2c[type]), children: Array.from({ length: 12 }, (_, i) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2c[`circle${i + 1}`], styles$2c.child) }, i)) });
|
|
80199
80114
|
};
|
|
80200
80115
|
|
|
80201
80116
|
const root$21 = "_root_aw2sz_1";
|
|
@@ -80213,10 +80128,10 @@ const styles$2b = {
|
|
|
80213
80128
|
|
|
80214
80129
|
const CubeLoader = () => {
|
|
80215
80130
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$2b.root, children: [
|
|
80216
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
80217
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
80218
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
80219
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
80131
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2b.cube, styles$2b.cube1) }),
|
|
80132
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2b.cube, styles$2b.cube2) }),
|
|
80133
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2b.cube, styles$2b.cube3) }),
|
|
80134
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$2b.cube, styles$2b.cube4) })
|
|
80220
80135
|
] });
|
|
80221
80136
|
};
|
|
80222
80137
|
|
|
@@ -80242,7 +80157,7 @@ const EndlessLoader = ({ container }) => {
|
|
|
80242
80157
|
return;
|
|
80243
80158
|
}
|
|
80244
80159
|
try {
|
|
80245
|
-
const GLModule = await Promise.resolve().then(() => require('./gl-
|
|
80160
|
+
const GLModule = await Promise.resolve().then(() => require('./gl-DkwP1ATh.cjs'));
|
|
80246
80161
|
if (!isActiveRef.current) {
|
|
80247
80162
|
return;
|
|
80248
80163
|
}
|
|
@@ -80623,7 +80538,7 @@ const RingLoader = ({
|
|
|
80623
80538
|
}) => {
|
|
80624
80539
|
const split = children.split("").map((char, index) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$22.sector, children: char }, char + index));
|
|
80625
80540
|
const rest = Array.from({ length: 30 - split.length }, (_, index) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$22.sector }, index));
|
|
80626
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
80541
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$22.root, className), children: [
|
|
80627
80542
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$22.ring, children: [
|
|
80628
80543
|
split,
|
|
80629
80544
|
rest
|
|
@@ -80902,7 +80817,7 @@ const SpinningClickAnimation = ({
|
|
|
80902
80817
|
"button",
|
|
80903
80818
|
{
|
|
80904
80819
|
type: "button",
|
|
80905
|
-
className:
|
|
80820
|
+
className: clsx(styles$1Z.root, className),
|
|
80906
80821
|
ref,
|
|
80907
80822
|
onClick: () => {
|
|
80908
80823
|
const keyframes = [
|
|
@@ -81068,7 +80983,7 @@ const styles$1W = {
|
|
|
81068
80983
|
scrollingThings: scrollingThings};
|
|
81069
80984
|
|
|
81070
80985
|
const SubtleBorderAnimation = () => {
|
|
81071
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1W.root, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
80986
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1W.root, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1W.outer, styles$1W.visible), children: [
|
|
81072
80987
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1W.background1 }),
|
|
81073
80988
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1W.background2, children: [
|
|
81074
80989
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -81182,7 +81097,7 @@ const items$c = [
|
|
|
81182
81097
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81183
81098
|
viewBox: "0 0 24 24",
|
|
81184
81099
|
fill: "currentColor",
|
|
81185
|
-
className:
|
|
81100
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81186
81101
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81187
81102
|
"path",
|
|
81188
81103
|
{
|
|
@@ -81202,7 +81117,7 @@ const items$c = [
|
|
|
81202
81117
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81203
81118
|
viewBox: "0 0 24 24",
|
|
81204
81119
|
fill: "currentColor",
|
|
81205
|
-
className:
|
|
81120
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81206
81121
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81207
81122
|
"path",
|
|
81208
81123
|
{
|
|
@@ -81222,7 +81137,7 @@ const items$c = [
|
|
|
81222
81137
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81223
81138
|
viewBox: "0 0 24 24",
|
|
81224
81139
|
fill: "currentColor",
|
|
81225
|
-
className:
|
|
81140
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81226
81141
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81227
81142
|
"path",
|
|
81228
81143
|
{
|
|
@@ -81242,7 +81157,7 @@ const items$c = [
|
|
|
81242
81157
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81243
81158
|
viewBox: "0 0 24 24",
|
|
81244
81159
|
fill: "currentColor",
|
|
81245
|
-
className:
|
|
81160
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81246
81161
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81247
81162
|
"path",
|
|
81248
81163
|
{
|
|
@@ -81262,7 +81177,7 @@ const items$c = [
|
|
|
81262
81177
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81263
81178
|
viewBox: "0 0 24 24",
|
|
81264
81179
|
fill: "currentColor",
|
|
81265
|
-
className:
|
|
81180
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81266
81181
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81267
81182
|
"path",
|
|
81268
81183
|
{
|
|
@@ -81282,7 +81197,7 @@ const items$c = [
|
|
|
81282
81197
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81283
81198
|
viewBox: "0 0 24 24",
|
|
81284
81199
|
fill: "currentColor",
|
|
81285
|
-
className:
|
|
81200
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81286
81201
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81287
81202
|
"path",
|
|
81288
81203
|
{
|
|
@@ -81302,7 +81217,7 @@ const items$c = [
|
|
|
81302
81217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81303
81218
|
viewBox: "0 0 24 24",
|
|
81304
81219
|
fill: "currentColor",
|
|
81305
|
-
className:
|
|
81220
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81306
81221
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81307
81222
|
"path",
|
|
81308
81223
|
{
|
|
@@ -81322,7 +81237,7 @@ const items$c = [
|
|
|
81322
81237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81323
81238
|
viewBox: "0 0 24 24",
|
|
81324
81239
|
fill: "currentColor",
|
|
81325
|
-
className:
|
|
81240
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81326
81241
|
children: [
|
|
81327
81242
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.464 8.746c.227-.18.497-.311.786-.394v2.795a2.252 2.252 0 0 1-.786-.393c-.394-.313-.546-.681-.546-1.004 0-.323.152-.691.546-1.004ZM12.75 15.662v-2.824c.347.085.664.228.921.421.427.32.579.686.579.991 0 .305-.152.671-.579.991a2.534 2.534 0 0 1-.921.42Z" }),
|
|
81328
81243
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -81345,7 +81260,7 @@ const items$c = [
|
|
|
81345
81260
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81346
81261
|
viewBox: "0 0 24 24",
|
|
81347
81262
|
fill: "currentColor",
|
|
81348
|
-
className:
|
|
81263
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81349
81264
|
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m11.645 20.91-.007-.003-.022-.012a15.247 15.247 0 0 1-.383-.218 25.18 25.18 0 0 1-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 0 1-4.244 3.17 15.247 15.247 0 0 1-.383.219l-.022.012-.007.004-.003.001a.752.752 0 0 1-.704 0l-.003-.001Z" })
|
|
81350
81265
|
}
|
|
81351
81266
|
)
|
|
@@ -81358,7 +81273,7 @@ const items$c = [
|
|
|
81358
81273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81359
81274
|
viewBox: "0 0 24 24",
|
|
81360
81275
|
fill: "currentColor",
|
|
81361
|
-
className:
|
|
81276
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81362
81277
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
81363
81278
|
"path",
|
|
81364
81279
|
{
|
|
@@ -81378,7 +81293,7 @@ const items$c = [
|
|
|
81378
81293
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81379
81294
|
viewBox: "0 0 24 24",
|
|
81380
81295
|
fill: "currentColor",
|
|
81381
|
-
className:
|
|
81296
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81382
81297
|
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.375 3a1.875 1.875 0 0 0 0 3.75h1.875v4.5H3.375A1.875 1.875 0 0 1 1.5 9.375v-.75c0-1.036.84-1.875 1.875-1.875h3.193A3.375 3.375 0 0 1 12 2.753a3.375 3.375 0 0 1 5.432 3.997h3.943c1.035 0 1.875.84 1.875 1.875v.75c0 1.036-.84 1.875-1.875 1.875H12.75v-4.5h1.875a1.875 1.875 0 1 0-1.875-1.875V6.75h-1.5V4.875C11.25 3.839 10.41 3 9.375 3ZM11.25 12.75H3v6.75a2.25 2.25 0 0 0 2.25 2.25h6v-9ZM12.75 12.75v9h6.75a2.25 2.25 0 0 0 2.25-2.25v-6.75h-9Z" })
|
|
81383
81298
|
}
|
|
81384
81299
|
)
|
|
@@ -81391,7 +81306,7 @@ const items$c = [
|
|
|
81391
81306
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81392
81307
|
viewBox: "0 0 24 24",
|
|
81393
81308
|
fill: "currentColor",
|
|
81394
|
-
className:
|
|
81309
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81395
81310
|
children: [
|
|
81396
81311
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.004 10.407c.138.435-.216.842-.672.842h-3.465a.75.75 0 0 1-.65-.375l-1.732-3c-.229-.396-.053-.907.393-1.004a5.252 5.252 0 0 1 6.126 3.537ZM8.12 8.464c.307-.338.838-.235 1.066.16l1.732 3a.75.75 0 0 1 0 .75l-1.732 3c-.229.397-.76.5-1.067.161A5.23 5.23 0 0 1 6.75 12a5.23 5.23 0 0 1 1.37-3.536ZM10.878 17.13c-.447-.098-.623-.608-.394-1.004l1.733-3.002a.75.75 0 0 1 .65-.375h3.465c.457 0 .81.407.672.842a5.252 5.252 0 0 1-6.126 3.539Z" }),
|
|
81397
81312
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -81459,7 +81374,7 @@ const CardMarquee = () => {
|
|
|
81459
81374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
81460
81375
|
viewBox: "0 0 24 24",
|
|
81461
81376
|
fill: "currentColor",
|
|
81462
|
-
className:
|
|
81377
|
+
className: clsx(styles$1T.w6, styles$1T.h6),
|
|
81463
81378
|
"aria-hidden": true,
|
|
81464
81379
|
children: [
|
|
81465
81380
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2.25a.75.75 0 0 1 .75.75v2.25a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75ZM7.5 12a4.5 4.5 0 1 1 9 0 4.5 4.5 0 0 1-9 0ZM18.894 6.166a.75.75 0 0 0-1.06-1.06l-1.591 1.59a.75.75 0 1 0 1.06 1.061l1.591-1.59ZM21.75 12a.75.75 0 0 1-.75.75h-2.25a.75.75 0 0 1 0-1.5H21a.75.75 0 0 1 .75.75ZM17.834 18.894a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 1 0-1.061 1.06l1.59 1.591ZM12 18a.75.75 0 0 1 .75.75V21a.75.75 0 0 1-1.5 0v-2.25A.75.75 0 0 1 12 18ZM7.758 17.303a.75.75 0 0 0-1.061-1.06l-1.591 1.59a.75.75 0 0 0 1.06 1.061l1.591-1.59ZM6 12a.75.75 0 0 1-.75.75H3a.75.75 0 0 1 0-1.5h2.25A.75.75 0 0 1 6 12ZM6.697 7.757a.75.75 0 0 0 1.06-1.06l-1.59-1.591a.75.75 0 0 0-1.061 1.06l1.59 1.591Z" }),
|
|
@@ -81543,7 +81458,7 @@ const Ticker = () => {
|
|
|
81543
81458
|
"data-active": isActive,
|
|
81544
81459
|
"data-speed": "fast",
|
|
81545
81460
|
"data-direction": "right",
|
|
81546
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("ul", { className:
|
|
81461
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("ul", { className: clsx(styles$1S.tags, styles$1S.list), children: [
|
|
81547
81462
|
items.map((item) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: item }, item)),
|
|
81548
81463
|
isActive && items.map((item) => /* @__PURE__ */ jsxRuntime.jsx("li", { "aria-hidden": true, children: item }, item + "hidden"))
|
|
81549
81464
|
] })
|
|
@@ -81820,10 +81735,10 @@ const AnimatedIconsNav = () => {
|
|
|
81820
81735
|
}, []);
|
|
81821
81736
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1R.root, children: [
|
|
81822
81737
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1R.cards, children: [
|
|
81823
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
81824
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
81738
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1R.card, { [styles$1R.flyOut]: showCards }) }),
|
|
81739
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1R.card, { [styles$1R.flyOut]: showCards }) })
|
|
81825
81740
|
] }),
|
|
81826
|
-
/* @__PURE__ */ jsxRuntime.jsxs("nav", { className:
|
|
81741
|
+
/* @__PURE__ */ jsxRuntime.jsxs("nav", { className: clsx(styles$1R.nav, styles$1R[`tilt${page}`]), children: [
|
|
81827
81742
|
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: styles$1R.items, children: items$a.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx("li", { className: styles$1R.item, children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
81828
81743
|
"button",
|
|
81829
81744
|
{
|
|
@@ -81943,7 +81858,7 @@ const AnimatedShareMenu = () => {
|
|
|
81943
81858
|
"button",
|
|
81944
81859
|
{
|
|
81945
81860
|
id: "share-btn",
|
|
81946
|
-
className:
|
|
81861
|
+
className: clsx(styles$1Q.btn, { [styles$1Q.open]: open }),
|
|
81947
81862
|
type: "button",
|
|
81948
81863
|
title: open ? "Close" : "Share",
|
|
81949
81864
|
onClick: () => setOpen((prev) => !prev),
|
|
@@ -82139,8 +82054,8 @@ const CurtainRevealMenu = () => {
|
|
|
82139
82054
|
setToggle((prev) => !prev);
|
|
82140
82055
|
},
|
|
82141
82056
|
children: [
|
|
82142
|
-
/* @__PURE__ */ jsxRuntime.jsx(RxHamburgerMenu, { className:
|
|
82143
|
-
/* @__PURE__ */ jsxRuntime.jsx(RxDropdownMenu, { className:
|
|
82057
|
+
/* @__PURE__ */ jsxRuntime.jsx(RxHamburgerMenu, { className: clsx(styles$1P.icon, styles$1P.open) }),
|
|
82058
|
+
/* @__PURE__ */ jsxRuntime.jsx(RxDropdownMenu, { className: clsx(styles$1P.icon, styles$1P.close) })
|
|
82144
82059
|
]
|
|
82145
82060
|
}
|
|
82146
82061
|
)
|
|
@@ -82272,7 +82187,7 @@ const DropdownMenu = ({ value, items = ITEMS }) => {
|
|
|
82272
82187
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
82273
82188
|
"button",
|
|
82274
82189
|
{
|
|
82275
|
-
className:
|
|
82190
|
+
className: clsx(styles$1N.mainButton, styles$1N.dropdownButton),
|
|
82276
82191
|
onClick: () => {
|
|
82277
82192
|
const listWrapperSizes = 3.5;
|
|
82278
82193
|
const dropdownOpenHeight = 4.6 * ITEMS.length + listWrapperSizes;
|
|
@@ -82283,7 +82198,7 @@ const DropdownMenu = ({ value, items = ITEMS }) => {
|
|
|
82283
82198
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
82284
82199
|
"span",
|
|
82285
82200
|
{
|
|
82286
|
-
className:
|
|
82201
|
+
className: clsx(styles$1N.dropdownTitle, styles$1N.textTruncate, {
|
|
82287
82202
|
[styles$1N.placeholder]: !active
|
|
82288
82203
|
}),
|
|
82289
82204
|
children: active ? active.title : "Choose a platform"
|
|
@@ -82330,7 +82245,7 @@ const DropdownMenu = ({ value, items = ITEMS }) => {
|
|
|
82330
82245
|
"button",
|
|
82331
82246
|
{
|
|
82332
82247
|
type: "button",
|
|
82333
|
-
className:
|
|
82248
|
+
className: clsx(styles$1N.dropdownButton, styles$1N.listButton),
|
|
82334
82249
|
"data-translate-value": `${100 * index}%`,
|
|
82335
82250
|
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$1N.textTruncate, children: item.title })
|
|
82336
82251
|
}
|
|
@@ -82450,7 +82365,7 @@ const GlowingSelect = ({ accessible, nomotion }) => {
|
|
|
82450
82365
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
82451
82366
|
"div",
|
|
82452
82367
|
{
|
|
82453
|
-
className:
|
|
82368
|
+
className: clsx(styles$1L.select, { [styles$1L.nomotion]: nomotion }),
|
|
82454
82369
|
tabIndex: 0,
|
|
82455
82370
|
role: "button",
|
|
82456
82371
|
style: {
|
|
@@ -82509,7 +82424,7 @@ const GlowingTab = ({
|
|
|
82509
82424
|
{
|
|
82510
82425
|
ref,
|
|
82511
82426
|
type: "button",
|
|
82512
|
-
className:
|
|
82427
|
+
className: clsx(styles$1K.button, { [styles$1K.active]: isActive }),
|
|
82513
82428
|
onClick,
|
|
82514
82429
|
...rest,
|
|
82515
82430
|
children: [
|
|
@@ -82698,7 +82613,7 @@ const GlowingTab2 = ({ id, text, active, onClick, rootRef }) => {
|
|
|
82698
82613
|
);
|
|
82699
82614
|
nav.style.setProperty("--after-bg-width", String(width));
|
|
82700
82615
|
}, [active, rootRef]);
|
|
82701
|
-
return /* @__PURE__ */ jsxRuntime.jsx("li", { className:
|
|
82616
|
+
return /* @__PURE__ */ jsxRuntime.jsx("li", { className: clsx(styles$1J.item, { [styles$1J.active]: active }), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
82702
82617
|
"a",
|
|
82703
82618
|
{
|
|
82704
82619
|
ref,
|
|
@@ -82883,12 +82798,12 @@ const MagnifiedNavItems = () => {
|
|
|
82883
82798
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.473,23H3.003c-1.276,0-2.228-1.175-1.957-2.422,.705-3.239,3.029-8.578,10.693-8.578s9.987,5.336,10.692,8.575c.272,1.248-.681,2.425-1.959,2.425Z" })
|
|
82884
82799
|
] }) })
|
|
82885
82800
|
] }),
|
|
82886
|
-
/* @__PURE__ */ jsxRuntime.jsxs("nav", { ref: navRef, className:
|
|
82801
|
+
/* @__PURE__ */ jsxRuntime.jsxs("nav", { ref: navRef, className: clsx(styles$1I.nav, styles$1I[`page${page + 1}`]), children: [
|
|
82887
82802
|
/* @__PURE__ */ jsxRuntime.jsx("ul", { className: styles$1I.items, children: items$7.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx("li", { children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
82888
82803
|
"button",
|
|
82889
82804
|
{
|
|
82890
82805
|
type: "button",
|
|
82891
|
-
className:
|
|
82806
|
+
className: clsx(styles$1I.itemLink, item.color),
|
|
82892
82807
|
onClick: () => {
|
|
82893
82808
|
setPage(index);
|
|
82894
82809
|
},
|
|
@@ -82915,7 +82830,7 @@ const MagnifiedNavItems = () => {
|
|
|
82915
82830
|
/* @__PURE__ */ jsxRuntime.jsx("div", { ref: fakeIconsRef, className: styles$1I.fakeIcons, children: items$7.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1I.fakeIconBox, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
82916
82831
|
"svg",
|
|
82917
82832
|
{
|
|
82918
|
-
className:
|
|
82833
|
+
className: clsx(styles$1I.fakeIcon, item.fake),
|
|
82919
82834
|
width: "24px",
|
|
82920
82835
|
height: "24px",
|
|
82921
82836
|
"aria-hidden": "true",
|
|
@@ -82993,7 +82908,7 @@ const MobileNavBar = () => {
|
|
|
82993
82908
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
82994
82909
|
"button",
|
|
82995
82910
|
{
|
|
82996
|
-
className:
|
|
82911
|
+
className: clsx(styles$1H.navitem, {
|
|
82997
82912
|
[styles$1H.active]: activeItem === 0 /* Home */
|
|
82998
82913
|
}),
|
|
82999
82914
|
"data-clr": "#e4ecfa",
|
|
@@ -83009,7 +82924,7 @@ const MobileNavBar = () => {
|
|
|
83009
82924
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
83010
82925
|
"button",
|
|
83011
82926
|
{
|
|
83012
|
-
className:
|
|
82927
|
+
className: clsx(styles$1H.navitem, {
|
|
83013
82928
|
[styles$1H.active]: activeItem === 1 /* Person */
|
|
83014
82929
|
}),
|
|
83015
82930
|
"data-clr": "#fff6cc",
|
|
@@ -83025,7 +82940,7 @@ const MobileNavBar = () => {
|
|
|
83025
82940
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
83026
82941
|
"div",
|
|
83027
82942
|
{
|
|
83028
|
-
className:
|
|
82943
|
+
className: clsx(styles$1H.navsearch, { [styles$1H.active]: activeSearch }),
|
|
83029
82944
|
children: [
|
|
83030
82945
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
83031
82946
|
"input",
|
|
@@ -83059,7 +82974,7 @@ const MobileNavBar = () => {
|
|
|
83059
82974
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
83060
82975
|
"button",
|
|
83061
82976
|
{
|
|
83062
|
-
className:
|
|
82977
|
+
className: clsx(styles$1H.navitem, {
|
|
83063
82978
|
[styles$1H.active]: activeItem === 2 /* Settings */
|
|
83064
82979
|
}),
|
|
83065
82980
|
"data-clr": "#f0e4fa",
|
|
@@ -83422,7 +83337,7 @@ const styles$1D = {
|
|
|
83422
83337
|
|
|
83423
83338
|
const PinDropdown = () => {
|
|
83424
83339
|
const [isActive, setIsActive] = React.useState(false);
|
|
83425
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83340
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1D.root, { [styles$1D.active]: isActive }), children: [
|
|
83426
83341
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
83427
83342
|
"button",
|
|
83428
83343
|
{
|
|
@@ -83433,9 +83348,9 @@ const PinDropdown = () => {
|
|
|
83433
83348
|
setIsActive((prev) => !prev);
|
|
83434
83349
|
}, []),
|
|
83435
83350
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1D.menuIconWrapper, children: [
|
|
83436
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
83351
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1D.menuIconLine, styles$1D.half, styles$1D.first) }),
|
|
83437
83352
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1D.menuIconLine }),
|
|
83438
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
83353
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1D.menuIconLine, styles$1D.half, styles$1D.last) })
|
|
83439
83354
|
] })
|
|
83440
83355
|
}
|
|
83441
83356
|
),
|
|
@@ -83555,7 +83470,7 @@ const RadialMenu = () => {
|
|
|
83555
83470
|
}, []),
|
|
83556
83471
|
isActive
|
|
83557
83472
|
);
|
|
83558
|
-
return /* @__PURE__ */ jsxRuntime.jsx("nav", { ref, className:
|
|
83473
|
+
return /* @__PURE__ */ jsxRuntime.jsx("nav", { ref, className: clsx(styles$1C.root, { [styles$1C.isActive]: isActive }), children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1C.menu, children: [
|
|
83559
83474
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
83560
83475
|
"label",
|
|
83561
83476
|
{
|
|
@@ -83831,7 +83746,7 @@ const RadialNavigation = ({
|
|
|
83831
83746
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
83832
83747
|
"nav",
|
|
83833
83748
|
{
|
|
83834
|
-
className:
|
|
83749
|
+
className: clsx(styles$1B.root, className, {
|
|
83835
83750
|
[styles$1B.active]: isActive || isActiveByViewport,
|
|
83836
83751
|
[styles$1B.highlighted]: isHighlighted || isActiveByViewport,
|
|
83837
83752
|
[styles$1B.opposite]: direction === "right",
|
|
@@ -83845,7 +83760,7 @@ const RadialNavigation = ({
|
|
|
83845
83760
|
"button",
|
|
83846
83761
|
{
|
|
83847
83762
|
type: "button",
|
|
83848
|
-
className:
|
|
83763
|
+
className: clsx(styles$1B.item, {
|
|
83849
83764
|
[styles$1B.activeItem]: activeId === item.id
|
|
83850
83765
|
}),
|
|
83851
83766
|
"data-action": true,
|
|
@@ -83973,10 +83888,10 @@ const SinglePopoverMenu = () => {
|
|
|
83973
83888
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "sub-menu-holder" })
|
|
83974
83889
|
] })
|
|
83975
83890
|
] }),
|
|
83976
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83891
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.item, styles$1A.highlight), children: [
|
|
83977
83892
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.menuText, children: /* @__PURE__ */ jsxRuntime.jsx("a", { href: "apps/tarsis/recipes/SinglePopoverMenu#", children: "Services" }) }),
|
|
83978
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83979
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83893
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.subMenu, styles$1A.double), children: [
|
|
83894
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.a), children: [
|
|
83980
83895
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-question-circle" }) }),
|
|
83981
83896
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
83982
83897
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -83986,7 +83901,7 @@ const SinglePopoverMenu = () => {
|
|
|
83986
83901
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "From Professionals" })
|
|
83987
83902
|
] })
|
|
83988
83903
|
] }),
|
|
83989
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83904
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.b), children: [
|
|
83990
83905
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-users-class" }) }),
|
|
83991
83906
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
83992
83907
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -83996,7 +83911,7 @@ const SinglePopoverMenu = () => {
|
|
|
83996
83911
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "In Classroom" })
|
|
83997
83912
|
] })
|
|
83998
83913
|
] }),
|
|
83999
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83914
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.c), children: [
|
|
84000
83915
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-school" }) }),
|
|
84001
83916
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
84002
83917
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -84006,7 +83921,7 @@ const SinglePopoverMenu = () => {
|
|
|
84006
83921
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "By Video" })
|
|
84007
83922
|
] })
|
|
84008
83923
|
] }),
|
|
84009
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83924
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.d), children: [
|
|
84010
83925
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-chess-rook" }) }),
|
|
84011
83926
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
84012
83927
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -84016,7 +83931,7 @@ const SinglePopoverMenu = () => {
|
|
|
84016
83931
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "The Castle" })
|
|
84017
83932
|
] })
|
|
84018
83933
|
] }),
|
|
84019
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83934
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.e), children: [
|
|
84020
83935
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-video-plus" }) }),
|
|
84021
83936
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
84022
83937
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -84026,7 +83941,7 @@ const SinglePopoverMenu = () => {
|
|
|
84026
83941
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "A Creator" })
|
|
84027
83942
|
] })
|
|
84028
83943
|
] }),
|
|
84029
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83944
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.gb, styles$1A.f), children: [
|
|
84030
83945
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-cat" }) }),
|
|
84031
83946
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
84032
83947
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
@@ -84044,20 +83959,20 @@ const SinglePopoverMenu = () => {
|
|
|
84044
83959
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "sub-menu-holder" })
|
|
84045
83960
|
] })
|
|
84046
83961
|
] }),
|
|
84047
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83962
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.item, styles$1A.highlight), children: [
|
|
84048
83963
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.menuText, children: /* @__PURE__ */ jsxRuntime.jsx("a", { href: "apps/tarsis/recipes/SinglePopoverMenu#", children: "Support" }) }),
|
|
84049
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83964
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.subMenu, styles$1A.triple), children: [
|
|
84050
83965
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
84051
83966
|
"div",
|
|
84052
83967
|
{
|
|
84053
|
-
className:
|
|
83968
|
+
className: clsx(
|
|
84054
83969
|
styles$1A.iconBox,
|
|
84055
83970
|
styles$1A.gb,
|
|
84056
83971
|
styles$1A.a,
|
|
84057
83972
|
styles$1A.topContainer
|
|
84058
83973
|
),
|
|
84059
83974
|
children: [
|
|
84060
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
83975
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1A.icon, styles$1A.big), children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-book" }) }),
|
|
84061
83976
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.text, children: [
|
|
84062
83977
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.title, children: "Where to start" }),
|
|
84063
83978
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.subText, children: "Find out where to begin below" })
|
|
@@ -84079,28 +83994,28 @@ const SinglePopoverMenu = () => {
|
|
|
84079
83994
|
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "apps/tarsis/recipes/SinglePopoverMenu#", children: "Brain Enhancer" }),
|
|
84080
83995
|
/* @__PURE__ */ jsxRuntime.jsx("a", { href: "apps/tarsis/recipes/SinglePopoverMenu#", children: "Network Maker" })
|
|
84081
83996
|
] }),
|
|
84082
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
83997
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.flat), children: [
|
|
84083
83998
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "fal fa-plug" }) }),
|
|
84084
83999
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.text, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
84085
84000
|
"API Guide ",
|
|
84086
84001
|
/* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-arrow-right" })
|
|
84087
84002
|
] }) })
|
|
84088
84003
|
] }),
|
|
84089
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
84004
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.flat), children: [
|
|
84090
84005
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "fal fa-comments" }) }),
|
|
84091
84006
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.text, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
84092
84007
|
"Support Line ",
|
|
84093
84008
|
/* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-arrow-right" })
|
|
84094
84009
|
] }) })
|
|
84095
84010
|
] }),
|
|
84096
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
84011
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.flat), children: [
|
|
84097
84012
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "fal fa-phone-volume" }) }),
|
|
84098
84013
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.text, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
84099
84014
|
"Live Chat ",
|
|
84100
84015
|
/* @__PURE__ */ jsxRuntime.jsx("i", { className: "far fa-arrow-right" })
|
|
84101
84016
|
] }) })
|
|
84102
84017
|
] }),
|
|
84103
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
84018
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.iconBox, styles$1A.flat), children: [
|
|
84104
84019
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.icon, children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: "fal fa-book-spells" }) }),
|
|
84105
84020
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.text, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.title, children: [
|
|
84106
84021
|
"Documentation ",
|
|
@@ -84109,7 +84024,7 @@ const SinglePopoverMenu = () => {
|
|
|
84109
84024
|
] })
|
|
84110
84025
|
] })
|
|
84111
84026
|
] }),
|
|
84112
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
84027
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1A.item, styles$1A.highlight), children: [
|
|
84113
84028
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1A.menuText, children: /* @__PURE__ */ jsxRuntime.jsx("a", { href: "apps/tarsis/recipes/SinglePopoverMenu#", children: "Community" }) }),
|
|
84114
84029
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.subMenu, children: [
|
|
84115
84030
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$1A.iconBox, children: [
|
|
@@ -84234,7 +84149,7 @@ const TabBarAnimation = () => {
|
|
|
84234
84149
|
return /* @__PURE__ */ jsxRuntime.jsx("nav", { ref: navRef, className: styles$1z.root, children: /* @__PURE__ */ jsxRuntime.jsx("ul", { className: styles$1z.list, children: options$2.map((option, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
84235
84150
|
"li",
|
|
84236
84151
|
{
|
|
84237
|
-
className:
|
|
84152
|
+
className: clsx(styles$1z.item, {
|
|
84238
84153
|
[styles$1z.active]: activeIndex === index
|
|
84239
84154
|
}),
|
|
84240
84155
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -84335,7 +84250,7 @@ const WavyItem = ({
|
|
|
84335
84250
|
className = "",
|
|
84336
84251
|
...props
|
|
84337
84252
|
}) => {
|
|
84338
|
-
return /* @__PURE__ */ jsxRuntime.jsx("li", { className:
|
|
84253
|
+
return /* @__PURE__ */ jsxRuntime.jsx("li", { className: clsx(styles$1y.item, className, { [styles$1y.active]: isActive }), children: /* @__PURE__ */ jsxRuntime.jsx("a", { className: styles$1y.link, href, ...props, children }) });
|
|
84339
84254
|
};
|
|
84340
84255
|
|
|
84341
84256
|
const options$1 = [
|
|
@@ -84542,8 +84457,8 @@ const ParallaxEmoji = () => {
|
|
|
84542
84457
|
children: [
|
|
84543
84458
|
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className: styles$1w.face, depth: 0.2 }),
|
|
84544
84459
|
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className: styles$1w.shine, depth: 0.3 }),
|
|
84545
|
-
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className:
|
|
84546
|
-
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className:
|
|
84460
|
+
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className: clsx(styles$1w.eye, styles$1w.left), depth: 0.8 }),
|
|
84461
|
+
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className: clsx(styles$1w.eye, styles$1w.right), depth: 0.8 }),
|
|
84547
84462
|
/* @__PURE__ */ jsxRuntime.jsx(EmojiLayer, { className: styles$1w.mouth, depth: 0.8 })
|
|
84548
84463
|
]
|
|
84549
84464
|
}
|
|
@@ -84601,9 +84516,9 @@ const ApertureVideo = () => {
|
|
|
84601
84516
|
poster: "/images/aperture.webp"
|
|
84602
84517
|
}
|
|
84603
84518
|
),
|
|
84604
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
84605
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
84606
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
84519
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1v.aperture, styles$1v.apertureLeft) }),
|
|
84520
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1v.aperture, styles$1v.apertureTopRight) }),
|
|
84521
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1v.aperture, styles$1v.apertureBottomRight) })
|
|
84607
84522
|
] })
|
|
84608
84523
|
}
|
|
84609
84524
|
);
|
|
@@ -84649,11 +84564,11 @@ const RadioRolling = () => {
|
|
|
84649
84564
|
),
|
|
84650
84565
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: styles$1u.label, htmlFor: option, children: option })
|
|
84651
84566
|
] }, option)),
|
|
84652
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
84567
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1u.circles, { [styles$1u.flip]: flip }), children: [
|
|
84653
84568
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle }),
|
|
84654
84569
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle }),
|
|
84655
84570
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle }),
|
|
84656
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
84571
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1u.circle, styles$1u.circleChecked) }),
|
|
84657
84572
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle }),
|
|
84658
84573
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle }),
|
|
84659
84574
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1u.circle })
|
|
@@ -84846,7 +84761,7 @@ const ScrollDrivenTextBlowOut = () => {
|
|
|
84846
84761
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
84847
84762
|
"svg",
|
|
84848
84763
|
{
|
|
84849
|
-
className:
|
|
84764
|
+
className: clsx(styles$1q.svg, styles$1q.signature),
|
|
84850
84765
|
viewBox: "0 0 271 209",
|
|
84851
84766
|
fill: "none",
|
|
84852
84767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -85167,7 +85082,7 @@ const DDDRangeSlider = () => {
|
|
|
85167
85082
|
"div",
|
|
85168
85083
|
{
|
|
85169
85084
|
ref: rootRef,
|
|
85170
|
-
className:
|
|
85085
|
+
className: clsx(styles$1l.root, styles$1l.pristine, {
|
|
85171
85086
|
[styles$1l.pristine]: isPristine,
|
|
85172
85087
|
[styles$1l.active]: active
|
|
85173
85088
|
}),
|
|
@@ -85308,16 +85223,16 @@ const FeedbackReactions = () => {
|
|
|
85308
85223
|
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: styles$1i.angry, children: [
|
|
85309
85224
|
/* @__PURE__ */ jsxRuntime.jsx("input", { type: "radio", value: "1", name: "feedback" }),
|
|
85310
85225
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
85311
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85312
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85226
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.left), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85227
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.right), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85313
85228
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: styles$1i.mouth, children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#mouth" }) })
|
|
85314
85229
|
] })
|
|
85315
85230
|
] }),
|
|
85316
85231
|
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: styles$1i.sad, children: [
|
|
85317
85232
|
/* @__PURE__ */ jsxRuntime.jsx("input", { type: "radio", value: "2", name: "feedback" }),
|
|
85318
85233
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
85319
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85320
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85234
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.left), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85235
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.right), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85321
85236
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: styles$1i.mouth, children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#mouth" }) })
|
|
85322
85237
|
] })
|
|
85323
85238
|
] }),
|
|
@@ -85328,16 +85243,16 @@ const FeedbackReactions = () => {
|
|
|
85328
85243
|
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: styles$1i.good, children: [
|
|
85329
85244
|
/* @__PURE__ */ jsxRuntime.jsx("input", { type: "radio", value: "4", name: "feedback", defaultChecked: true }),
|
|
85330
85245
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
85331
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85332
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85246
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.left), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85247
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.right), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85333
85248
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: styles$1i.mouth, children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#mouth" }) })
|
|
85334
85249
|
] })
|
|
85335
85250
|
] }),
|
|
85336
85251
|
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: styles$1i.happy, children: [
|
|
85337
85252
|
/* @__PURE__ */ jsxRuntime.jsx("input", { type: "radio", value: "5", name: "feedback" }),
|
|
85338
85253
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
85339
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85340
|
-
/* @__PURE__ */ jsxRuntime.jsx("svg", { className:
|
|
85254
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.left), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) }),
|
|
85255
|
+
/* @__PURE__ */ jsxRuntime.jsx("svg", { className: clsx(styles$1i.eye, styles$1i.right), children: /* @__PURE__ */ jsxRuntime.jsx("use", { xlinkHref: "#eye" }) })
|
|
85341
85256
|
] })
|
|
85342
85257
|
] })
|
|
85343
85258
|
] }),
|
|
@@ -85406,7 +85321,7 @@ const styles$1h = {
|
|
|
85406
85321
|
|
|
85407
85322
|
const DaySwitch = () => {
|
|
85408
85323
|
const [morning, setMorning] = React.useState(false);
|
|
85409
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
85324
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$1h.root, { [styles$1h.morning]: morning }), children: [
|
|
85410
85325
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
85411
85326
|
"input",
|
|
85412
85327
|
{
|
|
@@ -85422,22 +85337,22 @@ const DaySwitch = () => {
|
|
|
85422
85337
|
),
|
|
85423
85338
|
/* @__PURE__ */ jsxRuntime.jsxs("label", { htmlFor: "hide-checkbox", className: styles$1h.toggle, children: [
|
|
85424
85339
|
/* @__PURE__ */ jsxRuntime.jsxs("span", { className: styles$1h.toggleButton, children: [
|
|
85425
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85426
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85427
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85428
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85429
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85430
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85431
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85340
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater1) }),
|
|
85341
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater2) }),
|
|
85342
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater3) }),
|
|
85343
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater4) }),
|
|
85344
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater5) }),
|
|
85345
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater6) }),
|
|
85346
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.crater, styles$1h.crater7) })
|
|
85432
85347
|
] }),
|
|
85433
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85434
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85435
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85436
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85437
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85438
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85439
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85440
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85348
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star1) }),
|
|
85349
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star2) }),
|
|
85350
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star3) }),
|
|
85351
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star4) }),
|
|
85352
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star5, styles$1h.half) }),
|
|
85353
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star6, styles$1h.half) }),
|
|
85354
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star7, styles$1h.half) }),
|
|
85355
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$1h.star, styles$1h.star8, styles$1h.half) })
|
|
85441
85356
|
] })
|
|
85442
85357
|
] });
|
|
85443
85358
|
};
|
|
@@ -85514,7 +85429,7 @@ const styles$1f = {
|
|
|
85514
85429
|
};
|
|
85515
85430
|
|
|
85516
85431
|
const IosSwitch = ({ className, ...props }) => {
|
|
85517
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
85432
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1f.root, className), children: /* @__PURE__ */ jsxRuntime.jsxs("label", { className: styles$1f.label, children: [
|
|
85518
85433
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
85519
85434
|
"input",
|
|
85520
85435
|
{
|
|
@@ -85642,7 +85557,7 @@ const styles$1d = {
|
|
|
85642
85557
|
|
|
85643
85558
|
const NeuromorphicToggle = ({ dark = true }) => {
|
|
85644
85559
|
const [isActive, setIsActive] = React.useState(false);
|
|
85645
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
85560
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$1d.root, { [styles$1d.dark]: dark }), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
85646
85561
|
"button",
|
|
85647
85562
|
{
|
|
85648
85563
|
className: styles$1d.button,
|
|
@@ -85730,7 +85645,7 @@ const styles$1b = {
|
|
|
85730
85645
|
|
|
85731
85646
|
const StretchToggle = () => {
|
|
85732
85647
|
const [pristine, setPristine] = React.useState(false);
|
|
85733
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1b.root, children: /* @__PURE__ */ jsxRuntime.jsxs("label", { className:
|
|
85648
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$1b.root, children: /* @__PURE__ */ jsxRuntime.jsxs("label", { className: clsx(styles$1b.toggle, { [styles$1b.pristine]: pristine }), children: [
|
|
85734
85649
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
85735
85650
|
"input",
|
|
85736
85651
|
{
|
|
@@ -85761,7 +85676,7 @@ const TippingSwitch = ({ withText = false }) => {
|
|
|
85761
85676
|
"input",
|
|
85762
85677
|
{
|
|
85763
85678
|
type: "checkbox",
|
|
85764
|
-
className:
|
|
85679
|
+
className: clsx(styles$1a.input, { [styles$1a.withText]: withText })
|
|
85765
85680
|
}
|
|
85766
85681
|
);
|
|
85767
85682
|
};
|
|
@@ -85803,7 +85718,7 @@ const styles$17 = {
|
|
|
85803
85718
|
root: root$12,
|
|
85804
85719
|
text: text$8};
|
|
85805
85720
|
|
|
85806
|
-
const EnlightenedText = ({ children }) => /* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
85721
|
+
const EnlightenedText = ({ children }) => /* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$17.root, styles$17.text), children });
|
|
85807
85722
|
|
|
85808
85723
|
const root$11 = "_root_g9iok_1";
|
|
85809
85724
|
const text$7 = "_text_g9iok_9";
|
|
@@ -85966,7 +85881,7 @@ const JellyText = ({ children, className = "" }) => {
|
|
|
85966
85881
|
"div",
|
|
85967
85882
|
{
|
|
85968
85883
|
ref,
|
|
85969
|
-
className:
|
|
85884
|
+
className: clsx(styles$14.root, className),
|
|
85970
85885
|
"aria-description": children,
|
|
85971
85886
|
children: parts
|
|
85972
85887
|
}
|
|
@@ -86183,11 +86098,11 @@ const ScrambledText = ({ children, reveal = false }) => {
|
|
|
86183
86098
|
);
|
|
86184
86099
|
};
|
|
86185
86100
|
|
|
86186
|
-
const root$Y = "
|
|
86187
|
-
const line = "
|
|
86188
|
-
const word$1 = "
|
|
86189
|
-
const link = "
|
|
86190
|
-
const letter = "
|
|
86101
|
+
const root$Y = "_root_1osmz_1";
|
|
86102
|
+
const line = "_line_1osmz_9";
|
|
86103
|
+
const word$1 = "_word_1osmz_14";
|
|
86104
|
+
const link = "_link_1osmz_18";
|
|
86105
|
+
const letter = "_letter_1osmz_22";
|
|
86191
86106
|
const styles$11 = {
|
|
86192
86107
|
root: root$Y,
|
|
86193
86108
|
line: line,
|
|
@@ -86200,7 +86115,7 @@ const Word = ({ children, href }) => {
|
|
|
86200
86115
|
return children.split("").map((letter, index) => /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$11.letter, children: letter }, letter + index));
|
|
86201
86116
|
}, [children]);
|
|
86202
86117
|
if (href) {
|
|
86203
|
-
return /* @__PURE__ */ jsxRuntime.jsx("a", { className:
|
|
86118
|
+
return /* @__PURE__ */ jsxRuntime.jsx("a", { className: clsx(styles$11.word, styles$11.link), children: content });
|
|
86204
86119
|
}
|
|
86205
86120
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$11.word, children: content });
|
|
86206
86121
|
};
|
|
@@ -86238,16 +86153,16 @@ const styles$10 = {
|
|
|
86238
86153
|
second: second$1};
|
|
86239
86154
|
|
|
86240
86155
|
const ShakingText = ({ children }) => /* @__PURE__ */ jsxRuntime.jsxs("span", { className: styles$10.root, children: [
|
|
86241
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
86156
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$10.text, styles$10.first), children }),
|
|
86242
86157
|
children,
|
|
86243
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
86158
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$10.text, styles$10.second), children })
|
|
86244
86159
|
] });
|
|
86245
86160
|
|
|
86246
86161
|
const root$W = "_root_ijw1m_1";
|
|
86247
86162
|
const styles$$ = {
|
|
86248
86163
|
root: root$W};
|
|
86249
86164
|
|
|
86250
|
-
const ShiningText = ({ children, className = "" }) => /* @__PURE__ */ jsxRuntime.jsx("span", { className:
|
|
86165
|
+
const ShiningText = ({ children, className = "" }) => /* @__PURE__ */ jsxRuntime.jsx("span", { className: clsx(styles$$.root, className), children });
|
|
86251
86166
|
|
|
86252
86167
|
const root$V = "_root_wb10x_1";
|
|
86253
86168
|
const word = "_word_wb10x_12";
|
|
@@ -86388,7 +86303,7 @@ const Toast = ({
|
|
|
86388
86303
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
86389
86304
|
"div",
|
|
86390
86305
|
{
|
|
86391
|
-
className:
|
|
86306
|
+
className: clsx(styles$W.toast, className, { [styles$W.visible]: visible }),
|
|
86392
86307
|
role: "alert",
|
|
86393
86308
|
onClick: onDismiss,
|
|
86394
86309
|
onKeyDown: (e) => {
|
|
@@ -86485,7 +86400,7 @@ const Toasts = ({ container, maxQueue = 4 }) => {
|
|
|
86485
86400
|
children: toasts.map((t, index) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
86486
86401
|
Toast,
|
|
86487
86402
|
{
|
|
86488
|
-
className:
|
|
86403
|
+
className: clsx(
|
|
86489
86404
|
styles$W.toastItem,
|
|
86490
86405
|
toasts.length === index + 1 ? styles$W.first : toasts.length === index + 2 ? styles$W.second : toasts.length === index + 3 ? styles$W.third : styles$W.forth
|
|
86491
86406
|
),
|
|
@@ -86515,7 +86430,7 @@ const Filter = ({ children, defaultActive = false }) => {
|
|
|
86515
86430
|
"button",
|
|
86516
86431
|
{
|
|
86517
86432
|
type: "button",
|
|
86518
|
-
className:
|
|
86433
|
+
className: clsx(styles$V.button, { [styles$V.active]: isActive }),
|
|
86519
86434
|
onClick: () => setIsActive((prev) => !prev),
|
|
86520
86435
|
children
|
|
86521
86436
|
}
|
|
@@ -86573,7 +86488,7 @@ const Duck = () => {
|
|
|
86573
86488
|
scheduleAnimation();
|
|
86574
86489
|
return cleanup;
|
|
86575
86490
|
}, []);
|
|
86576
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
86491
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$U.root, { [styles$U.animating]: animating }), children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$U.sideToSide, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$U.upAndDown, children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { className: styles$U.duck, viewBox: "-100 -300 600 600", children: [
|
|
86577
86492
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
86578
86493
|
"path",
|
|
86579
86494
|
{
|
|
@@ -86663,7 +86578,7 @@ const DynamicIsland = ({ position = "fixed" }) => /* @__PURE__ */ jsxRuntime.jsx
|
|
|
86663
86578
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
86664
86579
|
"div",
|
|
86665
86580
|
{
|
|
86666
|
-
className:
|
|
86581
|
+
className: clsx(styles$T.root, { [styles$T.static]: position === "static" }),
|
|
86667
86582
|
children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$T.island, children: [
|
|
86668
86583
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$T.notch }),
|
|
86669
86584
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -86839,13 +86754,13 @@ const SegmentedControls = ({
|
|
|
86839
86754
|
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
86840
86755
|
"nav",
|
|
86841
86756
|
{
|
|
86842
|
-
className:
|
|
86757
|
+
className: clsx(styles$R.root, { [styles$R.isVertical]: isVertical }),
|
|
86843
86758
|
role: "tablist",
|
|
86844
86759
|
children: options.map((option) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
86845
86760
|
"button",
|
|
86846
86761
|
{
|
|
86847
86762
|
role: "button",
|
|
86848
|
-
className:
|
|
86763
|
+
className: clsx(styles$R.control, {
|
|
86849
86764
|
[styles$R.active]: activeId === option.id
|
|
86850
86765
|
}),
|
|
86851
86766
|
onClick: () => onChange(option.id),
|
|
@@ -86882,10 +86797,10 @@ const ShapeSelection = ({ children }) => {
|
|
|
86882
86797
|
}
|
|
86883
86798
|
}, []);
|
|
86884
86799
|
return /* @__PURE__ */ jsxRuntime.jsxs("span", { ref, className: styles$Q.root, children: [
|
|
86885
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
86886
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
86887
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
86888
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
86800
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$Q.dot, styles$Q.topLeft) }),
|
|
86801
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$Q.dot, styles$Q.topRight) }),
|
|
86802
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$Q.dot, styles$Q.bottomLeft) }),
|
|
86803
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$Q.dot, styles$Q.bottomRight) }),
|
|
86889
86804
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$Q.content, children }),
|
|
86890
86805
|
rect && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$Q.size, children: [
|
|
86891
86806
|
Math.round(rect.width),
|
|
@@ -86933,7 +86848,7 @@ const Appearance = ({ type = "reveal" }) => {
|
|
|
86933
86848
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
86934
86849
|
"div",
|
|
86935
86850
|
{
|
|
86936
|
-
className:
|
|
86851
|
+
className: clsx(styles$P.root, {
|
|
86937
86852
|
[styles$P.reveal]: type === "reveal",
|
|
86938
86853
|
[styles$P.fadeIn]: type === "fade-in",
|
|
86939
86854
|
[styles$P.glow]: type === "glow"
|
|
@@ -92185,7 +92100,7 @@ const BackgroundSlider = () => {
|
|
|
92185
92100
|
sensitivity: 1
|
|
92186
92101
|
},
|
|
92187
92102
|
children: SLIDES.map((slide, index) => /* @__PURE__ */ jsxRuntime.jsxs(SwiperSlide, { className: styles$M.swiperSlide, children: [
|
|
92188
|
-
/* @__PURE__ */ jsxRuntime.jsx("h1", { className:
|
|
92103
|
+
/* @__PURE__ */ jsxRuntime.jsx("h1", { className: clsx(styles$M.title, styles$M[`slide${index + 1}`]), children: slide.title }),
|
|
92189
92104
|
/* @__PURE__ */ jsxRuntime.jsx("img", { className: styles$M.image, src: slide.image, alt: "" })
|
|
92190
92105
|
] }, slide.title))
|
|
92191
92106
|
}
|
|
@@ -92257,7 +92172,7 @@ const BouncyClock = () => {
|
|
|
92257
92172
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$K.root, children: digits.map((digit, i) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
92258
92173
|
"span",
|
|
92259
92174
|
{
|
|
92260
|
-
className:
|
|
92175
|
+
className: clsx(styles$K.digit, {
|
|
92261
92176
|
[styles$K.bounce]: prev[i] !== void 0 && digit !== prev[i]
|
|
92262
92177
|
}),
|
|
92263
92178
|
children: digit
|
|
@@ -92319,7 +92234,7 @@ const BreakingProgress = ({ loop = false }) => {
|
|
|
92319
92234
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
92320
92235
|
"div",
|
|
92321
92236
|
{
|
|
92322
|
-
className:
|
|
92237
|
+
className: clsx(styles$J.root, {
|
|
92323
92238
|
[styles$J.falling]: falling,
|
|
92324
92239
|
[styles$J.resetting]: resetting
|
|
92325
92240
|
}),
|
|
@@ -92372,7 +92287,7 @@ const CardDetails = () => {
|
|
|
92372
92287
|
alt: "image"
|
|
92373
92288
|
}
|
|
92374
92289
|
) }),
|
|
92375
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
92290
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$I.detail, styles$I.detail1), children: [
|
|
92376
92291
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$I.detailText, children: "SPACIOUS" }),
|
|
92377
92292
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$I.detailIcon, children: /* @__PURE__ */ jsxRuntime.jsx(RxPlus, { className: styles$I.icon }) }),
|
|
92378
92293
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$I.detailImage, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -92384,7 +92299,7 @@ const CardDetails = () => {
|
|
|
92384
92299
|
}
|
|
92385
92300
|
) })
|
|
92386
92301
|
] }),
|
|
92387
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
92302
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$I.detail, styles$I.detail2), children: [
|
|
92388
92303
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: styles$I.detailText, children: "ACCESSIBLE" }),
|
|
92389
92304
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$I.detailIcon, children: /* @__PURE__ */ jsxRuntime.jsx(RxPlus, { className: styles$I.icon }) }),
|
|
92390
92305
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$I.detailImage, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -92479,7 +92394,7 @@ const styles$E = {
|
|
|
92479
92394
|
};
|
|
92480
92395
|
|
|
92481
92396
|
const File = ({ type }) => {
|
|
92482
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
92397
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$E.icon, styles$E[type]), children: /* @__PURE__ */ jsxRuntime.jsx("i", { className: styles$E.i, title: type }) });
|
|
92483
92398
|
};
|
|
92484
92399
|
const FileIcons = () => {
|
|
92485
92400
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$E.root, children: [
|
|
@@ -92740,7 +92655,7 @@ const options = [
|
|
|
92740
92655
|
];
|
|
92741
92656
|
const LayeredComponents = () => {
|
|
92742
92657
|
const [rotated, setRotated] = React.useState(true);
|
|
92743
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
92658
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$y.root, { [styles$y.checked]: rotated }), children: [
|
|
92744
92659
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
92745
92660
|
"input",
|
|
92746
92661
|
{
|
|
@@ -96141,7 +96056,7 @@ const Lock = () => {
|
|
|
96141
96056
|
}
|
|
96142
96057
|
};
|
|
96143
96058
|
const asynchronously = async () => {
|
|
96144
|
-
const Flickity = await Promise.resolve().then(() => require('./index-
|
|
96059
|
+
const Flickity = await Promise.resolve().then(() => require('./index-CmzNwlcp.cjs')).then(n => n.index).then((m) => m.default);
|
|
96145
96060
|
if (!rowsRef.current || !window) return;
|
|
96146
96061
|
const rows = rowsRef.current.children;
|
|
96147
96062
|
for (let i = 0, len = rows.length; i < len; i++) {
|
|
@@ -96183,7 +96098,7 @@ const Lock = () => {
|
|
|
96183
96098
|
"div",
|
|
96184
96099
|
{
|
|
96185
96100
|
ref: lockRef,
|
|
96186
|
-
className:
|
|
96101
|
+
className: clsx(styles$x.root, { [styles$x.verified]: isVerified }),
|
|
96187
96102
|
children: [
|
|
96188
96103
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$x.screen, children: [
|
|
96189
96104
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$x.code, children: code }),
|
|
@@ -96299,9 +96214,9 @@ const MotionDigits = () => {
|
|
|
96299
96214
|
/* @__PURE__ */ jsxRuntime.jsx("option", { value: 2e4, label: "20000" })
|
|
96300
96215
|
] }),
|
|
96301
96216
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$w.number, children: [
|
|
96302
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
96303
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
96304
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
96217
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$w.left, { [styles$w.animate]: animateLeft }), children: left }),
|
|
96218
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$w.separator, { [styles$w.show]: separator }), children: "," }),
|
|
96219
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$w.right, { [styles$w.animate]: animateRight }), children: right })
|
|
96305
96220
|
] })
|
|
96306
96221
|
] }),
|
|
96307
96222
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -96648,7 +96563,7 @@ const NotificationBell = () => {
|
|
|
96648
96563
|
"button",
|
|
96649
96564
|
{
|
|
96650
96565
|
type: "button",
|
|
96651
|
-
className:
|
|
96566
|
+
className: clsx(styles$s.root, { [styles$s.active]: isActive }),
|
|
96652
96567
|
onClick: () => {
|
|
96653
96568
|
read();
|
|
96654
96569
|
},
|
|
@@ -96728,7 +96643,7 @@ const PhotoZoom = () => {
|
|
|
96728
96643
|
"video",
|
|
96729
96644
|
{
|
|
96730
96645
|
ref: videoRef,
|
|
96731
|
-
className:
|
|
96646
|
+
className: clsx(styles$r.video, {
|
|
96732
96647
|
[styles$r.flippingIn]: isFlippingIn,
|
|
96733
96648
|
[styles$r.flippingOut]: isFlippingOut
|
|
96734
96649
|
}),
|
|
@@ -96746,14 +96661,14 @@ const PhotoZoom = () => {
|
|
|
96746
96661
|
"div",
|
|
96747
96662
|
{
|
|
96748
96663
|
ref: flashRef,
|
|
96749
|
-
className:
|
|
96664
|
+
className: clsx(styles$r.flash, { [styles$r.shutterClick]: isShuttering })
|
|
96750
96665
|
}
|
|
96751
96666
|
)
|
|
96752
96667
|
] }),
|
|
96753
96668
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$r.controls, children: ZOOM_OPTIONS.map((zoom) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
96754
96669
|
"button",
|
|
96755
96670
|
{
|
|
96756
|
-
className:
|
|
96671
|
+
className: clsx(styles$r.control, {
|
|
96757
96672
|
[styles$r.active]: zoom.level === activeZoom
|
|
96758
96673
|
}),
|
|
96759
96674
|
onClick: () => {
|
|
@@ -97012,7 +96927,7 @@ const RealisticSmoke = () => {
|
|
|
97012
96927
|
height: "397",
|
|
97013
96928
|
x: "83",
|
|
97014
96929
|
y: "112.564",
|
|
97015
|
-
className:
|
|
96930
|
+
className: clsx(styles$o.blick, { [styles$o.ready]: renderBlick1 }),
|
|
97016
96931
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
97017
96932
|
"animate",
|
|
97018
96933
|
{
|
|
@@ -97049,7 +96964,7 @@ const RealisticSmoke = () => {
|
|
|
97049
96964
|
height: "287",
|
|
97050
96965
|
x: "69",
|
|
97051
96966
|
y: "19.2447",
|
|
97052
|
-
className:
|
|
96967
|
+
className: clsx(styles$o.blick, { [styles$o.ready]: renderBlick2 }),
|
|
97053
96968
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
97054
96969
|
"animate",
|
|
97055
96970
|
{
|
|
@@ -97084,7 +96999,7 @@ const RevealImageAnimation = () => {
|
|
|
97084
96999
|
"img",
|
|
97085
97000
|
{
|
|
97086
97001
|
src: "https://picsum.photos/id/995/250/250",
|
|
97087
|
-
className:
|
|
97002
|
+
className: clsx(styles$n.root, { [styles$n.alt]: true })
|
|
97088
97003
|
}
|
|
97089
97004
|
)
|
|
97090
97005
|
);
|
|
@@ -101985,9 +101900,9 @@ const BaileysBead = ({ theta, offset = 0, opa }) => {
|
|
|
101985
101900
|
opacity: opacity.to((o) => o * mapOpacityToAngle())
|
|
101986
101901
|
},
|
|
101987
101902
|
children: [
|
|
101988
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
101989
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
101990
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
101903
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$j.bead, styles$j.bead3) }),
|
|
101904
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$j.bead, styles$j.bead2) }),
|
|
101905
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$j.bead, styles$j.bead1) })
|
|
101991
101906
|
]
|
|
101992
101907
|
}
|
|
101993
101908
|
)
|
|
@@ -102125,7 +102040,7 @@ const SpeechToText = () => {
|
|
|
102125
102040
|
recognitionRef.current = null;
|
|
102126
102041
|
}
|
|
102127
102042
|
}, []);
|
|
102128
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className:
|
|
102043
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx(styles$i.container, { [styles$i.speaking]: isSpeaking }), children: [
|
|
102129
102044
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
102130
102045
|
"textarea",
|
|
102131
102046
|
{
|
|
@@ -102177,12 +102092,12 @@ const styles$h = {
|
|
|
102177
102092
|
|
|
102178
102093
|
const StaticSolarEclipse = () => {
|
|
102179
102094
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$h.root, children: [
|
|
102180
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102181
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102182
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102183
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102184
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102185
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
102095
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer1) }),
|
|
102096
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer2) }),
|
|
102097
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer3) }),
|
|
102098
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer4) }),
|
|
102099
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer5) }),
|
|
102100
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$h.layer, styles$h.layer6) })
|
|
102186
102101
|
] });
|
|
102187
102102
|
};
|
|
102188
102103
|
|
|
@@ -102585,7 +102500,7 @@ const TextImageHover = () => {
|
|
|
102585
102500
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
102586
102501
|
"image",
|
|
102587
102502
|
{
|
|
102588
|
-
className:
|
|
102503
|
+
className: clsx(styles$c.image, {
|
|
102589
102504
|
[styles$c.active]: activeIndex === 0
|
|
102590
102505
|
}),
|
|
102591
102506
|
x: "50",
|
|
@@ -102598,7 +102513,7 @@ const TextImageHover = () => {
|
|
|
102598
102513
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
102599
102514
|
"image",
|
|
102600
102515
|
{
|
|
102601
|
-
className:
|
|
102516
|
+
className: clsx(styles$c.image, {
|
|
102602
102517
|
[styles$c.active]: activeIndex === 1
|
|
102603
102518
|
}),
|
|
102604
102519
|
x: "50",
|
|
@@ -102649,7 +102564,7 @@ const BlurVignette = ({
|
|
|
102649
102564
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
102650
102565
|
"div",
|
|
102651
102566
|
{
|
|
102652
|
-
className:
|
|
102567
|
+
className: clsx(styles$a.root, className),
|
|
102653
102568
|
style: {
|
|
102654
102569
|
"--background-image-url": `url(${url})`,
|
|
102655
102570
|
"--radius": `${radius}px`,
|
|
@@ -105256,7 +105171,7 @@ const FORMATTERS = {
|
|
|
105256
105171
|
})
|
|
105257
105172
|
};
|
|
105258
105173
|
const Character = ({ className, parentKey, value }) => {
|
|
105259
|
-
return /* @__PURE__ */ jsxRuntime.jsx("span", { "data-value": value, className:
|
|
105174
|
+
return /* @__PURE__ */ jsxRuntime.jsx("span", { "data-value": value, className: clsx(styles$7.character, className), children: /* @__PURE__ */ jsxRuntime.jsxs("span", { className: styles$7.track, style: { "--v": value }, children: [
|
|
105260
105175
|
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "9" }),
|
|
105261
105176
|
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9].map((val, index) => {
|
|
105262
105177
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { children: val }, `${parentKey}--${index}`);
|
|
@@ -105327,7 +105242,7 @@ const Counter = () => {
|
|
|
105327
105242
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
105328
105243
|
"span",
|
|
105329
105244
|
{
|
|
105330
|
-
className:
|
|
105245
|
+
className: clsx(styles$7.character, styles$7.symbol),
|
|
105331
105246
|
children: character
|
|
105332
105247
|
},
|
|
105333
105248
|
index
|
|
@@ -105372,7 +105287,7 @@ const Illumination = () => {
|
|
|
105372
105287
|
"div",
|
|
105373
105288
|
{
|
|
105374
105289
|
ref,
|
|
105375
|
-
className:
|
|
105290
|
+
className: clsx(styles$6.root, { [styles$6.loading]: loading }),
|
|
105376
105291
|
onPointerMove: (e) => {
|
|
105377
105292
|
setInteracted(true);
|
|
105378
105293
|
const { x, y } = e.nativeEvent;
|
|
@@ -105461,7 +105376,7 @@ const LandingXYScroll = () => {
|
|
|
105461
105376
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
105462
105377
|
"section",
|
|
105463
105378
|
{
|
|
105464
|
-
className:
|
|
105379
|
+
className: clsx(styles$5.section, styles$5.sectionPin),
|
|
105465
105380
|
id: "sectionPin",
|
|
105466
105381
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: styles$5.pinWrapSticky, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: styles$5.pinWrap, children: [
|
|
105467
105382
|
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: styles$5.h2, children: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." }),
|
|
@@ -105507,7 +105422,7 @@ const LandingXYScroll = () => {
|
|
|
105507
105422
|
alt: ""
|
|
105508
105423
|
}
|
|
105509
105424
|
),
|
|
105510
|
-
/* @__PURE__ */ jsxRuntime.jsxs("h2", { className:
|
|
105425
|
+
/* @__PURE__ */ jsxRuntime.jsxs("h2", { className: clsx(styles$5.h2, styles$5.credit), children: [
|
|
105511
105426
|
"Created by",
|
|
105512
105427
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
105513
105428
|
"a",
|
|
@@ -113483,10 +113398,10 @@ rotate(${15 * (Math.random() - 0.5)}deg)`;
|
|
|
113483
113398
|
}
|
|
113484
113399
|
const ThanosDisappearEffect = () => {
|
|
113485
113400
|
useWindowReady.useOklch();
|
|
113486
|
-
return /* @__PURE__ */ jsxRuntime.jsx("div", { className:
|
|
113401
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: clsx(styles$3.container, styles$3.grid), children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
113487
113402
|
"div",
|
|
113488
113403
|
{
|
|
113489
|
-
className:
|
|
113404
|
+
className: clsx(
|
|
113490
113405
|
styles$3.item,
|
|
113491
113406
|
styles$3.disintegrationTarget,
|
|
113492
113407
|
styles$3.grid,
|