@geowiki/design-system 0.16.9-dev.9 → 0.16.10-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -57,8 +57,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
57
57
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
58
58
 
59
59
  // src/index.tsx
60
- var src_exports = {};
61
- __export(src_exports, {
60
+ var index_exports = {};
61
+ __export(index_exports, {
62
62
  AboutInfoItem: () => AboutInfoItem,
63
63
  Accordion: () => Accordion,
64
64
  AccordionContent: () => AccordionContent,
@@ -134,6 +134,7 @@ __export(src_exports, {
134
134
  Carousel: () => Carousel,
135
135
  CarouselContent: () => CarouselContent,
136
136
  CarouselItem: () => CarouselItem,
137
+ CarouselItemList: () => CarouselItemList,
137
138
  CarouselNext: () => CarouselNext,
138
139
  CarouselPrevious: () => CarouselPrevious,
139
140
  ChartLineDotsIcon: () => ChartLineDotsIcon,
@@ -356,6 +357,7 @@ __export(src_exports, {
356
357
  Skeleton: () => Skeleton,
357
358
  Slider: () => Slider,
358
359
  StopWatchCheckIcon: () => StopWatchCheckIcon,
360
+ SummaryCard: () => SummaryCard,
359
361
  Switch: () => Switch,
360
362
  Table: () => Table,
361
363
  TableBody: () => TableBody,
@@ -410,7 +412,7 @@ __export(src_exports, {
410
412
  useFormField: () => useFormField,
411
413
  useToast: () => useToast
412
414
  });
413
- module.exports = __toCommonJS(src_exports);
415
+ module.exports = __toCommonJS(index_exports);
414
416
 
415
417
  // src/lib/utils.ts
416
418
  var import_clsx = require("clsx");
@@ -438,16 +440,19 @@ var getPages = (totalPages, currentPage) => {
438
440
  const hasRightSpill = totalPages - endPage > 1;
439
441
  const spillOffset = totalNumbers - (pages.length + 3);
440
442
  switch (true) {
443
+ // handle: (1) ... {6} [7] (8)
441
444
  case (hasLeftSpill && !hasRightSpill): {
442
445
  const extraPages = range(startPage - spillOffset, startPage - 1);
443
446
  pages = ["SPACER", ...extraPages, ...pages];
444
447
  break;
445
448
  }
449
+ // handle: (1) {2} [3] {4} ... (8)
446
450
  case (!hasLeftSpill && hasRightSpill): {
447
451
  const extraPages = range(endPage + 1, endPage + spillOffset);
448
452
  pages = [...pages, ...extraPages, "SPACER"];
449
453
  break;
450
454
  }
455
+ // handle: (1) ... {3} [4] {5} ... (8)
451
456
  case (hasLeftSpill && hasRightSpill):
452
457
  default: {
453
458
  pages = ["SPACER", ...pages, "SPACER"];
@@ -1571,316 +1576,19 @@ var DropdownMenuShortcut = (_a) => {
1571
1576
  DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
1572
1577
 
1573
1578
  // src/components/ui/form.tsx
1574
- var React14 = __toESM(require("react"));
1579
+ var React13 = __toESM(require("react"));
1575
1580
  var import_react_slot2 = require("@radix-ui/react-slot");
1576
-
1577
- // ../../node_modules/react-hook-form/dist/index.esm.mjs
1578
- var import_react = __toESM(require("react"), 1);
1579
- var isCheckBoxInput = (element) => element.type === "checkbox";
1580
- var isDateObject = (value) => value instanceof Date;
1581
- var isNullOrUndefined = (value) => value == null;
1582
- var isObjectType = (value) => typeof value === "object";
1583
- var isObject = (value) => !isNullOrUndefined(value) && !Array.isArray(value) && isObjectType(value) && !isDateObject(value);
1584
- var getEventValue = (event) => isObject(event) && event.target ? isCheckBoxInput(event.target) ? event.target.checked : event.target.value : event;
1585
- var getNodeParentName = (name) => name.substring(0, name.search(/\.\d+(\.|$)/)) || name;
1586
- var isNameInFieldArray = (names, name) => names.has(getNodeParentName(name));
1587
- var isPlainObject = (tempObject) => {
1588
- const prototypeCopy = tempObject.constructor && tempObject.constructor.prototype;
1589
- return isObject(prototypeCopy) && prototypeCopy.hasOwnProperty("isPrototypeOf");
1590
- };
1591
- var isWeb = typeof window !== "undefined" && typeof window.HTMLElement !== "undefined" && typeof document !== "undefined";
1592
- function cloneObject(data) {
1593
- let copy;
1594
- const isArray = Array.isArray(data);
1595
- if (data instanceof Date) {
1596
- copy = new Date(data);
1597
- } else if (data instanceof Set) {
1598
- copy = new Set(data);
1599
- } else if (!(isWeb && (data instanceof Blob || data instanceof FileList)) && (isArray || isObject(data))) {
1600
- copy = isArray ? [] : {};
1601
- if (!isArray && !isPlainObject(data)) {
1602
- copy = data;
1603
- } else {
1604
- for (const key in data) {
1605
- if (data.hasOwnProperty(key)) {
1606
- copy[key] = cloneObject(data[key]);
1607
- }
1608
- }
1609
- }
1610
- } else {
1611
- return data;
1612
- }
1613
- return copy;
1614
- }
1615
- var compact = (value) => Array.isArray(value) ? value.filter(Boolean) : [];
1616
- var isUndefined = (val) => val === void 0;
1617
- var get = (object, path, defaultValue) => {
1618
- if (!path || !isObject(object)) {
1619
- return defaultValue;
1620
- }
1621
- const result = compact(path.split(/[,[\].]+?/)).reduce((result2, key) => isNullOrUndefined(result2) ? result2 : result2[key], object);
1622
- return isUndefined(result) || result === object ? isUndefined(object[path]) ? defaultValue : object[path] : result;
1623
- };
1624
- var isBoolean = (value) => typeof value === "boolean";
1625
- var isKey = (value) => /^\w*$/.test(value);
1626
- var stringToPath = (input) => compact(input.replace(/["|']|\]/g, "").split(/\.|\[/));
1627
- var set = (object, path, value) => {
1628
- let index = -1;
1629
- const tempPath = isKey(path) ? [path] : stringToPath(path);
1630
- const length = tempPath.length;
1631
- const lastIndex = length - 1;
1632
- while (++index < length) {
1633
- const key = tempPath[index];
1634
- let newValue = value;
1635
- if (index !== lastIndex) {
1636
- const objValue = object[key];
1637
- newValue = isObject(objValue) || Array.isArray(objValue) ? objValue : !isNaN(+tempPath[index + 1]) ? [] : {};
1638
- }
1639
- if (key === "__proto__") {
1640
- return;
1641
- }
1642
- object[key] = newValue;
1643
- object = object[key];
1644
- }
1645
- return object;
1646
- };
1647
- var EVENTS = {
1648
- BLUR: "blur",
1649
- FOCUS_OUT: "focusout",
1650
- CHANGE: "change"
1651
- };
1652
- var VALIDATION_MODE = {
1653
- onBlur: "onBlur",
1654
- onChange: "onChange",
1655
- onSubmit: "onSubmit",
1656
- onTouched: "onTouched",
1657
- all: "all"
1658
- };
1659
- var HookFormContext = import_react.default.createContext(null);
1660
- var useFormContext = () => import_react.default.useContext(HookFormContext);
1661
- var FormProvider = (props) => {
1662
- const _a = props, { children } = _a, data = __objRest(_a, ["children"]);
1663
- return import_react.default.createElement(HookFormContext.Provider, { value: data }, children);
1664
- };
1665
- var getProxyFormState = (formState, control, localProxyFormState, isRoot = true) => {
1666
- const result = {
1667
- defaultValues: control._defaultValues
1668
- };
1669
- for (const key in formState) {
1670
- Object.defineProperty(result, key, {
1671
- get: () => {
1672
- const _key = key;
1673
- if (control._proxyFormState[_key] !== VALIDATION_MODE.all) {
1674
- control._proxyFormState[_key] = !isRoot || VALIDATION_MODE.all;
1675
- }
1676
- localProxyFormState && (localProxyFormState[_key] = true);
1677
- return formState[_key];
1678
- }
1679
- });
1680
- }
1681
- return result;
1682
- };
1683
- var isEmptyObject = (value) => isObject(value) && !Object.keys(value).length;
1684
- var shouldRenderFormState = (formStateData, _proxyFormState, updateFormState, isRoot) => {
1685
- updateFormState(formStateData);
1686
- const _a = formStateData, { name } = _a, formState = __objRest(_a, ["name"]);
1687
- return isEmptyObject(formState) || Object.keys(formState).length >= Object.keys(_proxyFormState).length || Object.keys(formState).find((key) => _proxyFormState[key] === (!isRoot || VALIDATION_MODE.all));
1688
- };
1689
- var convertToArrayPayload = (value) => Array.isArray(value) ? value : [value];
1690
- var shouldSubscribeByName = (name, signalName, exact) => !name || !signalName || name === signalName || convertToArrayPayload(name).some((currentName) => currentName && (exact ? currentName === signalName : currentName.startsWith(signalName) || signalName.startsWith(currentName)));
1691
- function useSubscribe(props) {
1692
- const _props = import_react.default.useRef(props);
1693
- _props.current = props;
1694
- import_react.default.useEffect(() => {
1695
- const subscription = !props.disabled && _props.current.subject && _props.current.subject.subscribe({
1696
- next: _props.current.next
1697
- });
1698
- return () => {
1699
- subscription && subscription.unsubscribe();
1700
- };
1701
- }, [props.disabled]);
1702
- }
1703
- function useFormState(props) {
1704
- const methods = useFormContext();
1705
- const { control = methods.control, disabled, name, exact } = props || {};
1706
- const [formState, updateFormState] = import_react.default.useState(control._formState);
1707
- const _mounted = import_react.default.useRef(true);
1708
- const _localProxyFormState = import_react.default.useRef({
1709
- isDirty: false,
1710
- isLoading: false,
1711
- dirtyFields: false,
1712
- touchedFields: false,
1713
- validatingFields: false,
1714
- isValidating: false,
1715
- isValid: false,
1716
- errors: false
1717
- });
1718
- const _name = import_react.default.useRef(name);
1719
- _name.current = name;
1720
- useSubscribe({
1721
- disabled,
1722
- next: (value) => _mounted.current && shouldSubscribeByName(_name.current, value.name, exact) && shouldRenderFormState(value, _localProxyFormState.current, control._updateFormState) && updateFormState(__spreadValues(__spreadValues({}, control._formState), value)),
1723
- subject: control._subjects.state
1724
- });
1725
- import_react.default.useEffect(() => {
1726
- _mounted.current = true;
1727
- _localProxyFormState.current.isValid && control._updateValid(true);
1728
- return () => {
1729
- _mounted.current = false;
1730
- };
1731
- }, [control]);
1732
- return getProxyFormState(formState, control, _localProxyFormState.current, false);
1733
- }
1734
- var isString = (value) => typeof value === "string";
1735
- var generateWatchOutput = (names, _names, formValues, isGlobal, defaultValue) => {
1736
- if (isString(names)) {
1737
- isGlobal && _names.watch.add(names);
1738
- return get(formValues, names, defaultValue);
1739
- }
1740
- if (Array.isArray(names)) {
1741
- return names.map((fieldName) => (isGlobal && _names.watch.add(fieldName), get(formValues, fieldName)));
1742
- }
1743
- isGlobal && (_names.watchAll = true);
1744
- return formValues;
1745
- };
1746
- function useWatch(props) {
1747
- const methods = useFormContext();
1748
- const { control = methods.control, name, defaultValue, disabled, exact } = props || {};
1749
- const _name = import_react.default.useRef(name);
1750
- _name.current = name;
1751
- useSubscribe({
1752
- disabled,
1753
- subject: control._subjects.values,
1754
- next: (formState) => {
1755
- if (shouldSubscribeByName(_name.current, formState.name, exact)) {
1756
- updateValue(cloneObject(generateWatchOutput(_name.current, control._names, formState.values || control._formValues, false, defaultValue)));
1757
- }
1758
- }
1759
- });
1760
- const [value, updateValue] = import_react.default.useState(control._getWatch(name, defaultValue));
1761
- import_react.default.useEffect(() => control._removeUnmounted());
1762
- return value;
1763
- }
1764
- function useController(props) {
1765
- const methods = useFormContext();
1766
- const { name, disabled, control = methods.control, shouldUnregister } = props;
1767
- const isArrayField = isNameInFieldArray(control._names.array, name);
1768
- const value = useWatch({
1769
- control,
1770
- name,
1771
- defaultValue: get(control._formValues, name, get(control._defaultValues, name, props.defaultValue)),
1772
- exact: true
1773
- });
1774
- const formState = useFormState({
1775
- control,
1776
- name,
1777
- exact: true
1778
- });
1779
- const _registerProps = import_react.default.useRef(control.register(name, __spreadValues(__spreadProps(__spreadValues({}, props.rules), {
1780
- value
1781
- }), isBoolean(props.disabled) ? { disabled: props.disabled } : {})));
1782
- import_react.default.useEffect(() => {
1783
- const _shouldUnregisterField = control._options.shouldUnregister || shouldUnregister;
1784
- const updateMounted = (name2, value2) => {
1785
- const field = get(control._fields, name2);
1786
- if (field && field._f) {
1787
- field._f.mount = value2;
1788
- }
1789
- };
1790
- updateMounted(name, true);
1791
- if (_shouldUnregisterField) {
1792
- const value2 = cloneObject(get(control._options.defaultValues, name));
1793
- set(control._defaultValues, name, value2);
1794
- if (isUndefined(get(control._formValues, name))) {
1795
- set(control._formValues, name, value2);
1796
- }
1797
- }
1798
- return () => {
1799
- (isArrayField ? _shouldUnregisterField && !control._state.action : _shouldUnregisterField) ? control.unregister(name) : updateMounted(name, false);
1800
- };
1801
- }, [name, control, isArrayField, shouldUnregister]);
1802
- import_react.default.useEffect(() => {
1803
- if (get(control._fields, name)) {
1804
- control._updateDisabledField({
1805
- disabled,
1806
- fields: control._fields,
1807
- name,
1808
- value: get(control._fields, name)._f.value
1809
- });
1810
- }
1811
- }, [disabled, name, control]);
1812
- return {
1813
- field: __spreadProps(__spreadValues({
1814
- name,
1815
- value
1816
- }, isBoolean(disabled) || formState.disabled ? { disabled: formState.disabled || disabled } : {}), {
1817
- onChange: import_react.default.useCallback((event) => _registerProps.current.onChange({
1818
- target: {
1819
- value: getEventValue(event),
1820
- name
1821
- },
1822
- type: EVENTS.CHANGE
1823
- }), [name]),
1824
- onBlur: import_react.default.useCallback(() => _registerProps.current.onBlur({
1825
- target: {
1826
- value: get(control._formValues, name),
1827
- name
1828
- },
1829
- type: EVENTS.BLUR
1830
- }), [name, control]),
1831
- ref: import_react.default.useCallback((elm) => {
1832
- const field = get(control._fields, name);
1833
- if (field && elm) {
1834
- field._f.ref = {
1835
- focus: () => elm.focus(),
1836
- select: () => elm.select(),
1837
- setCustomValidity: (message) => elm.setCustomValidity(message),
1838
- reportValidity: () => elm.reportValidity()
1839
- };
1840
- }
1841
- }, [control._fields, name])
1842
- }),
1843
- formState,
1844
- fieldState: Object.defineProperties({}, {
1845
- invalid: {
1846
- enumerable: true,
1847
- get: () => !!get(formState.errors, name)
1848
- },
1849
- isDirty: {
1850
- enumerable: true,
1851
- get: () => !!get(formState.dirtyFields, name)
1852
- },
1853
- isTouched: {
1854
- enumerable: true,
1855
- get: () => !!get(formState.touchedFields, name)
1856
- },
1857
- isValidating: {
1858
- enumerable: true,
1859
- get: () => !!get(formState.validatingFields, name)
1860
- },
1861
- error: {
1862
- enumerable: true,
1863
- get: () => get(formState.errors, name)
1864
- }
1865
- })
1866
- };
1867
- }
1868
- var Controller = (props) => props.render(useController(props));
1869
- var defaultOptions = {
1870
- mode: VALIDATION_MODE.onSubmit,
1871
- reValidateMode: VALIDATION_MODE.onChange,
1872
- shouldFocusError: true
1873
- };
1581
+ var import_react_hook_form = require("react-hook-form");
1874
1582
 
1875
1583
  // src/components/ui/label.tsx
1876
- var React13 = __toESM(require("react"));
1584
+ var React12 = __toESM(require("react"));
1877
1585
  var LabelPrimitive = __toESM(require("@radix-ui/react-label"));
1878
1586
  var import_class_variance_authority4 = require("class-variance-authority");
1879
1587
  var import_jsx_runtime14 = require("react/jsx-runtime");
1880
1588
  var labelVariants = (0, import_class_variance_authority4.cva)(
1881
1589
  "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
1882
1590
  );
1883
- var Label3 = React13.forwardRef((_a, ref) => {
1591
+ var Label3 = React12.forwardRef((_a, ref) => {
1884
1592
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
1885
1593
  return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1886
1594
  LabelPrimitive.Root,
@@ -1894,18 +1602,18 @@ Label3.displayName = LabelPrimitive.Root.displayName;
1894
1602
 
1895
1603
  // src/components/ui/form.tsx
1896
1604
  var import_jsx_runtime15 = require("react/jsx-runtime");
1897
- var Form = FormProvider;
1898
- var FormFieldContext = React14.createContext(
1605
+ var Form = import_react_hook_form.FormProvider;
1606
+ var FormFieldContext = React13.createContext(
1899
1607
  {}
1900
1608
  );
1901
1609
  var FormField = (_a) => {
1902
1610
  var props = __objRest(_a, []);
1903
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Controller, __spreadValues({}, props)) });
1611
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_react_hook_form.Controller, __spreadValues({}, props)) });
1904
1612
  };
1905
1613
  var useFormField = () => {
1906
- const fieldContext = React14.useContext(FormFieldContext);
1907
- const itemContext = React14.useContext(FormItemContext);
1908
- const { getFieldState, formState } = useFormContext();
1614
+ const fieldContext = React13.useContext(FormFieldContext);
1615
+ const itemContext = React13.useContext(FormItemContext);
1616
+ const { getFieldState, formState } = (0, import_react_hook_form.useFormContext)();
1909
1617
  const fieldState = getFieldState(fieldContext.name, formState);
1910
1618
  if (!fieldContext) {
1911
1619
  throw new Error("useFormField should be used within <FormField>");
@@ -1919,16 +1627,16 @@ var useFormField = () => {
1919
1627
  formMessageId: `${id}-form-item-message`
1920
1628
  }, fieldState);
1921
1629
  };
1922
- var FormItemContext = React14.createContext(
1630
+ var FormItemContext = React13.createContext(
1923
1631
  {}
1924
1632
  );
1925
- var FormItem = React14.forwardRef((_a, ref) => {
1633
+ var FormItem = React13.forwardRef((_a, ref) => {
1926
1634
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
1927
- const id = React14.useId();
1635
+ const id = React13.useId();
1928
1636
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", __spreadValues({ ref, className: cn("", className) }, props)) });
1929
1637
  });
1930
1638
  FormItem.displayName = "FormItem";
1931
- var FormLabel = React14.forwardRef((_a, ref) => {
1639
+ var FormLabel = React13.forwardRef((_a, ref) => {
1932
1640
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
1933
1641
  const { error, formItemId } = useFormField();
1934
1642
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -1941,7 +1649,7 @@ var FormLabel = React14.forwardRef((_a, ref) => {
1941
1649
  );
1942
1650
  });
1943
1651
  FormLabel.displayName = "FormLabel";
1944
- var FormControl = React14.forwardRef((_a, ref) => {
1652
+ var FormControl = React13.forwardRef((_a, ref) => {
1945
1653
  var props = __objRest(_a, []);
1946
1654
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
1947
1655
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -1955,7 +1663,7 @@ var FormControl = React14.forwardRef((_a, ref) => {
1955
1663
  );
1956
1664
  });
1957
1665
  FormControl.displayName = "FormControl";
1958
- var FormDescription = React14.forwardRef((_a, ref) => {
1666
+ var FormDescription = React13.forwardRef((_a, ref) => {
1959
1667
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
1960
1668
  const { formDescriptionId } = useFormField();
1961
1669
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -1968,7 +1676,7 @@ var FormDescription = React14.forwardRef((_a, ref) => {
1968
1676
  );
1969
1677
  });
1970
1678
  FormDescription.displayName = "FormDescription";
1971
- var FormMessage = React14.forwardRef((_a, ref) => {
1679
+ var FormMessage = React13.forwardRef((_a, ref) => {
1972
1680
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
1973
1681
  const { error, formMessageId } = useFormField();
1974
1682
  const body = error ? String(error == null ? void 0 : error.message) : children;
@@ -1989,12 +1697,12 @@ var FormMessage = React14.forwardRef((_a, ref) => {
1989
1697
  FormMessage.displayName = "FormMessage";
1990
1698
 
1991
1699
  // src/components/ui/hover-card.tsx
1992
- var React15 = __toESM(require("react"));
1700
+ var React14 = __toESM(require("react"));
1993
1701
  var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"));
1994
1702
  var import_jsx_runtime16 = require("react/jsx-runtime");
1995
1703
  var HoverCard = HoverCardPrimitive.Root;
1996
1704
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
1997
- var HoverCardContent = React15.forwardRef((_a, ref) => {
1705
+ var HoverCardContent = React14.forwardRef((_a, ref) => {
1998
1706
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
1999
1707
  return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2000
1708
  HoverCardPrimitive.Content,
@@ -2012,9 +1720,9 @@ var HoverCardContent = React15.forwardRef((_a, ref) => {
2012
1720
  HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
2013
1721
 
2014
1722
  // src/components/ui/input.tsx
2015
- var React16 = __toESM(require("react"));
1723
+ var React15 = __toESM(require("react"));
2016
1724
  var import_jsx_runtime17 = require("react/jsx-runtime");
2017
- var Input = React16.forwardRef(
1725
+ var Input = React15.forwardRef(
2018
1726
  (_a, ref) => {
2019
1727
  var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
2020
1728
  return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
@@ -2033,7 +1741,7 @@ var Input = React16.forwardRef(
2033
1741
  Input.displayName = "Input";
2034
1742
 
2035
1743
  // src/components/ui/menubar.tsx
2036
- var React17 = __toESM(require("react"));
1744
+ var React16 = __toESM(require("react"));
2037
1745
  var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"));
2038
1746
  var import_lucide_react6 = require("lucide-react");
2039
1747
  var import_jsx_runtime18 = require("react/jsx-runtime");
@@ -2042,7 +1750,7 @@ var MenubarGroup = MenubarPrimitive.Group;
2042
1750
  var MenubarPortal = MenubarPrimitive.Portal;
2043
1751
  var MenubarSub = MenubarPrimitive.Sub;
2044
1752
  var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
2045
- var Menubar = React17.forwardRef((_a, ref) => {
1753
+ var Menubar = React16.forwardRef((_a, ref) => {
2046
1754
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2047
1755
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2048
1756
  MenubarPrimitive.Root,
@@ -2056,7 +1764,7 @@ var Menubar = React17.forwardRef((_a, ref) => {
2056
1764
  );
2057
1765
  });
2058
1766
  Menubar.displayName = MenubarPrimitive.Root.displayName;
2059
- var MenubarTrigger = React17.forwardRef((_a, ref) => {
1767
+ var MenubarTrigger = React16.forwardRef((_a, ref) => {
2060
1768
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2061
1769
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2062
1770
  MenubarPrimitive.Trigger,
@@ -2070,7 +1778,7 @@ var MenubarTrigger = React17.forwardRef((_a, ref) => {
2070
1778
  );
2071
1779
  });
2072
1780
  MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
2073
- var MenubarSubTrigger = React17.forwardRef((_a, ref) => {
1781
+ var MenubarSubTrigger = React16.forwardRef((_a, ref) => {
2074
1782
  var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
2075
1783
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2076
1784
  MenubarPrimitive.SubTrigger,
@@ -2090,7 +1798,7 @@ var MenubarSubTrigger = React17.forwardRef((_a, ref) => {
2090
1798
  );
2091
1799
  });
2092
1800
  MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
2093
- var MenubarSubContent = React17.forwardRef((_a, ref) => {
1801
+ var MenubarSubContent = React16.forwardRef((_a, ref) => {
2094
1802
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2095
1803
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2096
1804
  MenubarPrimitive.SubContent,
@@ -2104,7 +1812,7 @@ var MenubarSubContent = React17.forwardRef((_a, ref) => {
2104
1812
  );
2105
1813
  });
2106
1814
  MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
2107
- var MenubarContent = React17.forwardRef(
1815
+ var MenubarContent = React16.forwardRef(
2108
1816
  (_a, ref) => {
2109
1817
  var _b = _a, { className, align = "start", alignOffset = -4, sideOffset = 8 } = _b, props = __objRest(_b, ["className", "align", "alignOffset", "sideOffset"]);
2110
1818
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
@@ -2123,7 +1831,7 @@ var MenubarContent = React17.forwardRef(
2123
1831
  }
2124
1832
  );
2125
1833
  MenubarContent.displayName = MenubarPrimitive.Content.displayName;
2126
- var MenubarItem = React17.forwardRef((_a, ref) => {
1834
+ var MenubarItem = React16.forwardRef((_a, ref) => {
2127
1835
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
2128
1836
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2129
1837
  MenubarPrimitive.Item,
@@ -2138,7 +1846,7 @@ var MenubarItem = React17.forwardRef((_a, ref) => {
2138
1846
  );
2139
1847
  });
2140
1848
  MenubarItem.displayName = MenubarPrimitive.Item.displayName;
2141
- var MenubarCheckboxItem = React17.forwardRef((_a, ref) => {
1849
+ var MenubarCheckboxItem = React16.forwardRef((_a, ref) => {
2142
1850
  var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
2143
1851
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2144
1852
  MenubarPrimitive.CheckboxItem,
@@ -2158,7 +1866,7 @@ var MenubarCheckboxItem = React17.forwardRef((_a, ref) => {
2158
1866
  );
2159
1867
  });
2160
1868
  MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
2161
- var MenubarRadioItem = React17.forwardRef((_a, ref) => {
1869
+ var MenubarRadioItem = React16.forwardRef((_a, ref) => {
2162
1870
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2163
1871
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2164
1872
  MenubarPrimitive.RadioItem,
@@ -2177,7 +1885,7 @@ var MenubarRadioItem = React17.forwardRef((_a, ref) => {
2177
1885
  );
2178
1886
  });
2179
1887
  MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
2180
- var MenubarLabel = React17.forwardRef((_a, ref) => {
1888
+ var MenubarLabel = React16.forwardRef((_a, ref) => {
2181
1889
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
2182
1890
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2183
1891
  MenubarPrimitive.Label,
@@ -2192,7 +1900,7 @@ var MenubarLabel = React17.forwardRef((_a, ref) => {
2192
1900
  );
2193
1901
  });
2194
1902
  MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
2195
- var MenubarSeparator = React17.forwardRef((_a, ref) => {
1903
+ var MenubarSeparator = React16.forwardRef((_a, ref) => {
2196
1904
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2197
1905
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2198
1906
  MenubarPrimitive.Separator,
@@ -2222,12 +1930,12 @@ var MenubarShortcut = (_a) => {
2222
1930
  MenubarShortcut.displayname = "MenubarShortcut";
2223
1931
 
2224
1932
  // src/components/ui/navigation-menu.tsx
2225
- var React18 = __toESM(require("react"));
1933
+ var React17 = __toESM(require("react"));
2226
1934
  var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"));
2227
1935
  var import_class_variance_authority5 = require("class-variance-authority");
2228
1936
  var import_lucide_react7 = require("lucide-react");
2229
1937
  var import_jsx_runtime19 = require("react/jsx-runtime");
2230
- var NavigationMenu = React18.forwardRef((_a, ref) => {
1938
+ var NavigationMenu = React17.forwardRef((_a, ref) => {
2231
1939
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2232
1940
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2233
1941
  NavigationMenuPrimitive.Root,
@@ -2246,7 +1954,7 @@ var NavigationMenu = React18.forwardRef((_a, ref) => {
2246
1954
  );
2247
1955
  });
2248
1956
  NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
2249
- var NavigationMenuList = React18.forwardRef((_a, ref) => {
1957
+ var NavigationMenuList = React17.forwardRef((_a, ref) => {
2250
1958
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2251
1959
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2252
1960
  NavigationMenuPrimitive.List,
@@ -2264,7 +1972,7 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
2264
1972
  var navigationMenuTriggerStyle = (0, import_class_variance_authority5.cva)(
2265
1973
  "group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50"
2266
1974
  );
2267
- var NavigationMenuTrigger = React18.forwardRef((_a, ref) => {
1975
+ var NavigationMenuTrigger = React17.forwardRef((_a, ref) => {
2268
1976
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2269
1977
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2270
1978
  NavigationMenuPrimitive.Trigger,
@@ -2287,7 +1995,7 @@ var NavigationMenuTrigger = React18.forwardRef((_a, ref) => {
2287
1995
  );
2288
1996
  });
2289
1997
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
2290
- var NavigationMenuContent = React18.forwardRef((_a, ref) => {
1998
+ var NavigationMenuContent = React17.forwardRef((_a, ref) => {
2291
1999
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2292
2000
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2293
2001
  NavigationMenuPrimitive.Content,
@@ -2302,7 +2010,7 @@ var NavigationMenuContent = React18.forwardRef((_a, ref) => {
2302
2010
  });
2303
2011
  NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
2304
2012
  var NavigationMenuLink = NavigationMenuPrimitive.Link;
2305
- var NavigationMenuViewport = React18.forwardRef((_a, ref) => {
2013
+ var NavigationMenuViewport = React17.forwardRef((_a, ref) => {
2306
2014
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2307
2015
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2308
2016
  NavigationMenuPrimitive.Viewport,
@@ -2316,7 +2024,7 @@ var NavigationMenuViewport = React18.forwardRef((_a, ref) => {
2316
2024
  ) });
2317
2025
  });
2318
2026
  NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
2319
- var NavigationMenuIndicator = React18.forwardRef((_a, ref) => {
2027
+ var NavigationMenuIndicator = React17.forwardRef((_a, ref) => {
2320
2028
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2321
2029
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2322
2030
  NavigationMenuPrimitive.Indicator,
@@ -2334,13 +2042,13 @@ var NavigationMenuIndicator = React18.forwardRef((_a, ref) => {
2334
2042
  NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
2335
2043
 
2336
2044
  // src/components/ui/popover.tsx
2337
- var React19 = __toESM(require("react"));
2045
+ var React18 = __toESM(require("react"));
2338
2046
  var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"));
2339
2047
  var import_jsx_runtime20 = require("react/jsx-runtime");
2340
2048
  var Popover = PopoverPrimitive.Root;
2341
2049
  var PopoverTrigger = PopoverPrimitive.Trigger;
2342
2050
  var PopoverAnchor = PopoverPrimitive.Anchor;
2343
- var PopoverContent = React19.forwardRef((_a, ref) => {
2051
+ var PopoverContent = React18.forwardRef((_a, ref) => {
2344
2052
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
2345
2053
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2346
2054
  PopoverPrimitive.Content,
@@ -2358,10 +2066,10 @@ var PopoverContent = React19.forwardRef((_a, ref) => {
2358
2066
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
2359
2067
 
2360
2068
  // src/components/ui/progress.tsx
2361
- var React20 = __toESM(require("react"));
2069
+ var React19 = __toESM(require("react"));
2362
2070
  var ProgressPrimitive = __toESM(require("@radix-ui/react-progress"));
2363
2071
  var import_jsx_runtime21 = require("react/jsx-runtime");
2364
- var Progress = React20.forwardRef((_a, ref) => {
2072
+ var Progress = React19.forwardRef((_a, ref) => {
2365
2073
  var _b = _a, { className, value } = _b, props = __objRest(_b, ["className", "value"]);
2366
2074
  return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2367
2075
  ProgressPrimitive.Root,
@@ -2385,11 +2093,11 @@ var Progress = React20.forwardRef((_a, ref) => {
2385
2093
  Progress.displayName = ProgressPrimitive.Root.displayName;
2386
2094
 
2387
2095
  // src/components/ui/radio-group.tsx
2388
- var React21 = __toESM(require("react"));
2096
+ var React20 = __toESM(require("react"));
2389
2097
  var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"));
2390
2098
  var import_lucide_react8 = require("lucide-react");
2391
2099
  var import_jsx_runtime22 = require("react/jsx-runtime");
2392
- var RadioGroup4 = React21.forwardRef((_a, ref) => {
2100
+ var RadioGroup4 = React20.forwardRef((_a, ref) => {
2393
2101
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2394
2102
  return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2395
2103
  RadioGroupPrimitive.Root,
@@ -2401,7 +2109,7 @@ var RadioGroup4 = React21.forwardRef((_a, ref) => {
2401
2109
  );
2402
2110
  });
2403
2111
  RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
2404
- var RadioGroupItem = React21.forwardRef((_a, ref) => {
2112
+ var RadioGroupItem = React20.forwardRef((_a, ref) => {
2405
2113
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2406
2114
  return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2407
2115
  RadioGroupPrimitive.Item,
@@ -2419,10 +2127,10 @@ var RadioGroupItem = React21.forwardRef((_a, ref) => {
2419
2127
  RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
2420
2128
 
2421
2129
  // src/components/ui/scroll-area.tsx
2422
- var React22 = __toESM(require("react"));
2130
+ var React21 = __toESM(require("react"));
2423
2131
  var ScrollAreaPrimitive = __toESM(require("@radix-ui/react-scroll-area"));
2424
2132
  var import_jsx_runtime23 = require("react/jsx-runtime");
2425
- var ScrollArea = React22.forwardRef((_a, ref) => {
2133
+ var ScrollArea = React21.forwardRef((_a, ref) => {
2426
2134
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2427
2135
  return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
2428
2136
  ScrollAreaPrimitive.Root,
@@ -2439,7 +2147,7 @@ var ScrollArea = React22.forwardRef((_a, ref) => {
2439
2147
  );
2440
2148
  });
2441
2149
  ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
2442
- var ScrollBar = React22.forwardRef((_a, ref) => {
2150
+ var ScrollBar = React21.forwardRef((_a, ref) => {
2443
2151
  var _b = _a, { className, orientation = "vertical" } = _b, props = __objRest(_b, ["className", "orientation"]);
2444
2152
  return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2445
2153
  ScrollAreaPrimitive.ScrollAreaScrollbar,
@@ -2460,14 +2168,14 @@ var ScrollBar = React22.forwardRef((_a, ref) => {
2460
2168
  ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
2461
2169
 
2462
2170
  // src/components/ui/select.tsx
2463
- var React23 = __toESM(require("react"));
2171
+ var React22 = __toESM(require("react"));
2464
2172
  var SelectPrimitive = __toESM(require("@radix-ui/react-select"));
2465
2173
  var import_lucide_react9 = require("lucide-react");
2466
2174
  var import_jsx_runtime24 = require("react/jsx-runtime");
2467
2175
  var Select = SelectPrimitive.Root;
2468
2176
  var SelectGroup = SelectPrimitive.Group;
2469
2177
  var SelectValue = SelectPrimitive.Value;
2470
- var SelectTrigger = React23.forwardRef((_a, ref) => {
2178
+ var SelectTrigger = React22.forwardRef((_a, ref) => {
2471
2179
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2472
2180
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2473
2181
  SelectPrimitive.Trigger,
@@ -2486,7 +2194,7 @@ var SelectTrigger = React23.forwardRef((_a, ref) => {
2486
2194
  );
2487
2195
  });
2488
2196
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
2489
- var SelectContent = React23.forwardRef((_a, ref) => {
2197
+ var SelectContent = React22.forwardRef((_a, ref) => {
2490
2198
  var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
2491
2199
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2492
2200
  SelectPrimitive.Content,
@@ -2513,7 +2221,7 @@ var SelectContent = React23.forwardRef((_a, ref) => {
2513
2221
  ) });
2514
2222
  });
2515
2223
  SelectContent.displayName = SelectPrimitive.Content.displayName;
2516
- var SelectLabel = React23.forwardRef((_a, ref) => {
2224
+ var SelectLabel = React22.forwardRef((_a, ref) => {
2517
2225
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2518
2226
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2519
2227
  SelectPrimitive.Label,
@@ -2524,7 +2232,7 @@ var SelectLabel = React23.forwardRef((_a, ref) => {
2524
2232
  );
2525
2233
  });
2526
2234
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
2527
- var SelectItem = React23.forwardRef((_a, ref) => {
2235
+ var SelectItem = React22.forwardRef((_a, ref) => {
2528
2236
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2529
2237
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2530
2238
  SelectPrimitive.Item,
@@ -2543,7 +2251,7 @@ var SelectItem = React23.forwardRef((_a, ref) => {
2543
2251
  );
2544
2252
  });
2545
2253
  SelectItem.displayName = SelectPrimitive.Item.displayName;
2546
- var SelectSeparator = React23.forwardRef((_a, ref) => {
2254
+ var SelectSeparator = React22.forwardRef((_a, ref) => {
2547
2255
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2548
2256
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2549
2257
  SelectPrimitive.Separator,
@@ -2556,10 +2264,10 @@ var SelectSeparator = React23.forwardRef((_a, ref) => {
2556
2264
  SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
2557
2265
 
2558
2266
  // src/components/ui/separator.tsx
2559
- var React24 = __toESM(require("react"));
2267
+ var React23 = __toESM(require("react"));
2560
2268
  var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"));
2561
2269
  var import_jsx_runtime25 = require("react/jsx-runtime");
2562
- var Separator5 = React24.forwardRef(
2270
+ var Separator5 = React23.forwardRef(
2563
2271
  (_a, ref) => {
2564
2272
  var _b = _a, { className, orientation = "horizontal", decorative = true } = _b, props = __objRest(_b, ["className", "orientation", "decorative"]);
2565
2273
  return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
@@ -2580,7 +2288,7 @@ var Separator5 = React24.forwardRef(
2580
2288
  Separator5.displayName = SeparatorPrimitive.Root.displayName;
2581
2289
 
2582
2290
  // src/components/ui/sheet.tsx
2583
- var React25 = __toESM(require("react"));
2291
+ var React24 = __toESM(require("react"));
2584
2292
  var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"));
2585
2293
  var import_react_icons3 = require("@radix-ui/react-icons");
2586
2294
  var import_class_variance_authority6 = require("class-variance-authority");
@@ -2589,7 +2297,7 @@ var Sheet = SheetPrimitive.Root;
2589
2297
  var SheetTrigger = SheetPrimitive.Trigger;
2590
2298
  var SheetClose = SheetPrimitive.Close;
2591
2299
  var SheetPortal = SheetPrimitive.Portal;
2592
- var SheetOverlay = React25.forwardRef((_a, ref) => {
2300
+ var SheetOverlay = React24.forwardRef((_a, ref) => {
2593
2301
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2594
2302
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2595
2303
  SheetPrimitive.Overlay,
@@ -2620,7 +2328,7 @@ var sheetVariants = (0, import_class_variance_authority6.cva)(
2620
2328
  }
2621
2329
  }
2622
2330
  );
2623
- var SheetContent = React25.forwardRef((_a, ref) => {
2331
+ var SheetContent = React24.forwardRef((_a, ref) => {
2624
2332
  var _b = _a, { side = "right", className, children } = _b, props = __objRest(_b, ["side", "className", "children"]);
2625
2333
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(SheetPortal, { children: [
2626
2334
  /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(SheetOverlay, {}),
@@ -2676,7 +2384,7 @@ var SheetFooter = (_a) => {
2676
2384
  );
2677
2385
  };
2678
2386
  SheetFooter.displayName = "SheetFooter";
2679
- var SheetTitle = React25.forwardRef((_a, ref) => {
2387
+ var SheetTitle = React24.forwardRef((_a, ref) => {
2680
2388
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2681
2389
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2682
2390
  SheetPrimitive.Title,
@@ -2687,7 +2395,7 @@ var SheetTitle = React25.forwardRef((_a, ref) => {
2687
2395
  );
2688
2396
  });
2689
2397
  SheetTitle.displayName = SheetPrimitive.Title.displayName;
2690
- var SheetDescription = React25.forwardRef((_a, ref) => {
2398
+ var SheetDescription = React24.forwardRef((_a, ref) => {
2691
2399
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2692
2400
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2693
2401
  SheetPrimitive.Description,
@@ -2716,10 +2424,10 @@ function Skeleton(_a) {
2716
2424
  }
2717
2425
 
2718
2426
  // src/components/ui/slider.tsx
2719
- var React26 = __toESM(require("react"));
2427
+ var React25 = __toESM(require("react"));
2720
2428
  var SliderPrimitive = __toESM(require("@radix-ui/react-slider"));
2721
2429
  var import_jsx_runtime28 = require("react/jsx-runtime");
2722
- var Slider = React26.forwardRef((_a, ref) => {
2430
+ var Slider = React25.forwardRef((_a, ref) => {
2723
2431
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2724
2432
  const value = props.value || props.defaultValue;
2725
2433
  const thumbs = value && Array.isArray(value) ? value.length : 1;
@@ -2748,10 +2456,10 @@ var Slider = React26.forwardRef((_a, ref) => {
2748
2456
  Slider.displayName = SliderPrimitive.Root.displayName;
2749
2457
 
2750
2458
  // src/components/ui/switch.tsx
2751
- var React27 = __toESM(require("react"));
2459
+ var React26 = __toESM(require("react"));
2752
2460
  var SwitchPrimitives = __toESM(require("@radix-ui/react-switch"));
2753
2461
  var import_jsx_runtime29 = require("react/jsx-runtime");
2754
- var Switch = React27.forwardRef((_a, ref) => {
2462
+ var Switch = React26.forwardRef((_a, ref) => {
2755
2463
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2756
2464
  return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2757
2465
  SwitchPrimitives.Root,
@@ -2776,9 +2484,9 @@ var Switch = React27.forwardRef((_a, ref) => {
2776
2484
  Switch.displayName = SwitchPrimitives.Root.displayName;
2777
2485
 
2778
2486
  // src/components/ui/table.tsx
2779
- var React28 = __toESM(require("react"));
2487
+ var React27 = __toESM(require("react"));
2780
2488
  var import_jsx_runtime30 = require("react/jsx-runtime");
2781
- var Table = React28.forwardRef((_a, ref) => {
2489
+ var Table = React27.forwardRef((_a, ref) => {
2782
2490
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2783
2491
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2784
2492
  "table",
@@ -2789,12 +2497,12 @@ var Table = React28.forwardRef((_a, ref) => {
2789
2497
  ) });
2790
2498
  });
2791
2499
  Table.displayName = "Table";
2792
- var TableHeader = React28.forwardRef((_a, ref) => {
2500
+ var TableHeader = React27.forwardRef((_a, ref) => {
2793
2501
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2794
2502
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("thead", __spreadValues({ ref, className: cn("[&_tr]:border-b", className) }, props));
2795
2503
  });
2796
2504
  TableHeader.displayName = "TableHeader";
2797
- var TableBody = React28.forwardRef((_a, ref) => {
2505
+ var TableBody = React27.forwardRef((_a, ref) => {
2798
2506
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2799
2507
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2800
2508
  "tbody",
@@ -2805,7 +2513,7 @@ var TableBody = React28.forwardRef((_a, ref) => {
2805
2513
  );
2806
2514
  });
2807
2515
  TableBody.displayName = "TableBody";
2808
- var TableFooter = React28.forwardRef((_a, ref) => {
2516
+ var TableFooter = React27.forwardRef((_a, ref) => {
2809
2517
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2810
2518
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2811
2519
  "tfoot",
@@ -2816,7 +2524,7 @@ var TableFooter = React28.forwardRef((_a, ref) => {
2816
2524
  );
2817
2525
  });
2818
2526
  TableFooter.displayName = "TableFooter";
2819
- var TableRow = React28.forwardRef((_a, ref) => {
2527
+ var TableRow = React27.forwardRef((_a, ref) => {
2820
2528
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2821
2529
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2822
2530
  "tr",
@@ -2830,7 +2538,7 @@ var TableRow = React28.forwardRef((_a, ref) => {
2830
2538
  );
2831
2539
  });
2832
2540
  TableRow.displayName = "TableRow";
2833
- var TableHead = React28.forwardRef((_a, ref) => {
2541
+ var TableHead = React27.forwardRef((_a, ref) => {
2834
2542
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2835
2543
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2836
2544
  "th",
@@ -2844,7 +2552,7 @@ var TableHead = React28.forwardRef((_a, ref) => {
2844
2552
  );
2845
2553
  });
2846
2554
  TableHead.displayName = "TableHead";
2847
- var TableCell = React28.forwardRef((_a, ref) => {
2555
+ var TableCell = React27.forwardRef((_a, ref) => {
2848
2556
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2849
2557
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2850
2558
  "td",
@@ -2855,7 +2563,7 @@ var TableCell = React28.forwardRef((_a, ref) => {
2855
2563
  );
2856
2564
  });
2857
2565
  TableCell.displayName = "TableCell";
2858
- var TableCaption = React28.forwardRef((_a, ref) => {
2566
+ var TableCaption = React27.forwardRef((_a, ref) => {
2859
2567
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2860
2568
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2861
2569
  "caption",
@@ -2868,11 +2576,11 @@ var TableCaption = React28.forwardRef((_a, ref) => {
2868
2576
  TableCaption.displayName = "TableCaption";
2869
2577
 
2870
2578
  // src/components/ui/tabs.tsx
2871
- var React29 = __toESM(require("react"));
2579
+ var React28 = __toESM(require("react"));
2872
2580
  var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
2873
2581
  var import_jsx_runtime31 = require("react/jsx-runtime");
2874
2582
  var Tabs = TabsPrimitive.Root;
2875
- var TabsList = React29.forwardRef((_a, ref) => {
2583
+ var TabsList = React28.forwardRef((_a, ref) => {
2876
2584
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2877
2585
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2878
2586
  TabsPrimitive.List,
@@ -2886,7 +2594,7 @@ var TabsList = React29.forwardRef((_a, ref) => {
2886
2594
  );
2887
2595
  });
2888
2596
  TabsList.displayName = TabsPrimitive.List.displayName;
2889
- var TabsTrigger = React29.forwardRef((_a, ref) => {
2597
+ var TabsTrigger = React28.forwardRef((_a, ref) => {
2890
2598
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2891
2599
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2892
2600
  TabsPrimitive.Trigger,
@@ -2900,7 +2608,7 @@ var TabsTrigger = React29.forwardRef((_a, ref) => {
2900
2608
  );
2901
2609
  });
2902
2610
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
2903
- var TabsContent = React29.forwardRef((_a, ref) => {
2611
+ var TabsContent = React28.forwardRef((_a, ref) => {
2904
2612
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2905
2613
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2906
2614
  TabsPrimitive.Content,
@@ -2948,9 +2656,9 @@ var TagList = (props) => {
2948
2656
  var tag_list_default = TagList;
2949
2657
 
2950
2658
  // src/components/ui/textarea.tsx
2951
- var React30 = __toESM(require("react"));
2659
+ var React29 = __toESM(require("react"));
2952
2660
  var import_jsx_runtime34 = require("react/jsx-runtime");
2953
- var Textarea = React30.forwardRef(
2661
+ var Textarea = React29.forwardRef(
2954
2662
  (_a, ref) => {
2955
2663
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2956
2664
  return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
@@ -2968,13 +2676,13 @@ var Textarea = React30.forwardRef(
2968
2676
  Textarea.displayName = "Textarea";
2969
2677
 
2970
2678
  // src/components/ui/toast.tsx
2971
- var React31 = __toESM(require("react"));
2679
+ var React30 = __toESM(require("react"));
2972
2680
  var ToastPrimitives = __toESM(require("@radix-ui/react-toast"));
2973
2681
  var import_class_variance_authority7 = require("class-variance-authority");
2974
2682
  var import_lucide_react10 = require("lucide-react");
2975
2683
  var import_jsx_runtime35 = require("react/jsx-runtime");
2976
2684
  var ToastProvider = ToastPrimitives.Provider;
2977
- var ToastViewport = React31.forwardRef((_a, ref) => {
2685
+ var ToastViewport = React30.forwardRef((_a, ref) => {
2978
2686
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2979
2687
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
2980
2688
  ToastPrimitives.Viewport,
@@ -3002,7 +2710,7 @@ var toastVariants = (0, import_class_variance_authority7.cva)(
3002
2710
  }
3003
2711
  }
3004
2712
  );
3005
- var Toast = React31.forwardRef((_a, ref) => {
2713
+ var Toast = React30.forwardRef((_a, ref) => {
3006
2714
  var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
3007
2715
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3008
2716
  ToastPrimitives.Root,
@@ -3013,7 +2721,7 @@ var Toast = React31.forwardRef((_a, ref) => {
3013
2721
  );
3014
2722
  });
3015
2723
  Toast.displayName = ToastPrimitives.Root.displayName;
3016
- var ToastAction = React31.forwardRef((_a, ref) => {
2724
+ var ToastAction = React30.forwardRef((_a, ref) => {
3017
2725
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3018
2726
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3019
2727
  ToastPrimitives.Action,
@@ -3027,7 +2735,7 @@ var ToastAction = React31.forwardRef((_a, ref) => {
3027
2735
  );
3028
2736
  });
3029
2737
  ToastAction.displayName = ToastPrimitives.Action.displayName;
3030
- var ToastClose = React31.forwardRef((_a, ref) => {
2738
+ var ToastClose = React30.forwardRef((_a, ref) => {
3031
2739
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3032
2740
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3033
2741
  ToastPrimitives.Close,
@@ -3044,7 +2752,7 @@ var ToastClose = React31.forwardRef((_a, ref) => {
3044
2752
  );
3045
2753
  });
3046
2754
  ToastClose.displayName = ToastPrimitives.Close.displayName;
3047
- var ToastTitle = React31.forwardRef((_a, ref) => {
2755
+ var ToastTitle = React30.forwardRef((_a, ref) => {
3048
2756
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3049
2757
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3050
2758
  ToastPrimitives.Title,
@@ -3055,7 +2763,7 @@ var ToastTitle = React31.forwardRef((_a, ref) => {
3055
2763
  );
3056
2764
  });
3057
2765
  ToastTitle.displayName = ToastPrimitives.Title.displayName;
3058
- var ToastDescription = React31.forwardRef((_a, ref) => {
2766
+ var ToastDescription = React30.forwardRef((_a, ref) => {
3059
2767
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3060
2768
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3061
2769
  ToastPrimitives.Description,
@@ -3068,7 +2776,7 @@ var ToastDescription = React31.forwardRef((_a, ref) => {
3068
2776
  ToastDescription.displayName = ToastPrimitives.Description.displayName;
3069
2777
 
3070
2778
  // src/components/ui/use-toast.ts
3071
- var React32 = __toESM(require("react"));
2779
+ var React31 = __toESM(require("react"));
3072
2780
  var TOAST_LIMIT = 1;
3073
2781
  var TOAST_REMOVE_DELAY = 1e6;
3074
2782
  var count = 0;
@@ -3152,8 +2860,7 @@ function toast(_a) {
3152
2860
  id,
3153
2861
  open: true,
3154
2862
  onOpenChange: (open) => {
3155
- if (!open)
3156
- dismiss();
2863
+ if (!open) dismiss();
3157
2864
  }
3158
2865
  })
3159
2866
  });
@@ -3164,8 +2871,8 @@ function toast(_a) {
3164
2871
  };
3165
2872
  }
3166
2873
  function useToast() {
3167
- const [state, setState] = React32.useState(memoryState);
3168
- React32.useEffect(() => {
2874
+ const [state, setState] = React31.useState(memoryState);
2875
+ React31.useEffect(() => {
3169
2876
  listeners.push(setState);
3170
2877
  return () => {
3171
2878
  const index = listeners.indexOf(setState);
@@ -3201,7 +2908,7 @@ function Toaster() {
3201
2908
  }
3202
2909
 
3203
2910
  // src/components/ui/toggle.tsx
3204
- var React33 = __toESM(require("react"));
2911
+ var React32 = __toESM(require("react"));
3205
2912
  var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"));
3206
2913
  var import_class_variance_authority8 = require("class-variance-authority");
3207
2914
  var import_jsx_runtime37 = require("react/jsx-runtime");
@@ -3225,7 +2932,7 @@ var toggleVariants = (0, import_class_variance_authority8.cva)(
3225
2932
  }
3226
2933
  }
3227
2934
  );
3228
- var Toggle = React33.forwardRef((_a, ref) => {
2935
+ var Toggle = React32.forwardRef((_a, ref) => {
3229
2936
  var _b = _a, { className, variant, size } = _b, props = __objRest(_b, ["className", "variant", "size"]);
3230
2937
  return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3231
2938
  TogglePrimitive.Root,
@@ -3238,13 +2945,13 @@ var Toggle = React33.forwardRef((_a, ref) => {
3238
2945
  Toggle.displayName = TogglePrimitive.Root.displayName;
3239
2946
 
3240
2947
  // src/components/ui/tooltip.tsx
3241
- var React34 = __toESM(require("react"));
2948
+ var React33 = __toESM(require("react"));
3242
2949
  var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"));
3243
2950
  var import_jsx_runtime38 = require("react/jsx-runtime");
3244
2951
  var TooltipProvider = TooltipPrimitive.Provider;
3245
2952
  var Tooltip = TooltipPrimitive.Root;
3246
2953
  var TooltipTrigger = TooltipPrimitive.Trigger;
3247
- var TooltipContent = React34.forwardRef((_a, ref) => {
2954
+ var TooltipContent = React33.forwardRef((_a, ref) => {
3248
2955
  var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
3249
2956
  return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3250
2957
  TooltipPrimitive.Content,
@@ -4255,7 +3962,7 @@ var UsersGroup = (_a) => {
4255
3962
 
4256
3963
  // src/components/Shared/CustomTable.tsx
4257
3964
  var import_react_table = require("@tanstack/react-table");
4258
- var import_react2 = require("react");
3965
+ var import_react = require("react");
4259
3966
 
4260
3967
  // src/components/Shared/Pagination.tsx
4261
3968
  var import_uuid = require("uuid");
@@ -4293,8 +4000,7 @@ var Pagination = ({
4293
4000
  variant: "default",
4294
4001
  disabled: !table.getCanPreviousPage(),
4295
4002
  onClick: () => {
4296
- if (!table.getCanPreviousPage())
4297
- return;
4003
+ if (!table.getCanPreviousPage()) return;
4298
4004
  table.setPageIndex(0);
4299
4005
  },
4300
4006
  children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_solid.ChevronDoubleLeftIcon, { width: 24, height: 24 })
@@ -4307,8 +4013,7 @@ var Pagination = ({
4307
4013
  variant: "default",
4308
4014
  disabled: !table.getCanPreviousPage(),
4309
4015
  onClick: () => {
4310
- if (!table.getCanPreviousPage())
4311
- return;
4016
+ if (!table.getCanPreviousPage()) return;
4312
4017
  table.previousPage();
4313
4018
  },
4314
4019
  children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(import_solid.ChevronLeftIcon, { width: 24, height: 24 })
@@ -4360,13 +4065,12 @@ var TableView = ({
4360
4065
  totalCount,
4361
4066
  pageSize
4362
4067
  }) => {
4363
- const renderHeader = (0, import_react2.useCallback)(() => {
4068
+ const renderHeader = (0, import_react.useCallback)(() => {
4364
4069
  const headerGroups = table.getHeaderGroups();
4365
4070
  return headerGroups.map((headerGroup) => {
4366
4071
  const headers = headerGroup.headers;
4367
4072
  return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("tr", { className: "first:hidden", children: headers.map((header) => {
4368
- if (header.isPlaceholder)
4369
- return false;
4073
+ if (header.isPlaceholder) return false;
4370
4074
  return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
4371
4075
  "th",
4372
4076
  {
@@ -4381,7 +4085,7 @@ var TableView = ({
4381
4085
  }) }, headerGroup.id);
4382
4086
  });
4383
4087
  }, [table]);
4384
- const renderBody = (0, import_react2.useCallback)(() => {
4088
+ const renderBody = (0, import_react.useCallback)(() => {
4385
4089
  const rows = table.getRowModel().rows;
4386
4090
  return rows.map((row) => {
4387
4091
  const cells = row.getVisibleCells();
@@ -4454,13 +4158,13 @@ var Loader = () => {
4454
4158
  };
4455
4159
 
4456
4160
  // src/components/Shared/Search.tsx
4457
- var import_react6 = require("react");
4161
+ var import_react5 = require("react");
4458
4162
 
4459
4163
  // src/components/Shared/hooks/useDebounce.ts
4460
- var import_react3 = require("react");
4164
+ var import_react2 = require("react");
4461
4165
  var useDebounce = (value, delay = 800) => {
4462
- const [debouncedValue, setDebouncedValue] = (0, import_react3.useState)(value);
4463
- (0, import_react3.useEffect)(
4166
+ const [debouncedValue, setDebouncedValue] = (0, import_react2.useState)(value);
4167
+ (0, import_react2.useEffect)(
4464
4168
  () => {
4465
4169
  const handler = setTimeout(() => {
4466
4170
  setDebouncedValue(value);
@@ -4476,13 +4180,13 @@ var useDebounce = (value, delay = 800) => {
4476
4180
  };
4477
4181
 
4478
4182
  // src/components/Shared/Input.tsx
4479
- var import_react5 = require("react");
4183
+ var import_react4 = require("react");
4480
4184
 
4481
4185
  // src/components/Shared/Label.tsx
4482
- var import_react4 = require("react");
4186
+ var import_react3 = require("react");
4483
4187
  var LabelPrimitive2 = __toESM(require("@radix-ui/react-label"));
4484
4188
  var import_jsx_runtime83 = require("react/jsx-runtime");
4485
- var Label6 = (0, import_react4.forwardRef)((_a, ref) => {
4189
+ var Label6 = (0, import_react3.forwardRef)((_a, ref) => {
4486
4190
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4487
4191
  return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
4488
4192
  LabelPrimitive2.Root,
@@ -4499,7 +4203,7 @@ Label6.displayName = LabelPrimitive2.Root.displayName;
4499
4203
 
4500
4204
  // src/components/Shared/Input.tsx
4501
4205
  var import_jsx_runtime84 = require("react/jsx-runtime");
4502
- var Input2 = (0, import_react5.forwardRef)(
4206
+ var Input2 = (0, import_react4.forwardRef)(
4503
4207
  (_a, ref) => {
4504
4208
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4505
4209
  const { label, errMessage, id } = props;
@@ -4524,10 +4228,10 @@ Input2.displayName = "Input";
4524
4228
  // src/components/Shared/Search.tsx
4525
4229
  var import_jsx_runtime85 = require("react/jsx-runtime");
4526
4230
  var SearchInput = ({ onUpdate, value }) => {
4527
- const [searchTerm, setSearchTerm] = (0, import_react6.useState)(value);
4528
- const ref = (0, import_react6.useRef)(null);
4231
+ const [searchTerm, setSearchTerm] = (0, import_react5.useState)(value);
4232
+ const ref = (0, import_react5.useRef)(null);
4529
4233
  const searchStr = useDebounce(searchTerm);
4530
- const onSearchEvent = (0, import_react6.useCallback)(
4234
+ const onSearchEvent = (0, import_react5.useCallback)(
4531
4235
  (e) => {
4532
4236
  const target = e.target;
4533
4237
  const { value: value2 } = target;
@@ -4538,11 +4242,10 @@ var SearchInput = ({ onUpdate, value }) => {
4538
4242
  },
4539
4243
  [onUpdate]
4540
4244
  );
4541
- (0, import_react6.useEffect)(() => {
4542
- if (searchStr)
4543
- onUpdate(searchStr);
4245
+ (0, import_react5.useEffect)(() => {
4246
+ if (searchStr) onUpdate(searchStr);
4544
4247
  }, [onUpdate, searchStr]);
4545
- (0, import_react6.useEffect)(() => {
4248
+ (0, import_react5.useEffect)(() => {
4546
4249
  var _a;
4547
4250
  if (value) {
4548
4251
  (_a = ref.current) == null ? void 0 : _a.focus();
@@ -4559,21 +4262,21 @@ var SearchInput = ({ onUpdate, value }) => {
4559
4262
  }
4560
4263
  ) });
4561
4264
  };
4562
- var Search2 = (0, import_react6.memo)(SearchInput);
4265
+ var Search2 = (0, import_react5.memo)(SearchInput);
4563
4266
 
4564
4267
  // src/components/Shared/ThemeChanger.tsx
4565
- var import_react8 = require("react");
4268
+ var import_react7 = require("react");
4566
4269
  var import_lucide_react13 = require("lucide-react");
4567
4270
 
4568
4271
  // src/components/Shared/DropdownMenu.tsx
4569
4272
  var DropdownMenuPrimitive2 = __toESM(require("@radix-ui/react-dropdown-menu"));
4570
4273
  var import_lucide_react12 = require("lucide-react");
4571
- var import_react7 = __toESM(require("react"));
4274
+ var import_react6 = __toESM(require("react"));
4572
4275
  var import_react_icons4 = require("@radix-ui/react-icons");
4573
4276
  var import_jsx_runtime86 = require("react/jsx-runtime");
4574
4277
  var DropdownMenu2 = DropdownMenuPrimitive2.Root;
4575
4278
  var DropdownMenuTrigger2 = DropdownMenuPrimitive2.Trigger;
4576
- var DropdownMenuSubTrigger2 = import_react7.default.forwardRef((_a, ref) => {
4279
+ var DropdownMenuSubTrigger2 = import_react6.default.forwardRef((_a, ref) => {
4577
4280
  var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
4578
4281
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4579
4282
  DropdownMenuPrimitive2.SubTrigger,
@@ -4593,7 +4296,7 @@ var DropdownMenuSubTrigger2 = import_react7.default.forwardRef((_a, ref) => {
4593
4296
  );
4594
4297
  });
4595
4298
  DropdownMenuSubTrigger2.displayName = DropdownMenuPrimitive2.SubTrigger.displayName;
4596
- var DropdownMenuSubContent2 = import_react7.default.forwardRef((_a, ref) => {
4299
+ var DropdownMenuSubContent2 = import_react6.default.forwardRef((_a, ref) => {
4597
4300
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4598
4301
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4599
4302
  DropdownMenuPrimitive2.SubContent,
@@ -4607,7 +4310,7 @@ var DropdownMenuSubContent2 = import_react7.default.forwardRef((_a, ref) => {
4607
4310
  );
4608
4311
  });
4609
4312
  DropdownMenuSubContent2.displayName = DropdownMenuPrimitive2.SubContent.displayName;
4610
- var DropdownMenuContent2 = import_react7.default.forwardRef((_a, ref) => {
4313
+ var DropdownMenuContent2 = import_react6.default.forwardRef((_a, ref) => {
4611
4314
  var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
4612
4315
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(DropdownMenuPrimitive2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4613
4316
  DropdownMenuPrimitive2.Content,
@@ -4623,7 +4326,7 @@ var DropdownMenuContent2 = import_react7.default.forwardRef((_a, ref) => {
4623
4326
  ) });
4624
4327
  });
4625
4328
  DropdownMenuContent2.displayName = DropdownMenuPrimitive2.Content.displayName;
4626
- var DropdownMenuItem2 = import_react7.default.forwardRef((_a, ref) => {
4329
+ var DropdownMenuItem2 = import_react6.default.forwardRef((_a, ref) => {
4627
4330
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
4628
4331
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4629
4332
  DropdownMenuPrimitive2.Item,
@@ -4638,7 +4341,7 @@ var DropdownMenuItem2 = import_react7.default.forwardRef((_a, ref) => {
4638
4341
  );
4639
4342
  });
4640
4343
  DropdownMenuItem2.displayName = DropdownMenuPrimitive2.Item.displayName;
4641
- var DropdownMenuCheckboxItem2 = import_react7.default.forwardRef((_a, ref) => {
4344
+ var DropdownMenuCheckboxItem2 = import_react6.default.forwardRef((_a, ref) => {
4642
4345
  var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
4643
4346
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4644
4347
  DropdownMenuPrimitive2.CheckboxItem,
@@ -4658,7 +4361,7 @@ var DropdownMenuCheckboxItem2 = import_react7.default.forwardRef((_a, ref) => {
4658
4361
  );
4659
4362
  });
4660
4363
  DropdownMenuCheckboxItem2.displayName = DropdownMenuPrimitive2.CheckboxItem.displayName;
4661
- var DropdownMenuRadioItem2 = import_react7.default.forwardRef((_a, ref) => {
4364
+ var DropdownMenuRadioItem2 = import_react6.default.forwardRef((_a, ref) => {
4662
4365
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
4663
4366
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4664
4367
  DropdownMenuPrimitive2.RadioItem,
@@ -4677,7 +4380,7 @@ var DropdownMenuRadioItem2 = import_react7.default.forwardRef((_a, ref) => {
4677
4380
  );
4678
4381
  });
4679
4382
  DropdownMenuRadioItem2.displayName = DropdownMenuPrimitive2.RadioItem.displayName;
4680
- var DropdownMenuLabel2 = import_react7.default.forwardRef((_a, ref) => {
4383
+ var DropdownMenuLabel2 = import_react6.default.forwardRef((_a, ref) => {
4681
4384
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
4682
4385
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4683
4386
  DropdownMenuPrimitive2.Label,
@@ -4692,7 +4395,7 @@ var DropdownMenuLabel2 = import_react7.default.forwardRef((_a, ref) => {
4692
4395
  );
4693
4396
  });
4694
4397
  DropdownMenuLabel2.displayName = DropdownMenuPrimitive2.Label.displayName;
4695
- var DropdownMenuSeparator2 = import_react7.default.forwardRef((_a, ref) => {
4398
+ var DropdownMenuSeparator2 = import_react6.default.forwardRef((_a, ref) => {
4696
4399
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4697
4400
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4698
4401
  DropdownMenuPrimitive2.Separator,
@@ -4722,8 +4425,8 @@ DropdownMenuShortcut2.displayName = "DropdownMenuShortcut";
4722
4425
  var import_jsx_runtime87 = require("react/jsx-runtime");
4723
4426
  var themes = ["light", "dark", "cupcake", "dracula"];
4724
4427
  var ThemeSwitcher = () => {
4725
- const [currTheme, setCurrTheme] = (0, import_react8.useState)("");
4726
- (0, import_react8.useEffect)(() => {
4428
+ const [currTheme, setCurrTheme] = (0, import_react7.useState)("");
4429
+ (0, import_react7.useEffect)(() => {
4727
4430
  const t = getCurrentSelectedTheme();
4728
4431
  setCurrTheme(t);
4729
4432
  document.documentElement.setAttribute("data-theme", t);
@@ -4734,11 +4437,9 @@ var ThemeSwitcher = () => {
4734
4437
  setCurrTheme(theme);
4735
4438
  };
4736
4439
  const getCurrentSelectedTheme = () => {
4737
- if (typeof window === "undefined")
4738
- return "light";
4440
+ if (typeof window === "undefined") return "light";
4739
4441
  const selectedTheme = window.localStorage.getItem("theme");
4740
- if (selectedTheme === null)
4741
- return "light";
4442
+ if (selectedTheme === null) return "light";
4742
4443
  return selectedTheme;
4743
4444
  };
4744
4445
  return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(DropdownMenu2, { children: [
@@ -4819,6 +4520,7 @@ var OldCustomInput = (props) => {
4819
4520
  };
4820
4521
 
4821
4522
  // src/components/Input/MultiSelect.tsx
4523
+ var import_react_hook_form2 = require("react-hook-form");
4822
4524
  var import_react_select = __toESM(require("react-select"));
4823
4525
  var import_jsx_runtime89 = require("react/jsx-runtime");
4824
4526
  var MultiSelect = (props) => {
@@ -4831,7 +4533,7 @@ var MultiSelect = (props) => {
4831
4533
  };
4832
4534
  return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { children: [
4833
4535
  /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
4834
- Controller,
4536
+ import_react_hook_form2.Controller,
4835
4537
  {
4836
4538
  control: props.control,
4837
4539
  rules: { required: props.isRequired },
@@ -4975,9 +4677,9 @@ var PrimaryButton = (props) => {
4975
4677
  };
4976
4678
 
4977
4679
  // src/components/DesignElements/typography.tsx
4978
- var import_react9 = require("react");
4680
+ var import_react8 = require("react");
4979
4681
  var import_jsx_runtime94 = require("react/jsx-runtime");
4980
- var LandingTitle = (0, import_react9.forwardRef)(
4682
+ var LandingTitle = (0, import_react8.forwardRef)(
4981
4683
  (_a, ref) => {
4982
4684
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4983
4685
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -4993,7 +4695,7 @@ var LandingTitle = (0, import_react9.forwardRef)(
4993
4695
  }
4994
4696
  );
4995
4697
  LandingTitle.displayName = "LandingTitle";
4996
- var LandingTitleAccent = (0, import_react9.forwardRef)(
4698
+ var LandingTitleAccent = (0, import_react8.forwardRef)(
4997
4699
  (_a, ref) => {
4998
4700
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4999
4701
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5009,7 +4711,7 @@ var LandingTitleAccent = (0, import_react9.forwardRef)(
5009
4711
  }
5010
4712
  );
5011
4713
  LandingTitleAccent.displayName = "LandingTitleAccent";
5012
- var BigLandingTitle = (0, import_react9.forwardRef)(
4714
+ var BigLandingTitle = (0, import_react8.forwardRef)(
5013
4715
  (_a, ref) => {
5014
4716
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5015
4717
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5025,7 +4727,7 @@ var BigLandingTitle = (0, import_react9.forwardRef)(
5025
4727
  }
5026
4728
  );
5027
4729
  BigLandingTitle.displayName = "BigLandingTitle";
5028
- var BigLandingTitleAccent = (0, import_react9.forwardRef)(
4730
+ var BigLandingTitleAccent = (0, import_react8.forwardRef)(
5029
4731
  (_a, ref) => {
5030
4732
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5031
4733
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5041,7 +4743,7 @@ var BigLandingTitleAccent = (0, import_react9.forwardRef)(
5041
4743
  }
5042
4744
  );
5043
4745
  BigLandingTitleAccent.displayName = "BigLandingTitleAccent";
5044
- var H1Design = (0, import_react9.forwardRef)(
4746
+ var H1Design = (0, import_react8.forwardRef)(
5045
4747
  (_a, ref) => {
5046
4748
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5047
4749
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5057,7 +4759,7 @@ var H1Design = (0, import_react9.forwardRef)(
5057
4759
  }
5058
4760
  );
5059
4761
  H1Design.displayName = "H1Design";
5060
- var H1AccentDesign = (0, import_react9.forwardRef)(
4762
+ var H1AccentDesign = (0, import_react8.forwardRef)(
5061
4763
  (_a, ref) => {
5062
4764
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5063
4765
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5073,7 +4775,7 @@ var H1AccentDesign = (0, import_react9.forwardRef)(
5073
4775
  }
5074
4776
  );
5075
4777
  H1AccentDesign.displayName = "H1AccentDesign";
5076
- var H2Design = (0, import_react9.forwardRef)(
4778
+ var H2Design = (0, import_react8.forwardRef)(
5077
4779
  (_a, ref) => {
5078
4780
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5079
4781
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5089,7 +4791,7 @@ var H2Design = (0, import_react9.forwardRef)(
5089
4791
  }
5090
4792
  );
5091
4793
  H2Design.displayName = "H2Design";
5092
- var H2AccentDesign = (0, import_react9.forwardRef)(
4794
+ var H2AccentDesign = (0, import_react8.forwardRef)(
5093
4795
  (_a, ref) => {
5094
4796
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5095
4797
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5105,7 +4807,7 @@ var H2AccentDesign = (0, import_react9.forwardRef)(
5105
4807
  }
5106
4808
  );
5107
4809
  H2AccentDesign.displayName = "H2AccentDesign";
5108
- var H3Design = (0, import_react9.forwardRef)(
4810
+ var H3Design = (0, import_react8.forwardRef)(
5109
4811
  (_a, ref) => {
5110
4812
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5111
4813
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5121,7 +4823,7 @@ var H3Design = (0, import_react9.forwardRef)(
5121
4823
  }
5122
4824
  );
5123
4825
  H3Design.displayName = "H3Design";
5124
- var H4Design = (0, import_react9.forwardRef)(
4826
+ var H4Design = (0, import_react8.forwardRef)(
5125
4827
  (_a, ref) => {
5126
4828
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5127
4829
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5137,7 +4839,7 @@ var H4Design = (0, import_react9.forwardRef)(
5137
4839
  }
5138
4840
  );
5139
4841
  H4Design.displayName = "H4Design";
5140
- var H5Design = (0, import_react9.forwardRef)(
4842
+ var H5Design = (0, import_react8.forwardRef)(
5141
4843
  (_a, ref) => {
5142
4844
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5143
4845
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5153,7 +4855,7 @@ var H5Design = (0, import_react9.forwardRef)(
5153
4855
  }
5154
4856
  );
5155
4857
  H5Design.displayName = "H5Design";
5156
- var H6Design = (0, import_react9.forwardRef)(
4858
+ var H6Design = (0, import_react8.forwardRef)(
5157
4859
  (_a, ref) => {
5158
4860
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5159
4861
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5169,7 +4871,7 @@ var H6Design = (0, import_react9.forwardRef)(
5169
4871
  }
5170
4872
  );
5171
4873
  H6Design.displayName = "H6Design";
5172
- var H7Design = (0, import_react9.forwardRef)(
4874
+ var H7Design = (0, import_react8.forwardRef)(
5173
4875
  (_a, ref) => {
5174
4876
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5175
4877
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5185,7 +4887,7 @@ var H7Design = (0, import_react9.forwardRef)(
5185
4887
  }
5186
4888
  );
5187
4889
  H7Design.displayName = "H7Design";
5188
- var H8Design = (0, import_react9.forwardRef)(
4890
+ var H8Design = (0, import_react8.forwardRef)(
5189
4891
  (_a, ref) => {
5190
4892
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5191
4893
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5201,7 +4903,7 @@ var H8Design = (0, import_react9.forwardRef)(
5201
4903
  }
5202
4904
  );
5203
4905
  H8Design.displayName = "H8Design";
5204
- var H9Design = (0, import_react9.forwardRef)(
4906
+ var H9Design = (0, import_react8.forwardRef)(
5205
4907
  (_a, ref) => {
5206
4908
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5207
4909
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5217,7 +4919,7 @@ var H9Design = (0, import_react9.forwardRef)(
5217
4919
  }
5218
4920
  );
5219
4921
  H9Design.displayName = "H9Design";
5220
- var Caption = (0, import_react9.forwardRef)((_a, ref) => {
4922
+ var Caption = (0, import_react8.forwardRef)((_a, ref) => {
5221
4923
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5222
4924
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
5223
4925
  "p",
@@ -5228,7 +4930,7 @@ var Caption = (0, import_react9.forwardRef)((_a, ref) => {
5228
4930
  );
5229
4931
  });
5230
4932
  Caption.displayName = "Caption";
5231
- var Body20sb = (0, import_react9.forwardRef)(
4933
+ var Body20sb = (0, import_react8.forwardRef)(
5232
4934
  (_a, ref) => {
5233
4935
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5234
4936
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5241,7 +4943,7 @@ var Body20sb = (0, import_react9.forwardRef)(
5241
4943
  }
5242
4944
  );
5243
4945
  Body20sb.displayName = "Body20sb";
5244
- var Body20m = (0, import_react9.forwardRef)(
4946
+ var Body20m = (0, import_react8.forwardRef)(
5245
4947
  (_a, ref) => {
5246
4948
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5247
4949
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5257,7 +4959,7 @@ var Body20m = (0, import_react9.forwardRef)(
5257
4959
  }
5258
4960
  );
5259
4961
  Body20m.displayName = "Body20m";
5260
- var Body20 = (0, import_react9.forwardRef)(
4962
+ var Body20 = (0, import_react8.forwardRef)(
5261
4963
  (_a, ref) => {
5262
4964
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5263
4965
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5270,7 +4972,7 @@ var Body20 = (0, import_react9.forwardRef)(
5270
4972
  }
5271
4973
  );
5272
4974
  Body20.displayName = "Body20";
5273
- var Body18sb = (0, import_react9.forwardRef)(
4975
+ var Body18sb = (0, import_react8.forwardRef)(
5274
4976
  (_a, ref) => {
5275
4977
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5276
4978
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5286,7 +4988,7 @@ var Body18sb = (0, import_react9.forwardRef)(
5286
4988
  }
5287
4989
  );
5288
4990
  Body18sb.displayName = "Body18sb";
5289
- var Body18m = (0, import_react9.forwardRef)(
4991
+ var Body18m = (0, import_react8.forwardRef)(
5290
4992
  (_a, ref) => {
5291
4993
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5292
4994
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5302,7 +5004,7 @@ var Body18m = (0, import_react9.forwardRef)(
5302
5004
  }
5303
5005
  );
5304
5006
  Body18m.displayName = "Body18m";
5305
- var Body18 = (0, import_react9.forwardRef)(
5007
+ var Body18 = (0, import_react8.forwardRef)(
5306
5008
  (_a, ref) => {
5307
5009
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5308
5010
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5315,7 +5017,7 @@ var Body18 = (0, import_react9.forwardRef)(
5315
5017
  }
5316
5018
  );
5317
5019
  Body18.displayName = "Body18";
5318
- var Body16sb = (0, import_react9.forwardRef)(
5020
+ var Body16sb = (0, import_react8.forwardRef)(
5319
5021
  (_a, ref) => {
5320
5022
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5321
5023
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5331,7 +5033,7 @@ var Body16sb = (0, import_react9.forwardRef)(
5331
5033
  }
5332
5034
  );
5333
5035
  Body16sb.displayName = "Body16sb";
5334
- var Body16m = (0, import_react9.forwardRef)(
5036
+ var Body16m = (0, import_react8.forwardRef)(
5335
5037
  (_a, ref) => {
5336
5038
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5337
5039
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5347,7 +5049,7 @@ var Body16m = (0, import_react9.forwardRef)(
5347
5049
  }
5348
5050
  );
5349
5051
  Body16m.displayName = "Body16m";
5350
- var Body16 = (0, import_react9.forwardRef)(
5052
+ var Body16 = (0, import_react8.forwardRef)(
5351
5053
  (_a, ref) => {
5352
5054
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5353
5055
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5363,7 +5065,7 @@ var Body16 = (0, import_react9.forwardRef)(
5363
5065
  }
5364
5066
  );
5365
5067
  Body16.displayName = "Body16";
5366
- var Body16it = (0, import_react9.forwardRef)(
5068
+ var Body16it = (0, import_react8.forwardRef)(
5367
5069
  (_a, ref) => {
5368
5070
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5369
5071
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5376,7 +5078,7 @@ var Body16it = (0, import_react9.forwardRef)(
5376
5078
  }
5377
5079
  );
5378
5080
  Body16it.displayName = "Body16it";
5379
- var Body15sb = (0, import_react9.forwardRef)(
5081
+ var Body15sb = (0, import_react8.forwardRef)(
5380
5082
  (_a, ref) => {
5381
5083
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5382
5084
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5392,7 +5094,7 @@ var Body15sb = (0, import_react9.forwardRef)(
5392
5094
  }
5393
5095
  );
5394
5096
  Body15sb.displayName = "Body15sb";
5395
- var Body15m = (0, import_react9.forwardRef)(
5097
+ var Body15m = (0, import_react8.forwardRef)(
5396
5098
  (_a, ref) => {
5397
5099
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5398
5100
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5408,7 +5110,7 @@ var Body15m = (0, import_react9.forwardRef)(
5408
5110
  }
5409
5111
  );
5410
5112
  Body15m.displayName = "Body15m";
5411
- var Body15 = (0, import_react9.forwardRef)(
5113
+ var Body15 = (0, import_react8.forwardRef)(
5412
5114
  (_a, ref) => {
5413
5115
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5414
5116
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5421,7 +5123,7 @@ var Body15 = (0, import_react9.forwardRef)(
5421
5123
  }
5422
5124
  );
5423
5125
  Body15.displayName = "Body15";
5424
- var Body15it = (0, import_react9.forwardRef)(
5126
+ var Body15it = (0, import_react8.forwardRef)(
5425
5127
  (_a, ref) => {
5426
5128
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5427
5129
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5434,7 +5136,7 @@ var Body15it = (0, import_react9.forwardRef)(
5434
5136
  }
5435
5137
  );
5436
5138
  Body15it.displayName = "Body15it";
5437
- var Body14sb = (0, import_react9.forwardRef)(
5139
+ var Body14sb = (0, import_react8.forwardRef)(
5438
5140
  (_a, ref) => {
5439
5141
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5440
5142
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5447,7 +5149,7 @@ var Body14sb = (0, import_react9.forwardRef)(
5447
5149
  }
5448
5150
  );
5449
5151
  Body14sb.displayName = "Body14sb";
5450
- var Body14m = (0, import_react9.forwardRef)(
5152
+ var Body14m = (0, import_react8.forwardRef)(
5451
5153
  (_a, ref) => {
5452
5154
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5453
5155
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5460,7 +5162,7 @@ var Body14m = (0, import_react9.forwardRef)(
5460
5162
  }
5461
5163
  );
5462
5164
  Body14m.displayName = "Body14m";
5463
- var Body14 = (0, import_react9.forwardRef)(
5165
+ var Body14 = (0, import_react8.forwardRef)(
5464
5166
  (_a, ref) => {
5465
5167
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5466
5168
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5473,7 +5175,7 @@ var Body14 = (0, import_react9.forwardRef)(
5473
5175
  }
5474
5176
  );
5475
5177
  Body14.displayName = "Body14";
5476
- var Body12sb = (0, import_react9.forwardRef)(
5178
+ var Body12sb = (0, import_react8.forwardRef)(
5477
5179
  (_a, ref) => {
5478
5180
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5479
5181
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5486,7 +5188,7 @@ var Body12sb = (0, import_react9.forwardRef)(
5486
5188
  }
5487
5189
  );
5488
5190
  Body12sb.displayName = "Body12sb";
5489
- var Body12m = (0, import_react9.forwardRef)(
5191
+ var Body12m = (0, import_react8.forwardRef)(
5490
5192
  (_a, ref) => {
5491
5193
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5492
5194
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5499,7 +5201,7 @@ var Body12m = (0, import_react9.forwardRef)(
5499
5201
  }
5500
5202
  );
5501
5203
  Body12m.displayName = "Body12m";
5502
- var Body12 = (0, import_react9.forwardRef)(
5204
+ var Body12 = (0, import_react8.forwardRef)(
5503
5205
  (_a, ref) => {
5504
5206
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5505
5207
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5523,16 +5225,16 @@ var AboutInfoItem = ({ title, description }) => {
5523
5225
  };
5524
5226
 
5525
5227
  // src/components/DesignElements/breadcrumb.tsx
5526
- var React36 = __toESM(require("react"));
5228
+ var React35 = __toESM(require("react"));
5527
5229
  var import_react_icons5 = require("@radix-ui/react-icons");
5528
5230
  var import_react_slot3 = require("@radix-ui/react-slot");
5529
5231
  var import_jsx_runtime96 = require("react/jsx-runtime");
5530
- var Breadcrumb = React36.forwardRef((_a, ref) => {
5232
+ var Breadcrumb = React35.forwardRef((_a, ref) => {
5531
5233
  var props = __objRest(_a, []);
5532
5234
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("nav", __spreadValues({ ref, "aria-label": "breadcrumb" }, props));
5533
5235
  });
5534
5236
  Breadcrumb.displayName = "Breadcrumb";
5535
- var BreadcrumbList = React36.forwardRef((_a, ref) => {
5237
+ var BreadcrumbList = React35.forwardRef((_a, ref) => {
5536
5238
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5537
5239
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5538
5240
  "ol",
@@ -5546,7 +5248,7 @@ var BreadcrumbList = React36.forwardRef((_a, ref) => {
5546
5248
  );
5547
5249
  });
5548
5250
  BreadcrumbList.displayName = "BreadcrumbList";
5549
- var BreadcrumbItem = React36.forwardRef((_a, ref) => {
5251
+ var BreadcrumbItem = React35.forwardRef((_a, ref) => {
5550
5252
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5551
5253
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5552
5254
  "li",
@@ -5557,7 +5259,7 @@ var BreadcrumbItem = React36.forwardRef((_a, ref) => {
5557
5259
  );
5558
5260
  });
5559
5261
  BreadcrumbItem.displayName = "BreadcrumbItem";
5560
- var BreadcrumbLink = React36.forwardRef((_a, ref) => {
5262
+ var BreadcrumbLink = React35.forwardRef((_a, ref) => {
5561
5263
  var _b = _a, { asChild, className } = _b, props = __objRest(_b, ["asChild", "className"]);
5562
5264
  const Comp = asChild ? import_react_slot3.Slot : "a";
5563
5265
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
@@ -5569,7 +5271,7 @@ var BreadcrumbLink = React36.forwardRef((_a, ref) => {
5569
5271
  );
5570
5272
  });
5571
5273
  BreadcrumbLink.displayName = "BreadcrumbLink";
5572
- var BreadcrumbPage = React36.forwardRef((_a, ref) => {
5274
+ var BreadcrumbPage = React35.forwardRef((_a, ref) => {
5573
5275
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5574
5276
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5575
5277
  "span",
@@ -5627,7 +5329,7 @@ BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
5627
5329
 
5628
5330
  // src/components/DesignElements/button.tsx
5629
5331
  var import_react_slot4 = require("@radix-ui/react-slot");
5630
- var import_react10 = __toESM(require("react"));
5332
+ var import_react9 = __toESM(require("react"));
5631
5333
  var import_class_variance_authority9 = require("class-variance-authority");
5632
5334
  var import_jsx_runtime97 = require("react/jsx-runtime");
5633
5335
  var designButtonVariants = (0, import_class_variance_authority9.cva)(
@@ -5656,7 +5358,7 @@ var designButtonVariants = (0, import_class_variance_authority9.cva)(
5656
5358
  }
5657
5359
  }
5658
5360
  );
5659
- var DesignButton = import_react10.default.forwardRef(
5361
+ var DesignButton = import_react9.default.forwardRef(
5660
5362
  (_a, ref) => {
5661
5363
  var _b = _a, {
5662
5364
  className,
@@ -5718,19 +5420,19 @@ var DesignButton = import_react10.default.forwardRef(
5718
5420
  DesignButton.displayName = "DesignButton";
5719
5421
 
5720
5422
  // src/components/DesignElements/carousel.tsx
5721
- var React38 = __toESM(require("react"));
5423
+ var React37 = __toESM(require("react"));
5722
5424
  var import_embla_carousel_react = __toESM(require("embla-carousel-react"));
5723
5425
  var import_lucide_react14 = require("lucide-react");
5724
5426
  var import_jsx_runtime98 = require("react/jsx-runtime");
5725
- var CarouselContext = React38.createContext(null);
5427
+ var CarouselContext = React37.createContext(null);
5726
5428
  function useCarousel() {
5727
- const context = React38.useContext(CarouselContext);
5429
+ const context = React37.useContext(CarouselContext);
5728
5430
  if (!context) {
5729
5431
  throw new Error("useCarousel must be used within a <Carousel />");
5730
5432
  }
5731
5433
  return context;
5732
5434
  }
5733
- var Carousel = React38.forwardRef(
5435
+ var Carousel = React37.forwardRef(
5734
5436
  (_a, ref) => {
5735
5437
  var _b = _a, {
5736
5438
  orientation = "horizontal",
@@ -5756,22 +5458,22 @@ var Carousel = React38.forwardRef(
5756
5458
  }),
5757
5459
  plugins
5758
5460
  );
5759
- const [canScrollPrev, setCanScrollPrev] = React38.useState(false);
5760
- const [canScrollNext, setCanScrollNext] = React38.useState(false);
5761
- const onSelect = React38.useCallback((api2) => {
5461
+ const [canScrollPrev, setCanScrollPrev] = React37.useState(false);
5462
+ const [canScrollNext, setCanScrollNext] = React37.useState(false);
5463
+ const onSelect = React37.useCallback((api2) => {
5762
5464
  if (!api2) {
5763
5465
  return;
5764
5466
  }
5765
5467
  setCanScrollPrev(api2.canScrollPrev());
5766
5468
  setCanScrollNext(api2.canScrollNext());
5767
5469
  }, []);
5768
- const scrollPrev = React38.useCallback(() => {
5470
+ const scrollPrev = React37.useCallback(() => {
5769
5471
  api == null ? void 0 : api.scrollPrev();
5770
5472
  }, [api]);
5771
- const scrollNext = React38.useCallback(() => {
5473
+ const scrollNext = React37.useCallback(() => {
5772
5474
  api == null ? void 0 : api.scrollNext();
5773
5475
  }, [api]);
5774
- const handleKeyDown = React38.useCallback(
5476
+ const handleKeyDown = React37.useCallback(
5775
5477
  (event) => {
5776
5478
  if (event.key === "ArrowLeft") {
5777
5479
  event.preventDefault();
@@ -5783,13 +5485,13 @@ var Carousel = React38.forwardRef(
5783
5485
  },
5784
5486
  [scrollPrev, scrollNext]
5785
5487
  );
5786
- React38.useEffect(() => {
5488
+ React37.useEffect(() => {
5787
5489
  if (!api || !setApi) {
5788
5490
  return;
5789
5491
  }
5790
5492
  setApi(api);
5791
5493
  }, [api, setApi]);
5792
- React38.useEffect(() => {
5494
+ React37.useEffect(() => {
5793
5495
  if (!api) {
5794
5496
  return;
5795
5497
  }
@@ -5831,7 +5533,7 @@ var Carousel = React38.forwardRef(
5831
5533
  }
5832
5534
  );
5833
5535
  Carousel.displayName = "Carousel";
5834
- var CarouselContent = React38.forwardRef((_a, ref) => {
5536
+ var CarouselContent = React37.forwardRef((_a, ref) => {
5835
5537
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5836
5538
  const { carouselRef, orientation } = useCarousel();
5837
5539
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
@@ -5847,7 +5549,7 @@ var CarouselContent = React38.forwardRef((_a, ref) => {
5847
5549
  ) });
5848
5550
  });
5849
5551
  CarouselContent.displayName = "CarouselContent";
5850
- var CarouselItem = React38.forwardRef((_a, ref) => {
5552
+ var CarouselItem = React37.forwardRef((_a, ref) => {
5851
5553
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5852
5554
  const { orientation } = useCarousel();
5853
5555
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
@@ -5865,7 +5567,7 @@ var CarouselItem = React38.forwardRef((_a, ref) => {
5865
5567
  );
5866
5568
  });
5867
5569
  CarouselItem.displayName = "CarouselItem";
5868
- var CarouselPrevious = React38.forwardRef((_a, ref) => {
5570
+ var CarouselPrevious = React37.forwardRef((_a, ref) => {
5869
5571
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5870
5572
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
5871
5573
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
@@ -5888,7 +5590,7 @@ var CarouselPrevious = React38.forwardRef((_a, ref) => {
5888
5590
  );
5889
5591
  });
5890
5592
  CarouselPrevious.displayName = "CarouselPrevious";
5891
- var CarouselNext = React38.forwardRef(
5593
+ var CarouselNext = React37.forwardRef(
5892
5594
  (_a, ref) => {
5893
5595
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5894
5596
  const { orientation, scrollNext, canScrollNext } = useCarousel();
@@ -5915,11 +5617,11 @@ var CarouselNext = React38.forwardRef(
5915
5617
  CarouselNext.displayName = "CarouselNext";
5916
5618
 
5917
5619
  // src/components/DesignElements/checkbox.tsx
5918
- var React39 = __toESM(require("react"));
5620
+ var React38 = __toESM(require("react"));
5919
5621
  var CheckboxPrimitive2 = __toESM(require("@radix-ui/react-checkbox"));
5920
5622
  var import_lucide_react15 = require("lucide-react");
5921
5623
  var import_jsx_runtime99 = require("react/jsx-runtime");
5922
- var Checkbox2 = React39.forwardRef((_a, ref) => {
5624
+ var Checkbox2 = React38.forwardRef((_a, ref) => {
5923
5625
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5924
5626
  return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
5925
5627
  CheckboxPrimitive2.Root,
@@ -5943,11 +5645,11 @@ var Checkbox2 = React39.forwardRef((_a, ref) => {
5943
5645
  Checkbox2.displayName = CheckboxPrimitive2.Root.displayName;
5944
5646
 
5945
5647
  // src/components/DesignElements/cookies.tsx
5946
- var import_react11 = require("react");
5648
+ var import_react10 = require("react");
5947
5649
  var import_lucide_react16 = require("lucide-react");
5948
5650
  var import_jsx_runtime100 = require("react/jsx-runtime");
5949
5651
  var Cookies = ({ handleAccept, handleDecline }) => {
5950
- const [isOpen, setIsOpen] = (0, import_react11.useState)(true);
5652
+ const [isOpen, setIsOpen] = (0, import_react10.useState)(true);
5951
5653
  const handleClose = () => {
5952
5654
  setIsOpen(false);
5953
5655
  };
@@ -6045,7 +5747,7 @@ var InfoBox = ({ title, text }) => {
6045
5747
  };
6046
5748
 
6047
5749
  // src/components/DesignElements/input.tsx
6048
- var React40 = __toESM(require("react"));
5750
+ var React39 = __toESM(require("react"));
6049
5751
  var import_class_variance_authority10 = require("class-variance-authority");
6050
5752
  var import_jsx_runtime103 = require("react/jsx-runtime");
6051
5753
  var designInputVariants = (0, import_class_variance_authority10.cva)(
@@ -6063,7 +5765,7 @@ var designInputVariants = (0, import_class_variance_authority10.cva)(
6063
5765
  }
6064
5766
  }
6065
5767
  );
6066
- var DesignInput = React40.forwardRef(
5768
+ var DesignInput = React39.forwardRef(
6067
5769
  (_a, ref) => {
6068
5770
  var _b = _a, { className, type, variant } = _b, props = __objRest(_b, ["className", "type", "variant"]);
6069
5771
  return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: "relative", children: [
@@ -6149,11 +5851,11 @@ var NoResults = () => {
6149
5851
  };
6150
5852
 
6151
5853
  // src/components/DesignElements/radio-group.tsx
6152
- var React41 = __toESM(require("react"));
5854
+ var React40 = __toESM(require("react"));
6153
5855
  var RadioGroupPrimitive2 = __toESM(require("@radix-ui/react-radio-group"));
6154
5856
  var import_lucide_react17 = require("lucide-react");
6155
5857
  var import_jsx_runtime107 = require("react/jsx-runtime");
6156
- var DesignRadioGroup = React41.forwardRef((_a, ref) => {
5858
+ var DesignRadioGroup = React40.forwardRef((_a, ref) => {
6157
5859
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6158
5860
  return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
6159
5861
  RadioGroupPrimitive2.Root,
@@ -6165,7 +5867,7 @@ var DesignRadioGroup = React41.forwardRef((_a, ref) => {
6165
5867
  );
6166
5868
  });
6167
5869
  DesignRadioGroup.displayName = RadioGroupPrimitive2.Root.displayName;
6168
- var DesignRadioGroupItem = React41.forwardRef((_a, ref) => {
5870
+ var DesignRadioGroupItem = React40.forwardRef((_a, ref) => {
6169
5871
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
6170
5872
  return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
6171
5873
  RadioGroupPrimitive2.Item,
@@ -6365,10 +6067,10 @@ var DesignSimpleTag = ({
6365
6067
  };
6366
6068
 
6367
6069
  // src/components/DesignElements/switch.tsx
6368
- var React42 = __toESM(require("react"));
6070
+ var React41 = __toESM(require("react"));
6369
6071
  var SwitchPrimitives2 = __toESM(require("@radix-ui/react-switch"));
6370
6072
  var import_jsx_runtime110 = require("react/jsx-runtime");
6371
- var DesignSwitch = React42.forwardRef((_a, ref) => {
6073
+ var DesignSwitch = React41.forwardRef((_a, ref) => {
6372
6074
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6373
6075
  return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
6374
6076
  SwitchPrimitives2.Root,
@@ -6394,11 +6096,11 @@ var DesignSwitch = React42.forwardRef((_a, ref) => {
6394
6096
  DesignSwitch.displayName = SwitchPrimitives2.Root.displayName;
6395
6097
 
6396
6098
  // src/components/DesignElements/tag.tsx
6397
- var import_react12 = require("react");
6099
+ var import_react11 = require("react");
6398
6100
  var import_lucide_react19 = require("lucide-react");
6399
6101
  var import_jsx_runtime111 = require("react/jsx-runtime");
6400
6102
  var DesignResultTag = ({ tag, name }) => {
6401
- const [isOpen, setIsOpen] = (0, import_react12.useState)(true);
6103
+ const [isOpen, setIsOpen] = (0, import_react11.useState)(true);
6402
6104
  const handleClose = () => {
6403
6105
  setIsOpen(false);
6404
6106
  };
@@ -6449,8 +6151,8 @@ var ResourceTag = ({ tag, type }) => {
6449
6151
  };
6450
6152
 
6451
6153
  // src/components/DesignElements/Notification.tsx
6452
- var import_react13 = require("@headlessui/react");
6453
- var import_react14 = require("react");
6154
+ var import_react12 = require("@headlessui/react");
6155
+ var import_react13 = require("react");
6454
6156
  var import_outline = require("@heroicons/react/24/outline");
6455
6157
  var import_jsx_runtime113 = require("react/jsx-runtime");
6456
6158
  var Notification = ({
@@ -6460,11 +6162,11 @@ var Notification = ({
6460
6162
  setOpen,
6461
6163
  icon
6462
6164
  }) => {
6463
- return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_react13.Transition.Root, { show: open, as: import_react14.Fragment, "data-component": "Notification", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_react13.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
6165
+ return /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(import_react12.Transition.Root, { show: open, as: import_react13.Fragment, "data-component": "Notification", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_react12.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
6464
6166
  /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
6465
- import_react13.Transition.Child,
6167
+ import_react12.Transition.Child,
6466
6168
  {
6467
- as: import_react14.Fragment,
6169
+ as: import_react13.Fragment,
6468
6170
  enter: "ease-out duration-300",
6469
6171
  enterFrom: "opacity-0",
6470
6172
  enterTo: "opacity-100",
@@ -6475,16 +6177,16 @@ var Notification = ({
6475
6177
  }
6476
6178
  ),
6477
6179
  /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("div", { className: "fixed z-10 inset-0 overflow-y-auto text-black", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("div", { className: "flex items-center justify-center min-h-full p-4 text-center ", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
6478
- import_react13.Transition.Child,
6180
+ import_react12.Transition.Child,
6479
6181
  {
6480
- as: import_react14.Fragment,
6182
+ as: import_react13.Fragment,
6481
6183
  enter: "ease-out duration-300",
6482
6184
  enterFrom: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
6483
6185
  enterTo: "opacity-100 translate-y-0 sm:scale-100",
6484
6186
  leave: "ease-in duration-200",
6485
6187
  leaveFrom: "opacity-100 translate-y-0 sm:scale-100",
6486
6188
  leaveTo: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
6487
- children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_react13.Dialog.Panel, { className: "relative bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all py-8 max-w-4xl w-full p-10", children: [
6189
+ children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(import_react12.Dialog.Panel, { className: "relative bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all py-8 max-w-4xl w-full p-10", children: [
6488
6190
  /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("div", { className: "absolute top-0 right-0 pt-10 pr-10", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
6489
6191
  "button",
6490
6192
  {
@@ -6615,19 +6317,17 @@ var ThreeColumn = ({ tag, content, TagClassName }) => {
6615
6317
  };
6616
6318
 
6617
6319
  // src/components/DesignElements/VersionDisplay.tsx
6618
- var import_react15 = require("react");
6320
+ var import_react14 = require("react");
6619
6321
  var import_jsx_runtime118 = require("react/jsx-runtime");
6620
6322
  var VersionDisplay = () => {
6621
- const [version, setVersion] = (0, import_react15.useState)();
6622
- (0, import_react15.useEffect)(() => {
6323
+ const [version, setVersion] = (0, import_react14.useState)();
6324
+ (0, import_react14.useEffect)(() => {
6623
6325
  fetch("/version.json").then((res) => {
6624
- if (!res.ok)
6625
- throw new Error("Version file not found");
6326
+ if (!res.ok) throw new Error("Version file not found");
6626
6327
  return res.json();
6627
6328
  }).then((data) => setVersion(data.version)).catch(() => setVersion(void 0));
6628
6329
  }, []);
6629
- if (!version)
6630
- return null;
6330
+ if (!version) return null;
6631
6331
  return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "text-grey text-sm lg:text-base font-normal leading-[130%]", children: [
6632
6332
  "Version: ",
6633
6333
  version
@@ -6635,8 +6335,8 @@ var VersionDisplay = () => {
6635
6335
  };
6636
6336
 
6637
6337
  // src/components/DesignElements/header.tsx
6638
- var import_react16 = require("react");
6639
- var import_react17 = require("@headlessui/react");
6338
+ var import_react15 = require("react");
6339
+ var import_react16 = require("@headlessui/react");
6640
6340
  var import_outline2 = require("@heroicons/react/24/outline");
6641
6341
  var import_solid2 = require("@heroicons/react/20/solid");
6642
6342
  var import_core3 = require("@geowiki/core");
@@ -6650,10 +6350,7 @@ var ImageElement = ({
6650
6350
  height,
6651
6351
  alt = "Image",
6652
6352
  className,
6653
- // = "relative w-full h-full",
6654
6353
  showPlaceholder = true
6655
- //shimmer, toBase64,
6656
- //cmsImageUrlPath
6657
6354
  }) => {
6658
6355
  if (width && height) {
6659
6356
  if (!showPlaceholder)
@@ -6732,8 +6429,8 @@ var DesignHeader = ({
6732
6429
  privacy_policy_url,
6733
6430
  mobile_menu_color
6734
6431
  }) => {
6735
- const [mobileMenuOpen, setMobileMenuOpen] = (0, import_react16.useState)(false);
6736
- const [openNotification, setOpenNotification] = (0, import_react16.useState)(false);
6432
+ const [mobileMenuOpen, setMobileMenuOpen] = (0, import_react15.useState)(false);
6433
+ const [openNotification, setOpenNotification] = (0, import_react15.useState)(false);
6737
6434
  let rootPath = "/";
6738
6435
  if (rootUrl) {
6739
6436
  rootPath = rootUrl != null ? rootUrl : "/";
@@ -6813,9 +6510,9 @@ var DesignHeader = ({
6813
6510
  }
6814
6511
  )
6815
6512
  ] }) }),
6816
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react17.Popover.Group, { className: "hidden lg:flex lg:items-center lg:gap-x-6 grid-cols-1 flex items-center gap-6 text-base font-medium", children: mainMenu.map(
6817
- (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover, { children: [
6818
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover.Button, { className: "flex items-center gap-x-1 text-base font-medium outline-none border-none", children: [
6513
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react16.Popover.Group, { className: "hidden lg:flex lg:items-center lg:gap-x-6 grid-cols-1 flex items-center gap-6 text-base font-medium", children: mainMenu.map(
6514
+ (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover, { children: [
6515
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover.Button, { className: "flex items-center gap-x-1 text-base font-medium outline-none border-none", children: [
6819
6516
  menuItem.text,
6820
6517
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6821
6518
  import_solid2.ChevronDownIcon,
@@ -6825,7 +6522,7 @@ var DesignHeader = ({
6825
6522
  }
6826
6523
  )
6827
6524
  ] }),
6828
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react17.Popover.Panel, { className: "absolute mt-3 bg-white overflow-hidden bg-neutral-content rounded-lg ring-1 ring-gray-900/5 z-[401]", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "p-4 space-y-4 ", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6525
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react16.Popover.Panel, { className: "absolute mt-3 bg-white overflow-hidden bg-neutral-content rounded-lg ring-1 ring-gray-900/5 z-[401]", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "p-4 space-y-4 ", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6829
6526
  "div",
6830
6527
  {
6831
6528
  className: "group relative flex rounded-lg text-sm leading-tight",
@@ -6894,7 +6591,7 @@ var DesignHeader = ({
6894
6591
  }
6895
6592
  ) }),
6896
6593
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
6897
- import_react17.Dialog,
6594
+ import_react16.Dialog,
6898
6595
  {
6899
6596
  as: "div",
6900
6597
  className: "lg:hidden",
@@ -6902,7 +6599,7 @@ var DesignHeader = ({
6902
6599
  onClose: setMobileMenuOpen,
6903
6600
  children: [
6904
6601
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "fixed inset-0 z-10" }),
6905
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Dialog.Panel, { className: "fixed inset-y-0 right-0 z-10 flex w-full flex-col bg-white shadow-xl sm:max-w-sm", children: [
6602
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Dialog.Panel, { className: "fixed inset-y-0 right-0 z-10 flex w-full flex-col bg-white shadow-xl sm:max-w-sm", children: [
6906
6603
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center justify-between p-4", children: [
6907
6604
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_core3.Link, { href: rootPath, className: "flex-shrink-0", children: [
6908
6605
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: branding.title }),
@@ -6948,8 +6645,8 @@ var DesignHeader = ({
6948
6645
  }
6949
6646
  ) }),
6950
6647
  mainMenu.map(
6951
- (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover, { className: "relative", children: [
6952
- /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover.Button, { className: "flex w-full justify-between items-center text-lg font-semibold text-gray-900 hover:text-gray-700 transition-colors duration-200 outline-none border-none py-2", children: [
6648
+ (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover, { className: "relative", children: [
6649
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover.Button, { className: "flex w-full justify-between items-center text-lg font-semibold text-gray-900 hover:text-gray-700 transition-colors duration-200 outline-none border-none py-2", children: [
6953
6650
  menuItem.text,
6954
6651
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6955
6652
  import_solid2.ChevronDownIcon,
@@ -6959,7 +6656,7 @@ var DesignHeader = ({
6959
6656
  }
6960
6657
  )
6961
6658
  ] }),
6962
- /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react17.Popover.Panel, { className: "relative mt-2 ml-4", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "space-y-3", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6659
+ /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react16.Popover.Panel, { className: "relative mt-2 ml-4", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "space-y-3", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6963
6660
  import_core3.Link,
6964
6661
  {
6965
6662
  href: subItem.link,
@@ -7112,12 +6809,12 @@ var HtmlView = (props) => {
7112
6809
  };
7113
6810
 
7114
6811
  // src/components/DesignElements/ResourcesQuickFind.tsx
7115
- var import_react18 = require("react");
6812
+ var import_react17 = require("react");
7116
6813
  var import_core4 = require("@geowiki/core");
7117
6814
  var import_jsx_runtime122 = require("react/jsx-runtime");
7118
6815
  var ResourcesQuickFind = (props) => {
7119
- const [selectedParent, setSelectedParent] = (0, import_react18.useState)();
7120
- const [selectedChild, setSelectedChild] = (0, import_react18.useState)();
6816
+ const [selectedParent, setSelectedParent] = (0, import_react17.useState)();
6817
+ const [selectedChild, setSelectedChild] = (0, import_react17.useState)();
7121
6818
  console.log(selectedChild);
7122
6819
  const handleParentChange = (selectedValue) => {
7123
6820
  setSelectedParent(selectedValue);
@@ -7225,17 +6922,17 @@ var ResourcesQuickFind = (props) => {
7225
6922
  };
7226
6923
 
7227
6924
  // src/components/DesignElements/FAQItem.tsx
7228
- var import_react19 = require("@headlessui/react");
6925
+ var import_react18 = require("@headlessui/react");
7229
6926
  var import_outline3 = require("@heroicons/react/24/outline");
7230
6927
  var import_jsx_runtime123 = require("react/jsx-runtime");
7231
6928
  var FAQItem = ({ faqs, backgroundColor }) => {
7232
6929
  return /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("div", { className: "mx-auto", "data-component": "FAQItem", children: /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("dl", { children: faqs.map((faq) => /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
7233
- import_react19.Disclosure,
6930
+ import_react18.Disclosure,
7234
6931
  {
7235
6932
  as: "div",
7236
6933
  className: "border-0 border-b border-zinc-300",
7237
6934
  children: ({ open }) => /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(import_jsx_runtime123.Fragment, { children: [
7238
- /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("dt", { children: /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(import_react19.Disclosure.Button, { className: "pt-6 flex w-full items-start justify-between text-left lg:pt-8", children: [
6935
+ /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("dt", { children: /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(import_react18.Disclosure.Button, { className: "pt-6 flex w-full items-start justify-between text-left lg:pt-8", children: [
7239
6936
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(Body20m, { className: `${open ? "pb-0" : "pb-6 lg:pb-8"}`, children: faq.question }),
7240
6937
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("span", { className: "ml-6 flex h-7 items-center", children: open ? /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
7241
6938
  import_outline3.MinusSmallIcon,
@@ -7246,7 +6943,7 @@ var FAQItem = ({ faqs, backgroundColor }) => {
7246
6943
  ) : /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(import_outline3.PlusSmallIcon, { className: "h-6 w-6", "aria-hidden": "true" }) })
7247
6944
  ] }) }),
7248
6945
  /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
7249
- import_react19.Disclosure.Panel,
6946
+ import_react18.Disclosure.Panel,
7250
6947
  {
7251
6948
  as: "dd",
7252
6949
  className: `pr-10 ${faq.hint ? "pt-6 pb-8 space-y-6" : "py-6"}`,
@@ -7434,8 +7131,8 @@ var BasicFooter = (props) => {
7434
7131
  return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "w-full bg-zinc-100 md:bg-white rounded-tl-3xl rounded-tr-3xl overflow-hidden mt-20", children: [
7435
7132
  /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "w-full bg-zinc-100 md:p-12 p-8 md:flex justify-between items-center", children: [
7436
7133
  /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "flex gap-6 justify-center md:justify-start", children: [
7437
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.privacy_policy_url, children: "Privacy policy" }),
7438
- /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.termsUrl, children: "Terms of Use" })
7134
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.privacy_policy_url, target: props.openInNewTab ? "_blank" : "_self", children: "Privacy policy" }),
7135
+ /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.termsUrl, target: props.openInNewTab ? "_blank" : "_self", children: "Terms of Use" })
7439
7136
  ] }),
7440
7137
  /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "hidden md:flex gap-6", children: [
7441
7138
  /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "text-zinc-500 text-base font-normal leading-5", children: [
@@ -7453,7 +7150,7 @@ var BasicFooter = (props) => {
7453
7150
  props.showGeoWiki && /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("a", { href: "https://www.geo-wiki.org/", target: "_blank", className: "mt-5 mb-5 mr-10 flex", children: /* @__PURE__ */ (0, import_jsx_runtime125.jsx)("img", { id: "image0_539_1533", src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJcAAAAyCAYAAABRTkkkAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABVbSURBVHgB7VwJdFRVmr73vvcqlUoIIZAEA0IQkCXI0oj2OIOUaPf0uIzANO6OoTnS6KhAo2jbThtox7UVmUERNyKt3bgCBwWB9lBKu4AwBhpIwChRWbIQEshSVe+9e+9899WSSiVAFtCJpz7OO6/q1b33bf/7/u//7guEJJBAAgkkkEACCSSQQAIJdAKUFBQwksCPDpT8sKAPbzmeYRv6uX2+SN41fTqtxzZJEvhR4IdljLFjdZMEJ1um/739w6uXPFFalzd27AyDJPCjQGeDq1PMl3OYGFxY50khkong1x+vDKy/YvGC/DekdJEEujw6FFwF0EgFJQ05C4rqhj+zW/a+b3Ntj2wpUwYNGpTUZv2EdjPXbRxLiJGBEH2LSlqOhJglqT6/ZE9tHvmhWTWBTqMjzEP/uEf2O368ZrUkIpdKEiCSVggqihmRf5c6WfuHcVk70E6cbJBMKVNnfla7nAjrSnz9Dv19hLOzNY39AzG0mxaMm/weIT6bJNBloZN2om/fvu5jdZV3UakNQzpzSSK7E0qzpC3zpK7/K8LVn5eXtxswTzKMdseW2nE2FRdDvSuNNYBJ1lsQWSSpWIG4/BaBJUgCXRrtTT10xtpdwwnXrhecu6SUhHNBbItTm3NmmmZZKstYgcCyTjYIAtTFuTmdCARmeFwEmYcxdgGV7Kcud3KAJKrGLo92MZdiLas+eB3iqSeCi3AB3kKASazBWAFNM55bfvOII+TkgUGDwe6aLYVFCQ0gL3tIOMgxkoZxIO6NBGv9CNAe5qJzfPt6mRa/3gxaLsviYCybWCaW0HqfJy37rVOxFkS/66ZX197gb+S7AlbwfsuytnLO/SpIKUIVh7SvxJ90mCSYq8vj5MyFim7q7t20qqqK+rxeUXXgWG9ui3ou+BEuhC5s6QLFaMhpArrrncIpA46SU7DW5KWf5gXNxvmEmGmygX1CDOsl5jLOZlKfoeksnTGxZcuNg4MkgS6P1oKLjoW5eeXLG7KpKXMCP6Ppg0zhGkeStzU0Hkb15roHWgmJ0PYIqaXb0h5Bpczontbr5bKyspMGhUqrdfXHplEqeyIlGppOvILTsdRvvmPo7H7wqNelGytLS0vj2Y96vV7N50tUj6cDvXsPzRWCPEgpyZVSLKqs3Lcq8lt29pCFuNyj1WdByStV5SWFbRkzO3vYLKy8yEBFlZUl89W2lsGFwLpiydpr7Hp+D8R6lrBFNxtOpxANd0tJb+XcGsIlryGWLOfcPohA22lp2uN/u+PiqieWS889i843yfbtKgjiGYxe9cKWflbD8V8i/xmMMiLAfhDxPTTGbraZdSFU250F48/aReJsjP/+Urpqqo56r+xpbL97SFo1Oc0pExdbXZSrwxc1N+anMuyqiFK6ury8xEe+R/TCMWmSPBj6JmsrKvZOjm+TlXXuJErZLKeFJGW4qdPi22T2HprPJLkl9I0WVVQUz+GSzsYDnu9cRKqpc17V1IOOxnav84mQD0kbkJk5GH3k06HuZFJOzrAdhw4Vr2qhubIty2Vb4nrbFiOgh84ybSvFssw6O2jq3ObncdvuIUxxjm3znyLIptjCnkfM4MjR9/7pP3eQncuu+82yG2/6U8m5OTljPbGGqmIt//FjM6HNeiqtZttq4c5icVtpuHMC0uo7d9Ohi+7eUZdFYvTgo9edr5nSvKauJjAr1+tNIqcJubm56ZnZwxaChjdB8c1WFxVLbszidbZLsox8z8BTXxY+HnUMkxTbtGhE6S2RNrip+ep84puowIq2UVzkdJO10SFI0+eOQtO0ZmMIERozPrjoXSs+TYOW6o3AYtBXhFvgKosXm5z1tWyhhQICgcFtht8oAmMv2qnCcYZpm1OEZT0TDNa9d9GCpYuuP2ey98a1n6WpcSf+cePZwWBgsmXbRiSoIgEmQI0IuD0yyI5aAfMNUVGzvGCrPzdyfHzbNlwPPVVydsevnl45jJwG917diEZ/0iZc3Nlxl6AW6aJMrSNbJCU+8j0DTFlGHOYMgYfZpDlYs20NAfek+BYynOIUwMAOQ1WWlxQwSqZBmszBuV5CTsOxMjUOJfPVOsLyLdJiwBQZ8KwykLKcm4/UCNdA7EOA5VFp64gFTAMKldJgRYB0pPBJzkdJydOUuJfS9uCMBuJM+tt++1pygG24aum2mSmpVlVVhXyXEnEdYyRdY/DiNUoYU+TMAtSWfybE+idUBhlEssuO11a/cd/mql8/Oj7zi/yvCdIn7SupTLP89gyw15wyny9AOoEGf/KDCKzRTVtkEaN0Tnl5sS+yJcwWXiy+k40VbpernuCDB3cXkTYg0kd9drsDRdCrLRmEIi3JUBsmY481lMqFlM2YKr6NSlc4r2ib2NRe3kYt1VaEx/bFbosPLhqsF924TVKUMaoMUo7QQhR9A+01HnTHVGBxEVqg64O2pNuEZefDWTfQMuR7hcfGk5GCdX9G6ODvvvXfDAr4OEnT1kNpzUSzCUzQFA3CggpSJlxkB3a2VJPUBbsL9G2N4Q18+W8219yQXFN3EIcxAPOPSluMyH94tafgou4dDi5H0MomxsLOypKTg5fE3+AwexSeaBwlYnGuBZGbDAYmWdnDanGQqzyewJzWAia+j0Kj3w39NLQQD9388D4doJ0PxxbWS2xC7DjQv6ObpKdiWZmOKwndSKLnxZjujdwNGsO+Wb2HFpConoNWqygZQNoApfEIZSujG8BUigVD15Psj+43zF4t0otlNibBdzKwgLkESIkLk0g/kmNffGbIksRSOgmsZpq8opGLOqS2MZbJtdB2HvK94IPBEwtYliw0bXE5Nt1ic7nEb/ObzMbAItu05yHNfoV8Wm9x83nk2YlIs9iHcIIaYzLUpENkY92j1rH6FAR2Iy4U6gCakpyS5iGdeCMjPsXgwk9rlTlOAqXVQiJWxukcfIf+USk3XgOduI86CJKvtF+sttJimAD9RjcfTxUgTsdahM8r4Y25sf3hEE1o+tw2cX4iZGbmjYb4XxZzvE5gnaxPi+BiUOlghwbUa+Wgpl14wjZwaZXghuyyhDyMG18DFmmATApg+VT6/cMRUGk2b9JQXC2gPG7Z+y07sNu2TRQItgdtUHmiCCCsMGBbGaYwb8eYvwUD7hKmPR3+mdthy8giMB7UmJ/KUWDMP2MqIICT0i3WyZccZYwOwZPb3kpQVWDNtFpIawxQTyyN6iQ6ujHgnn2iPopJlO5RfZv6KGugqXiI112mmeyNnkJYS0GMFhG1hNH8wWk6T0Y6rhtVwFLGV0YeCpzHolMFlkJ8WpQ6cf9dpLDLmZVcmTTQFTS/LLL3PDs/cO7vXppE9EzjWEV5ZrD2aB5mpUfBPN0A5vkXIbiFQDSketiEoCEiln5MRr/MNTkBFNQHloMSlOAepgsmz9KZ8Vsk1U1rfn/5tdcu+mA495uQdNyJGjRz6hqkZz8C4VNJ7d9ZTCuGTNuoY6yUYGOn/C5G5Kiol0Gbbp5CdvbQ/a31oSGqd9qGK7BI/8KYC12GGzENAbLJ+QmpP7rPmD4qsCrKS6JCGn18kT6qqlN6KhLwCKLVuGqO3YAHzovVqmZ6S8odGqXRWX5cNrXPwnCqyo3so6NWSngcdWy54R28UlG+d3Zb+rYIrsd+lnEc610kzkvy+QYeC3+sJl7vl4MOHFhTOmaMPf7CO6s16t8L2T+RE3kZ2KUHlyQJsfStaZm7dE17jlMtSTAODQA5j6vI1CyPlC5Np9ZVv189pqG6tr/bcM3VdA0MIAcQJhjjGq4X3w0PrAHF6AhDo0M415ZSnVRndj/UQM7Q9JBs7nNFQZu1idE7wrkB+dHfnJtOY9q10kfS1bFjqxvvaLUwM4T0VJhpFCs1RfKo8C690S2oAFXQR/tLOgmbp+EZH01oS73VHsAc744CqymwUPRUlu/Nb2v/1hz6U900iUizS7GeMPPFicJqXBww7c/xdZ3kopBq9AJE+tVw3tULgJdAZ50FJUcVcwkWqg6lqhA1WQ5B/7zpMh9B0I0OSrLYza3bBBWPU+oaKajdyIj2F8TYZCpokuTELXQ5McnSZ5e+9lo96QRQF3wTPUtJ09vTNz19NNoHmvqEtFI+idkQs6f01vrQmDQWgzIs4WAUuZGNVsC9ypUUcFJlNBWCESOHryrN0KByNXHMUpmu2AYPuDdyJB3VW8pfI7EPG23+UJwKHfeLBg3SYayq4IFOkNdCEz0HG39h0OSpgsv/2Fpw1bOmzXtBY8ESs0M6zNFiXFkZjdi22KTkJ/DIxkKspwrLnAXRf51F9HkQfbs5l59Ai6E65eOQejVIQQb7Y0gwiQcLCgpIZwBmaPKwHMurSSijcqJqURqqbaPRIsUMJ1pa64GHqUVAn8jMrK0tUtvLwkeb3qdPXpODjvEjhYiM0VRKd6nUH91fx/VWbrNvks5q1cw9Adr9smAE2XUeXQjrPNxwDUGjYZ0Kd2IkfK5BoNLKMfNWazwY/IvUWJGk7Ncas88FeyVR9QqYRj7kjO2Dm/osPierqwF6T0ZKvAGPaiojrhkaoR7otSeZpMmY/0K2xeXHHBQx9CrSyZSImfZVYJtZoW8yPWw+Fralr7rZzVIYdcRtYXv64PnKjW/TLG0SVhb3W1R3oTC6pSntNjGSFvN2pfK70Mcb+kZrY727dkMVHCGm9Krjh6xZiYfxkrZU1x1lLjrwziW94FT0R3VIFRuFK0TFTDWY4qk2efB1aKVXzSDvBX/idgTfc6gGj9lCHET1+QI1xWyh5i6FCpywKcu5G4Li8kZUlindXF8r/QI/TVkSuIkUxSnfsOzWyzodXErjxFRoyCh0YXueSNzoaFprmrdriVhGjO3TZCOEkJU1bFKsPRGfNnFzfdGeoVQV2ncMIzWvLOnVJxqrPYhUhcqqaZqxoKP9MKDb0r+jzEVtVtOPBHkOjMOQsRp6eRCZjb+LWBjFbLsPTj8J6eVesM4keAqPuRn7m02pZUh9IrTVBWAsmOIILBw9dBUCjGE08lESJeccPdI4LDlFW4wctgDB5YHmqtN0Y/mh7ds75cxHgNQ4B3ctbAiqJ5LsR6XoU6IVv6VL2bqwd04eTzN+9zo98UTDAF0GSel4TXhIECRsFNp4GwLOtsLW+mRmD92E+hkaRvTH9/zo2K1YI6aZ5IPuinzNjXyIbxdhuGZFiWyfTmo2Hg0FlArc7Owh8zH+wtB+5Gw8jEXY/srJ+reDuZxJ6LBG9DJq8v4ojT0qsGy1qOkiwY9jjnAbt8QvLVu6rNCkdDKWURD7S2E01BS9Pu99wYlHpcJQ0Rh6kxVrtUKdIFZgqHuoLh+yLXkYzv/7SD3KmdiQ/V2freQUf/jRVlRWFq9SlB+7LTJRrUS6bHUuLwTnpsb2DRugTsmuHGxKCuL7x/ehzr7kQmd/Uf+IlLU21xfSXbQ5m7Wm51phqc4wVywqKvY+jQsUDSYh6dOnYvs2BVfBpk36z5dMGH7xMx8OvXTxX3vm5VVBXLNjuDiVeFL9SFfO3DNi6X247udBF+TAwadWxFR10h7ZR0TS16S0NGh6cudhz88inhph2Tr2BET9ISr4Uyih/x1CfiBkVhqqulkQ9m9Tqu2hhvHUvdPnN5DTCEX5UvAxuAWrTtTGEeZID6jKauP7slC6aOXmOZPfPi1OSDdNGDf31iLtY720eLSo+FphJFVZxo97Ol8VMk33bBpTXCj9dbL2bXK6Zzy6sXupob0BVhqKYDlgm9ZbmLHeLIXVF9M4/S0uJiGQBmK6aLHJ+SxwUI7z2jKuFnwqouvGYcOVMvWrgys+I2++ydWY6k/LBi54bxZ+v4/pmoX1AsNlXKAb2r+5DN3l0nViGLrpMtgjaakZr2Vsf+krVIln9N16NcWhaTwdFUct1rUnutHxUNoqEHCHbQQnrZ2yX0yfMhW47Z1+6gpok+bK6TaK763fVQ/hneMsRE0P8SswmT2CS7EeWutlyza/AEmNARGlwIpAiuNUvRAIg6sGH+d+tfnhrWT7dh4Zs4rSejZy5NMDpz55FIGYDGV8IdLfJDyiLiddOpodUpZqnrVzLvm2tLT0jP/RRlXV7g6lkHBg+M50n66GtqXFhRdZlPLPkZ5spZBQXR2DSOoHOZ4JW/QGSPGFhu6mh62Bb4KtpmPucSsaBiDU65E+H/lu/Usrw2+nNkPFzp3+T1bMfgnMtg9xfiXiyd3EpdRCeH2O6GIXP77mJ4RM1UgCXQptqxZLS21Td/2vZgdt1HUuwmwTpNSD2MpSgTIi9Cuz1zkHyeKLApXEuzp75l2b/YGK2+DKWHTr4mdJ2U71bn0z+2Dq1Kla+YVzhwh/Tb4I+t9nbtfHCNTLiLKhIB+w3gJ23IZ56tsY1w+QvD3byW7CSQJdBm21Ini66La3ngbKwCxDkapcqEJcYCzCMLHIdPfSA2vurAs19dkVz/kqUQz9FyF1iJOdLd6nz8vLc+0fkT+BNRx5yqWxwZjMHoxxngKRjkSHnmj8MRNyB+YRb0Yww0+Vif/5pguizT7XnsVTKvrd9uInCIKBsLMywFYG2AvOMCsWeuq6mLRHs2euz9TEoUc0ylJSU3vdW/zkFd8RZSEUFLArki7tfrj+yK3ENu+lut5DyX449z/HxPdfDZ28gHbD0O8YEvavkIa74ecS3e1eR3bvTvzlTxdDm30uCFBTS3I/heLvIcxbrQOfHGKa0YAAebN49dzQX+QgeAbMfbufR6t6xnCxmzSdTgnYtcuHPbBmoKqdx/GfjD14/MiryKQLEFIZVNWTKqkyamiadplmNyxhTPNj841Yp2L7fsOTMqP6lbnF5DT5Wwl8f2jvS3ds0KBBTorKvH15r0DN0fGpyWkfbL7/4iPqbx3FLxaM8jce/x+49edL9ZozZTYCpQYTPDNSdHsjNVLehqC6FIGj4x/RNCZ03YW0qr0Pdprfz1NcdsQa9jEibViS273NndzjzrrX537xZti+SKBroTNvdGKCw6sRn0/deG3UA+/8QqiJaEv0xXcLdkINqsU1uif5effa+UXbu3WTo8bPmmJI9rJmMMwEsaCua9uo4VrEB5+38eMvnmm4fcIEz8EvU15IQn5MSsm4f+Cewm/OtLeVwJlDh9+KIOH3uiKfdaE1IApqmcarJWHrNE/yq1Uv/mH/gQP/jEpxuxMg1aXBNWfd+sCLEFlnuwxXYRbp/lHVu3c3fBQex/uG9K9I2X/fcCO1uuCarDP2QmACXQ5jjTEPfdD/Hx9bnQP32U1aZ0U68on1KdnZI1PAeicK7M69H59AAgkkkEACCSSQQAIJJJBAAgn8P8b/AevP9Boq4KweAAAAAElFTkSuQmCC" }) })
7454
7151
  ] }),
7455
7152
  /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "flex items-center md:hidden justify-center gap-6 h-20", children: [
7456
- /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "text-zinc-500 text-base font-normal leading-5", children: [
7153
+ props.version && /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)("div", { className: "text-zinc-500 text-base font-normal leading-5", children: [
7457
7154
  "Version: ",
7458
7155
  props.version
7459
7156
  ] }),
@@ -7466,11 +7163,11 @@ var BasicFooter = (props) => {
7466
7163
  };
7467
7164
 
7468
7165
  // src/components/DesignElements/AppItem.tsx
7469
- var import_react23 = require("react");
7166
+ var import_react22 = require("react");
7470
7167
 
7471
7168
  // src/components/DesignElements/AppItemPopUpView.tsx
7472
- var import_react21 = require("react");
7473
- var import_react22 = require("@headlessui/react");
7169
+ var import_react20 = require("react");
7170
+ var import_react21 = require("@headlessui/react");
7474
7171
  var import_outline4 = require("@heroicons/react/24/outline");
7475
7172
  var import_core5 = require("@geowiki/core");
7476
7173
 
@@ -7524,10 +7221,10 @@ var ResourceIcon = ({
7524
7221
  };
7525
7222
 
7526
7223
  // src/components/DesignElements/ExpandableText.tsx
7527
- var import_react20 = require("react");
7224
+ var import_react19 = require("react");
7528
7225
  var import_jsx_runtime127 = require("react/jsx-runtime");
7529
7226
  var ExpandableText = ({ text, maxLength = 120, show_read_more = false, no_word_wrap = true }) => {
7530
- const [expanded, setExpanded] = (0, import_react20.useState)(false);
7227
+ const [expanded, setExpanded] = (0, import_react19.useState)(false);
7531
7228
  if (text.length <= maxLength || maxLength == 0) {
7532
7229
  return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)("div", { className: no_word_wrap ? "whitespace-normal" : "whitespace-nowrap", children: [
7533
7230
  " ",
@@ -7579,8 +7276,8 @@ function AppItemPopUpView({
7579
7276
  languages
7580
7277
  }) {
7581
7278
  var _a, _b, _c, _d;
7582
- const [isNarrowViewport, setIsNarrowViewport] = (0, import_react21.useState)(false);
7583
- (0, import_react21.useEffect)(() => {
7279
+ const [isNarrowViewport, setIsNarrowViewport] = (0, import_react20.useState)(false);
7280
+ (0, import_react20.useEffect)(() => {
7584
7281
  const mql = window.matchMedia("(max-width: 699px)");
7585
7282
  setIsNarrowViewport(mql.matches);
7586
7283
  const update = (e) => setIsNarrowViewport(e.matches);
@@ -7606,11 +7303,11 @@ function AppItemPopUpView({
7606
7303
  const currentTypes = ((_a = types == null ? void 0 : types.find((type) => type.key === resource.resourceType)) == null ? void 0 : _a.value) || resource.resourceType;
7607
7304
  const link = (resource == null ? void 0 : resource.link) || "";
7608
7305
  const linkText = link.length > 70 ? `${link.slice(0, 70)}...` : link;
7609
- return /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(import_react22.Transition.Root, { show: open, as: import_react21.Fragment, "data-component": "AppItemPopUpView", children: /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(import_react22.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
7306
+ return /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(import_react21.Transition.Root, { show: open, as: import_react20.Fragment, "data-component": "AppItemPopUpView", children: /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(import_react21.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
7610
7307
  /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
7611
- import_react22.Transition.Child,
7308
+ import_react21.Transition.Child,
7612
7309
  {
7613
- as: import_react21.Fragment,
7310
+ as: import_react20.Fragment,
7614
7311
  enter: "ease-out duration-300",
7615
7312
  enterFrom: "opacity-0",
7616
7313
  enterTo: "opacity-100",
@@ -7621,9 +7318,9 @@ function AppItemPopUpView({
7621
7318
  }
7622
7319
  ),
7623
7320
  /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("div", { className: "fixed z-10 inset-0 overflow-y-auto text-black", children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("div", { className: "flex items-end sm:items-center justify-center min-h-full p-4 text-center sm:p-0", children: /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
7624
- import_react22.Transition.Child,
7321
+ import_react21.Transition.Child,
7625
7322
  {
7626
- as: import_react21.Fragment,
7323
+ as: import_react20.Fragment,
7627
7324
  enter: "ease-out duration-300",
7628
7325
  enterFrom: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
7629
7326
  enterTo: "opacity-100 translate-y-0 sm:scale-100",
@@ -7631,7 +7328,7 @@ function AppItemPopUpView({
7631
7328
  leaveFrom: "opacity-100 translate-y-0 sm:scale-100",
7632
7329
  leaveTo: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
7633
7330
  children: /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
7634
- import_react22.Dialog.Panel,
7331
+ import_react21.Dialog.Panel,
7635
7332
  {
7636
7333
  className: is_small ? `relative bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:max-w-xl sm:w-full sm:p-10` : `relative bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:max-w-4xl sm:w-full sm:p-10`,
7637
7334
  children: [
@@ -7681,7 +7378,7 @@ function AppItemPopUpView({
7681
7378
  return /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("div", { className: "border-b-2", children: /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)("div", { className: "flex justify-between items-center w-full gap-14 lg:mb-6 mb-2", children: [
7682
7379
  /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("div", { className: "text-zinc-500 text-base font-normal leading-5", children: x.name }),
7683
7380
  /* @__PURE__ */ (0, import_jsx_runtime128.jsx)("div", { className: "text-right text-gray-900 text-base font-medium leading-5", children: x.value })
7684
- ] }) });
7381
+ ] }) }, x.name);
7685
7382
  }) }),
7686
7383
  currentTypes && resource.publisher && /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)("div", { className: "my-6 lg:my-10", children: [
7687
7384
  currentTypes && /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
@@ -7765,19 +7462,20 @@ var AppItemPopUpView_default = AppItemPopUpView;
7765
7462
  var import_jsx_runtime129 = require("react/jsx-runtime");
7766
7463
  var AppItem = (props) => {
7767
7464
  var _a;
7768
- const [open, setOpen] = (0, import_react23.useState)(false);
7465
+ const [open, setOpen] = (0, import_react22.useState)(false);
7769
7466
  return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)("div", { className: "w-full h-64 pointer-events-auto mb-6 md:mb-0 md:pointer-events-none", onClick: () => {
7770
7467
  if (window.innerWidth < 700)
7771
7468
  setOpen(true);
7772
7469
  }, children: [
7773
7470
  /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)("div", { className: "w-full h-64 relative overflow-hidden rounded-xl", children: [
7774
7471
  /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("img", { className: "absolute w-full h-64 rounded-xl object-cover", src: props.item.logoUrl }),
7775
- /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("div", { className: "inset-0 absolute bg-black/40 rounded-xl" }),
7472
+ /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("div", { className: "inset-0 absolute bg-black/20 rounded-xl" }),
7776
7473
  /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("div", { className: "left-4 md:left-6 top-44 absolute justify-start text-white text-base font-medium leading-5", children: props.item.locationType }),
7777
7474
  /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("div", { className: "w-80 left-4 md:left-6 top-48 mt-2 absolute justify-start text-white text-xl font-semibold leading-7", children: (_a = props.item) == null ? void 0 : _a.name }),
7778
7475
  /* @__PURE__ */ (0, import_jsx_runtime129.jsx)(
7779
- "a",
7476
+ "button",
7780
7477
  {
7478
+ type: "button",
7781
7479
  className: "w-14 h-14 bottom-4 right-6 md:bottom-2 md:right-8 lg:bottom-0 -mb-3 lg:right-10 absolute origin-top-left -rotate-45 bg-primary rounded-full hidden md:block md:pointer-events-auto hover:cursor-pointer",
7782
7480
  onClick: () => setOpen(true),
7783
7481
  children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("div", { className: "w-4 h-4 left-[40px] top-[16px] absolute origin-top-left rotate-90", children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ (0, import_jsx_runtime129.jsx)("path", { d: "M19.092 5.22341V15.1215C19.092 15.3973 18.9802 15.6476 18.7992 15.8286C18.6182 16.0096 18.3679 16.1214 18.0921 16.1214C17.5391 16.1214 17.0922 15.6745 17.0922 15.1215V7.63613L6.07127 18.6571C5.68024 19.0481 5.04738 19.0474 4.65705 18.6571C4.26673 18.2667 4.26602 17.6339 4.65705 17.2428L15.678 6.22192L8.19259 6.22192C7.63963 6.22192 7.19269 5.77498 7.19269 5.22203C7.19269 4.66907 7.63963 4.22213 8.19259 4.22213L18.0907 4.22213C18.2222 4.22213 18.3516 4.24822 18.4746 4.29913C18.7186 4.40024 18.9139 4.59552 19.015 4.83947C19.0659 4.96251 19.092 5.09188 19.092 5.22341Z", fill: "white" }) }) })
@@ -7810,18 +7508,253 @@ var AppItemsList = (props) => {
7810
7508
  ] });
7811
7509
  };
7812
7510
 
7511
+ // src/components/DesignElements/SummaryCard.tsx
7512
+ var import_solid3 = require("@heroicons/react/24/solid");
7513
+ var import_jsx_runtime131 = require("react/jsx-runtime");
7514
+ var SummaryCard = (props) => {
7515
+ return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("div", { className: "w-96 h-32 relative rounded-xl outline outline-1 outline-offset-[-1px] outline-zinc-300 overflow-hidden flex-row flex w-full items-center justify-between", children: [
7516
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("div", { children: [
7517
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { className: "ml-6 justify-center text-black text-4xl font-semibold leading-8", children: props.count }),
7518
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { className: "mt-2 ml-6 justify-start text-primary text-base font-semibold leading-5", children: props.name })
7519
+ ] }),
7520
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("div", { className: "relative -mt-4 mr-6", children: [
7521
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { className: "w-14 h-14 bg-primary rounded-lg" }),
7522
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("div", { className: "w-7 h-7 top-3.5 left-3.5 absolute", children: [
7523
+ props.imageSrc === "document" && /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(import_solid3.DocumentCheckIcon, { fill: "white", stroke: props.iconColor }),
7524
+ props.imageSrc === "photo" && /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(import_solid3.PhotoIcon, { fill: "white", stroke: props.iconColor }),
7525
+ props.imageSrc === "group" && /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(import_solid3.UserGroupIcon, { fill: "white", stroke: props.iconColor })
7526
+ ] }) })
7527
+ ] })
7528
+ ] });
7529
+ };
7530
+
7531
+ // src/components/ui/VideoPlayer.tsx
7532
+ var import_jsx_runtime132 = require("react/jsx-runtime");
7533
+ var VideoPlayer = (props) => {
7534
+ return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: " max-w-sm aspect-square overflow-hidden bg-black rounded-lg " + props.className, children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7535
+ "video",
7536
+ {
7537
+ src: props.url,
7538
+ controls: true,
7539
+ preload: "metadata",
7540
+ className: "object-cover",
7541
+ style: { width: props.width, height: props.height }
7542
+ }
7543
+ ) });
7544
+ };
7545
+
7546
+ // src/components/DesignElements/Carousel/CarouselGalleryItem.tsx
7547
+ var import_jsx_runtime133 = require("react/jsx-runtime");
7548
+ var CarouselGalleryItem = ({ text, url }) => {
7549
+ return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(import_jsx_runtime133.Fragment, { children: [
7550
+ !url.includes(".mp4") && /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("div", { className: "aspect-square sm:w-auto bg-center relative flex group ", children: [
7551
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7552
+ ImageElement,
7553
+ {
7554
+ src: url,
7555
+ width: 432,
7556
+ height: 356,
7557
+ className: "h-full bg-black group-hover:brightness-50 rounded-xl object-cover"
7558
+ }
7559
+ ),
7560
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: " absolute bottom-6 opacity-0 group-hover:opacity-100", children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: " mx-6 text-white text-base leading-[120%] line-clamp-4", children: text }) })
7561
+ ] }),
7562
+ url.includes(".mp4") && /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("div", { className: " max-w-sm aspect-square relative group cursor-pointer overflow-hidden rounded-xl", children: [
7563
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: "transition-all duration-300 group-hover:brightness-50", children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7564
+ VideoPlayer,
7565
+ {
7566
+ url,
7567
+ width: 432,
7568
+ height: 570
7569
+ }
7570
+ ) }),
7571
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: " absolute bottom-6 opacity-0 group-hover:opacity-100", children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: " mx-6 text-white text-base leading-[120%] line-clamp-4", children: text }) })
7572
+ ] })
7573
+ ] });
7574
+ };
7575
+
7576
+ // src/components/DesignElements/Carousel/CarouselOpen.tsx
7577
+ var import_react23 = require("react");
7578
+ var import_react24 = require("@headlessui/react");
7579
+ var import_outline5 = require("@heroicons/react/24/outline");
7580
+ var import_react25 = require("react");
7581
+ var import_lucide_react20 = require("lucide-react");
7582
+ var import_jsx_runtime134 = require("react/jsx-runtime");
7583
+ var GalleryCarouselOpen = ({
7584
+ list,
7585
+ currentPhoto,
7586
+ open,
7587
+ setOpen
7588
+ }) => {
7589
+ const [defaultPhoto, setDefaultPhoto] = (0, import_react25.useState)(currentPhoto);
7590
+ const [text, setDefaultText] = (0, import_react25.useState)("");
7591
+ const [rotation, setRotation] = (0, import_react25.useState)(0);
7592
+ (0, import_react25.useEffect)(() => {
7593
+ setDefaultPhoto(currentPhoto);
7594
+ }, [currentPhoto]);
7595
+ const handlePrevious = () => {
7596
+ const currentIndex = list.findIndex(
7597
+ (item) => item.url === defaultPhoto.imageUrl
7598
+ );
7599
+ if (currentIndex > 0) {
7600
+ const previousIndex = currentIndex - 1;
7601
+ setDefaultPhoto({ imageUrl: list[previousIndex].url });
7602
+ }
7603
+ };
7604
+ const handleNext = () => {
7605
+ const currentIndex = list.findIndex(
7606
+ (item) => item.url === defaultPhoto.imageUrl
7607
+ );
7608
+ if (currentIndex < list.length - 1) {
7609
+ const nextIndex = currentIndex + 1;
7610
+ setDefaultPhoto({ imageUrl: list[nextIndex].url });
7611
+ }
7612
+ };
7613
+ (0, import_react25.useEffect)(() => {
7614
+ const foundPhoto = list.find((list2) => list2.url === defaultPhoto.imageUrl);
7615
+ if (foundPhoto) {
7616
+ setDefaultText(foundPhoto.text);
7617
+ }
7618
+ }, [defaultPhoto, list]);
7619
+ return /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_react24.Transition.Root, { show: open, as: import_react23.Fragment, "data-component": "ResourceView", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(import_react24.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
7620
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7621
+ import_react24.Transition.Child,
7622
+ {
7623
+ as: import_react23.Fragment,
7624
+ enter: "ease-out duration-300",
7625
+ enterFrom: "opacity-0",
7626
+ enterTo: "opacity-100",
7627
+ leave: "ease-in duration-200",
7628
+ leaveFrom: "opacity-100",
7629
+ leaveTo: "opacity-0",
7630
+ children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("div", { className: "fixed inset-0 bg-black bg-opacity-90 transition-opacity" })
7631
+ }
7632
+ ),
7633
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_react24.Dialog.Panel, { className: "relative ", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "fixed inset-0 flex items-center justify-between", children: [
7634
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("div", { className: "absolute top-0 right-0 pt-4 pr-4 z-40", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
7635
+ "button",
7636
+ {
7637
+ type: "button",
7638
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 ",
7639
+ onClick: () => setOpen(false),
7640
+ children: [
7641
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("span", { className: "sr-only", children: "Close" }),
7642
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7643
+ import_outline5.XMarkIcon,
7644
+ {
7645
+ className: "h-4 w-4 lg:h-6 lg:w-6 text-white",
7646
+ "aria-hidden": "true"
7647
+ }
7648
+ )
7649
+ ]
7650
+ }
7651
+ ) }),
7652
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("div", { className: "mx-20 w-full items-center z-30 cursor-default ", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "flex flex-col", children: [
7653
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "flex justify-between items-center w-full ", children: [
7654
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7655
+ "button",
7656
+ {
7657
+ type: "button",
7658
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 z-40 ",
7659
+ onClick: handlePrevious,
7660
+ children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_lucide_react20.ChevronLeft, { className: "h-8 w-8 disabled:pointer-events-none disabled:opacity-60 text-white", onClick: () => setRotation(0) })
7661
+ }
7662
+ ),
7663
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "w-full flex-col flex justify-center items-center", children: [
7664
+ !defaultPhoto.imageUrl.includes(".mp4") && /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7665
+ "img",
7666
+ {
7667
+ src: defaultPhoto.imageUrl,
7668
+ alt: "Description",
7669
+ style: { maxWidth: "100%", maxHeight: "95vh", transform: `rotate(${rotation}deg)` },
7670
+ className: " p-4"
7671
+ }
7672
+ ),
7673
+ defaultPhoto.imageUrl.includes(".mp4") && /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7674
+ "video",
7675
+ {
7676
+ src: defaultPhoto.imageUrl,
7677
+ controls: true,
7678
+ preload: "metadata",
7679
+ style: { maxWidth: "100%", maxHeight: "95vh", transform: `rotate(${rotation}deg)` },
7680
+ className: " p-4"
7681
+ }
7682
+ ),
7683
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(Body16, { className: "z-40 text-white", children: text })
7684
+ ] }),
7685
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7686
+ "button",
7687
+ {
7688
+ type: "button",
7689
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 z-40",
7690
+ onClick: handleNext,
7691
+ children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_lucide_react20.ChevronRight, { className: "h-8 w-8 disabled:pointer-events-none disabled:opacity-60 text-white", onClick: () => setRotation(0) })
7692
+ }
7693
+ )
7694
+ ] }),
7695
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "gap-2 flex flex-row", children: [
7696
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_lucide_react20.RotateCcw, { className: "h-6 w-6 text-white cursor-pointer", onClick: () => {
7697
+ setRotation(rotation - 90);
7698
+ } }),
7699
+ /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(import_lucide_react20.RotateCw, { className: "h-6 w-6 text-white cursor-pointer", onClick: () => {
7700
+ setRotation(rotation + 90);
7701
+ } })
7702
+ ] })
7703
+ ] }) })
7704
+ ] }) })
7705
+ ] }) });
7706
+ };
7707
+
7708
+ // src/components/DesignElements/Carousel/CarouselGalleryItemList.tsx
7709
+ var import_react26 = require("react");
7710
+ var import_jsx_runtime135 = require("react/jsx-runtime");
7711
+ var CarouselItemList = ({ galleryItems }) => {
7712
+ const [open, setOpen] = (0, import_react26.useState)(false);
7713
+ const [selectedItemId, setSelectedItemId] = (0, import_react26.useState)("");
7714
+ const handleOpenGallery = (id) => {
7715
+ setOpen(true);
7716
+ setSelectedItemId(id);
7717
+ };
7718
+ return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { children: [
7719
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(Carousel, { className: "w-full px-8", children: [
7720
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(CarouselContent, { className: "px-3", children: galleryItems.map((galleryItem, index) => /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(CarouselItem, { className: " md:basis-1/2 lg:basis-1/3", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { className: "p-1", children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7721
+ "div",
7722
+ {
7723
+ className: "flex aspect-square items-center justify-center cursor-pointer",
7724
+ onClick: () => handleOpenGallery(galleryItem.url),
7725
+ children: /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(CarouselGalleryItem, { text: galleryItem.text, url: galleryItem.url })
7726
+ }
7727
+ ) }) }, index)) }),
7728
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(CarouselPrevious, {}),
7729
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(CarouselNext, {})
7730
+ ] }),
7731
+ /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7732
+ GalleryCarouselOpen,
7733
+ {
7734
+ currentPhoto: { imageUrl: selectedItemId },
7735
+ list: galleryItems.map((galleryItem) => ({
7736
+ url: galleryItem.url,
7737
+ text: galleryItem.text
7738
+ })),
7739
+ open,
7740
+ setOpen
7741
+ }
7742
+ )
7743
+ ] });
7744
+ };
7745
+
7813
7746
  // src/components/Elements/button.tsx
7814
7747
  var import_classnames4 = __toESM(require("classnames"));
7815
- var import_jsx_runtime131 = require("react/jsx-runtime");
7748
+ var import_jsx_runtime136 = require("react/jsx-runtime");
7816
7749
  var OldButton = ({
7817
7750
  label,
7818
7751
  appearance,
7819
- compact: compact2 = false,
7752
+ compact = false,
7820
7753
  handleClick,
7821
7754
  loading = false,
7822
7755
  type
7823
7756
  }) => {
7824
- return /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("button", { onClick: handleClick, type, children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
7757
+ return /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("button", { onClick: handleClick, type, children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7825
7758
  "div",
7826
7759
  {
7827
7760
  className: (0, import_classnames4.default)(
@@ -7829,11 +7762,11 @@ var OldButton = ({
7829
7762
  "flex w-full justify-center lg:w-auto text-center uppercase tracking-wide font-semibold text-base md:text-sm border-2 rounded-md",
7830
7763
  // Full-size button
7831
7764
  {
7832
- "px-8 py-4": compact2 === false
7765
+ "px-8 py-4": compact === false
7833
7766
  },
7834
7767
  // Compact button
7835
7768
  {
7836
- "px-6 py-2": compact2 === true
7769
+ "px-6 py-2": compact === true
7837
7770
  },
7838
7771
  // Specific to when the button is fully dark
7839
7772
  {
@@ -7859,9 +7792,9 @@ var OldButton = ({
7859
7792
 
7860
7793
  // src/components/Elements/button-link.tsx
7861
7794
  var import_classnames5 = __toESM(require("classnames"));
7862
- var import_jsx_runtime132 = require("react/jsx-runtime");
7863
- var ButtonContent = ({ button, appearance, compact: compact2 }) => {
7864
- return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7795
+ var import_jsx_runtime137 = require("react/jsx-runtime");
7796
+ var ButtonContent = ({ button, appearance, compact }) => {
7797
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7865
7798
  "div",
7866
7799
  {
7867
7800
  className: (0, import_classnames5.default)(
@@ -7869,11 +7802,11 @@ var ButtonContent = ({ button, appearance, compact: compact2 }) => {
7869
7802
  "block mr-4 w-full lg:w-auto text-center uppercase tracking-wide font-semibold text-base md:text-sm border-2 rounded-md",
7870
7803
  // Full-size button
7871
7804
  {
7872
- "px-8 py-4": compact2 === false
7805
+ "px-8 py-4": compact === false
7873
7806
  },
7874
7807
  // Compact button
7875
7808
  {
7876
- "px-6 py-2": compact2 === true
7809
+ "px-6 py-2": compact === true
7877
7810
  },
7878
7811
  // Specific to when the button is fully dark
7879
7812
  {
@@ -7899,15 +7832,15 @@ var ButtonContent = ({ button, appearance, compact: compact2 }) => {
7899
7832
  var ButtonLink = ({
7900
7833
  button,
7901
7834
  appearance,
7902
- compact: compact2 = false
7835
+ compact = false
7903
7836
  }) => {
7904
- return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(ButtonContent, { button, appearance, compact: compact2 });
7837
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(ButtonContent, { button, appearance, compact });
7905
7838
  };
7906
7839
 
7907
7840
  // src/components/Elements/Error.tsx
7908
- var import_jsx_runtime133 = require("react/jsx-runtime");
7841
+ var import_jsx_runtime138 = require("react/jsx-runtime");
7909
7842
  var ErrorMessage = (props) => {
7910
- return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("div", { children: [
7843
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)("div", { children: [
7911
7844
  "Error (: ",
7912
7845
  props.message,
7913
7846
  ")"
@@ -7915,10 +7848,10 @@ var ErrorMessage = (props) => {
7915
7848
  };
7916
7849
 
7917
7850
  // src/components/Elements/feature-disabled.tsx
7918
- var import_jsx_runtime134 = require("react/jsx-runtime");
7851
+ var import_jsx_runtime139 = require("react/jsx-runtime");
7919
7852
  var FeatureDisabled = () => {
7920
- return /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
7921
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7853
+ return /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
7854
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
7922
7855
  "svg",
7923
7856
  {
7924
7857
  className: "mx-auto h-12 w-12 text-gray-400",
@@ -7926,7 +7859,7 @@ var FeatureDisabled = () => {
7926
7859
  fill: "none",
7927
7860
  viewBox: "0 0 24 24",
7928
7861
  stroke: "currentColor",
7929
- children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7862
+ children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
7930
7863
  "path",
7931
7864
  {
7932
7865
  strokeLinecap: "round",
@@ -7937,16 +7870,16 @@ var FeatureDisabled = () => {
7937
7870
  )
7938
7871
  }
7939
7872
  ),
7940
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "This feature is disabled for your site." })
7873
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "This feature is disabled for your site." })
7941
7874
  ] }) }) });
7942
7875
  };
7943
7876
 
7944
7877
  // src/components/Elements/IframeViewer.tsx
7945
- var import_react24 = require("react");
7946
- var import_jsx_runtime135 = require("react/jsx-runtime");
7878
+ var import_react27 = require("react");
7879
+ var import_jsx_runtime140 = require("react/jsx-runtime");
7947
7880
  var IframeViewer = ({ html, className }) => {
7948
- const containerRef = (0, import_react24.useRef)(null);
7949
- (0, import_react24.useEffect)(() => {
7881
+ const containerRef = (0, import_react27.useRef)(null);
7882
+ (0, import_react27.useEffect)(() => {
7950
7883
  if (containerRef.current) {
7951
7884
  containerRef.current.innerHTML = "";
7952
7885
  const tempDiv = document.createElement("div");
@@ -7973,28 +7906,28 @@ var IframeViewer = ({ html, className }) => {
7973
7906
  });
7974
7907
  }
7975
7908
  }, [html]);
7976
- return /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { ref: containerRef, className: className != null ? className : "" });
7909
+ return /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { ref: containerRef, className: className != null ? className : "" });
7977
7910
  };
7978
7911
 
7979
7912
  // src/components/Elements/loader.tsx
7980
- var import_jsx_runtime136 = require("react/jsx-runtime");
7913
+ var import_jsx_runtime141 = require("react/jsx-runtime");
7981
7914
  var LoaderFull = ({
7982
7915
  showInCenter = true,
7983
7916
  cssClass = null
7984
7917
  }) => {
7985
- return /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7918
+ return /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
7986
7919
  "div",
7987
7920
  {
7988
7921
  className: showInCenter ? "w-full min-h-screen flex items-center justify-center " + (cssClass !== null ? cssClass : "z-[1000] fixed top-0 left-0") : "w-full flex items-center justify-center " + (cssClass !== null ? cssClass : "z-[1000] fixed top-0 left-0"),
7989
- children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7922
+ children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
7990
7923
  "svg",
7991
7924
  {
7992
7925
  viewBox: "0 0 38 38",
7993
7926
  className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
7994
7927
  xmlns: "http://www.w3.org/2000/svg",
7995
- children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
7996
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
7997
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7928
+ children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
7929
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
7930
+ /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
7998
7931
  "animateTransform",
7999
7932
  {
8000
7933
  attributeName: "transform",
@@ -8013,17 +7946,17 @@ var LoaderFull = ({
8013
7946
  };
8014
7947
 
8015
7948
  // src/components/Elements/LocalLoader.tsx
8016
- var import_jsx_runtime137 = require("react/jsx-runtime");
7949
+ var import_jsx_runtime142 = require("react/jsx-runtime");
8017
7950
  var LocalLoader = () => {
8018
- return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "flex items-center justify-center ", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7951
+ return /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("div", { className: "flex items-center justify-center ", children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8019
7952
  "svg",
8020
7953
  {
8021
7954
  viewBox: "0 0 38 38",
8022
7955
  className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
8023
7956
  xmlns: "http://www.w3.org/2000/svg",
8024
- children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
8025
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
8026
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7957
+ children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
7958
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
7959
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8027
7960
  "animateTransform",
8028
7961
  {
8029
7962
  attributeName: "transform",
@@ -8040,9 +7973,9 @@ var LocalLoader = () => {
8040
7973
  };
8041
7974
 
8042
7975
  // src/components/Elements/MediaEmbedItem.tsx
8043
- var import_jsx_runtime138 = require("react/jsx-runtime");
7976
+ var import_jsx_runtime143 = require("react/jsx-runtime");
8044
7977
  var MediaEmbedItem = ({ alt, src }) => {
8045
- return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
7978
+ return /* @__PURE__ */ (0, import_jsx_runtime143.jsx)(
8046
7979
  "img",
8047
7980
  {
8048
7981
  alt,
@@ -8053,10 +7986,10 @@ var MediaEmbedItem = ({ alt, src }) => {
8053
7986
  };
8054
7987
 
8055
7988
  // src/components/Elements/permission-disabled.tsx
8056
- var import_jsx_runtime139 = require("react/jsx-runtime");
7989
+ var import_jsx_runtime144 = require("react/jsx-runtime");
8057
7990
  var PermissionDisabled = () => {
8058
- return /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
8059
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
7991
+ return /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
7992
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
8060
7993
  "svg",
8061
7994
  {
8062
7995
  className: "mx-auto h-12 w-12 text-gray-400",
@@ -8064,7 +7997,7 @@ var PermissionDisabled = () => {
8064
7997
  fill: "none",
8065
7998
  viewBox: "0 0 24 24",
8066
7999
  stroke: "currentColor",
8067
- children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
8000
+ children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)(
8068
8001
  "path",
8069
8002
  {
8070
8003
  strokeLinecap: "round",
@@ -8075,38 +8008,38 @@ var PermissionDisabled = () => {
8075
8008
  )
8076
8009
  }
8077
8010
  ),
8078
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "Permission denied" })
8011
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "Permission denied" })
8079
8012
  ] }) }) });
8080
8013
  };
8081
8014
 
8082
8015
  // src/components/Elements/ShowLargeText.tsx
8083
- var import_jsx_runtime140 = require("react/jsx-runtime");
8016
+ var import_jsx_runtime145 = require("react/jsx-runtime");
8084
8017
  var ShowLargeText = (props) => {
8085
- return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
8018
+ return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
8086
8019
  "div",
8087
8020
  {
8088
8021
  className: props.colSpan != null ? "sm:col-span-" + props.colSpan : "sm:col-span-1",
8089
8022
  children: [
8090
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8091
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8023
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8024
+ /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8092
8025
  ]
8093
8026
  }
8094
8027
  );
8095
8028
  };
8096
8029
 
8097
8030
  // src/components/Elements/ShowShortText.tsx
8098
- var import_jsx_runtime141 = require("react/jsx-runtime");
8031
+ var import_jsx_runtime146 = require("react/jsx-runtime");
8099
8032
  var ShowShortText = (props) => {
8100
- return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)("div", { className: "sm:col-span-1", children: [
8101
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8102
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8033
+ return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "sm:col-span-1", children: [
8034
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8035
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8103
8036
  ] });
8104
8037
  };
8105
8038
 
8106
8039
  // src/components/Elements/SizedImage.tsx
8107
- var import_jsx_runtime142 = require("react/jsx-runtime");
8040
+ var import_jsx_runtime147 = require("react/jsx-runtime");
8108
8041
  var SizedImage = (props) => {
8109
- return /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8042
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
8110
8043
  "img",
8111
8044
  {
8112
8045
  className: props.className,
@@ -8119,43 +8052,42 @@ var SizedImage = (props) => {
8119
8052
  };
8120
8053
 
8121
8054
  // src/components/Elements/UnderConstruction.tsx
8122
- var import_jsx_runtime143 = require("react/jsx-runtime");
8055
+ var import_jsx_runtime148 = require("react/jsx-runtime");
8123
8056
  var UnderConstruction = () => {
8124
- return /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("div", { className: " min-h-screen px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8", children: /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("div", { className: "max-w-max mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)("main", { className: "sm:flex", children: [
8125
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("p", { className: "text-4xl font-extrabold text-primary-600 sm:text-5xl", children: "recodo.io" }),
8126
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("div", { className: "sm:ml-6", children: /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)("div", { className: "sm:border-l sm:border-gray-200 sm:pl-6", children: [
8127
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("h1", { className: "text-4xl font-extrabold tracking-tight sm:text-5xl", children: "Under Construction" }),
8128
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("p", { className: "mt-4 text-xl ", children: "Please check back later." })
8057
+ return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: " min-h-screen px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "max-w-max mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsxs)("main", { className: "sm:flex", children: [
8058
+ /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("p", { className: "text-4xl font-extrabold text-primary-600 sm:text-5xl", children: "recodo.io" }),
8059
+ /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "sm:ml-6", children: /* @__PURE__ */ (0, import_jsx_runtime148.jsxs)("div", { className: "sm:border-l sm:border-gray-200 sm:pl-6", children: [
8060
+ /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("h1", { className: "text-4xl font-extrabold tracking-tight sm:text-5xl", children: "Under Construction" }),
8061
+ /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("p", { className: "mt-4 text-xl ", children: "Please check back later." })
8129
8062
  ] }) })
8130
8063
  ] }) }) });
8131
8064
  };
8132
8065
 
8133
8066
  // src/components/Elements/FeaturedItemWithBannerImage.tsx
8134
- var import_jsx_runtime144 = require("react/jsx-runtime");
8067
+ var import_jsx_runtime149 = require("react/jsx-runtime");
8135
8068
  var FeaturedItemWithBannerImage = (props) => {
8136
8069
  var _a, _b, _c, _d;
8137
- return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "w-full h-full mt-15 pointer-events-auto md:pointer-events-none", onClick: () => {
8138
- if (window.innerWidth < 700 && props.itemDetails.externalWebsiteLink)
8139
- window.open(props.itemDetails.externalWebsiteLink, "_blank");
8070
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "w-full h-full mt-15 pointer-events-auto md:pointer-events-none", onClick: () => {
8071
+ if (window.innerWidth < 700 && props.itemDetails.externalWebsiteLink) window.open(props.itemDetails.externalWebsiteLink, "_blank");
8140
8072
  }, children: [
8141
- /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "hidden md:block relative", children: [
8142
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("img", { src: (_a = props.featuredItem[0]) == null ? void 0 : _a.landscapeBannerUrl, className: "relative w-full object-contain rounded-xl mt-6 lg:mt-12 " }),
8143
- props.itemDetails.externalWebsiteLink && /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("a", { className: "hidden md:block md:pointer-events-auto absolute featuredItemButton ml-5 h-24 rounded-tr-xl", target: "_blank", href: (_b = props.itemDetails) == null ? void 0 : _b.externalWebsiteLink, children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "w-auto h-14 bg-primary rounded-[40px] flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "inline-flex gap-2", children: [
8144
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "text-white text-base text-lg font-medium ml-6", children: "View Quest" }),
8145
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("svg", { width: "13", height: "13", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: "-rotate-1 mt-2 mr-6", children: /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M14.728 1.00124V10.8994C14.728 11.1751 14.6162 11.4254 14.4352 11.6065C14.2542 11.7875 14.0038 11.8992 13.7281 11.8992C13.1751 11.8992 12.7282 11.4523 12.7282 10.8994V3.41396L1.70725 14.4349C1.31622 14.8259 0.683362 14.8252 0.293039 14.4349C-0.0972836 14.0446 -0.0979906 13.4117 0.293039 13.0207L11.314 1.99975L3.82857 1.99975C3.27562 1.99975 2.82868 1.55281 2.82868 0.999856C2.82868 0.446899 3.27562 -3.6872e-05 3.82857 -3.67244e-05L13.7267 -3.66612e-05C13.8582 -3.69984e-05 13.9876 0.0260465 14.1106 0.0769579C14.3546 0.178074 14.5498 0.373349 14.651 0.617301C14.7019 0.740338 14.728 0.869715 14.728 1.00124Z", fill: "white" }) })
8073
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "hidden md:block relative", children: [
8074
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("img", { src: (_a = props.featuredItem[0]) == null ? void 0 : _a.landscapeBannerUrl, className: "relative w-full object-contain rounded-xl mt-6 lg:mt-12 " }),
8075
+ props.itemDetails.externalWebsiteLink && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("a", { className: "hidden md:block md:pointer-events-auto absolute featuredItemButton ml-5 h-24 rounded-tr-xl", target: "_blank", href: (_b = props.itemDetails) == null ? void 0 : _b.externalWebsiteLink, children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "w-auto h-14 bg-primary rounded-[40px] flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "inline-flex gap-2", children: [
8076
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "text-white text-base text-lg font-medium ml-6", children: "View Quest" }),
8077
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("svg", { width: "13", height: "13", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: "-rotate-1 mt-2 mr-6", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("path", { d: "M14.728 1.00124V10.8994C14.728 11.1751 14.6162 11.4254 14.4352 11.6065C14.2542 11.7875 14.0038 11.8992 13.7281 11.8992C13.1751 11.8992 12.7282 11.4523 12.7282 10.8994V3.41396L1.70725 14.4349C1.31622 14.8259 0.683362 14.8252 0.293039 14.4349C-0.0972836 14.0446 -0.0979906 13.4117 0.293039 13.0207L11.314 1.99975L3.82857 1.99975C3.27562 1.99975 2.82868 1.55281 2.82868 0.999856C2.82868 0.446899 3.27562 -3.6872e-05 3.82857 -3.67244e-05L13.7267 -3.66612e-05C13.8582 -3.69984e-05 13.9876 0.0260465 14.1106 0.0769579C14.3546 0.178074 14.5498 0.373349 14.651 0.617301C14.7019 0.740338 14.728 0.869715 14.728 1.00124Z", fill: "white" }) })
8146
8078
  ] }) }) })
8147
8079
  ] }),
8148
- ((_c = props.featuredItem[0]) == null ? void 0 : _c.portraitBannerUrl) && /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "md:hidden", children: /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "w-full relative pt-10", children: [
8149
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: "Feature Quest" }),
8150
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("img", { src: (_d = props.featuredItem[0]) == null ? void 0 : _d.portraitBannerUrl, className: "w-full h-full overflow-hidden rounded-xl object-cover mt-5" })
8080
+ ((_c = props.featuredItem[0]) == null ? void 0 : _c.portraitBannerUrl) && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "md:hidden", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "w-full relative pt-10", children: [
8081
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: "Feature Quest" }),
8082
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("img", { src: (_d = props.featuredItem[0]) == null ? void 0 : _d.portraitBannerUrl, className: "w-full h-full overflow-hidden rounded-xl object-cover mt-5" })
8151
8083
  ] }) })
8152
8084
  ] });
8153
8085
  };
8154
8086
 
8155
8087
  // src/components/Hero/HeroImage.tsx
8156
- var import_jsx_runtime145 = require("react/jsx-runtime");
8088
+ var import_jsx_runtime150 = require("react/jsx-runtime");
8157
8089
  var HeroImage = ({ path, cmsUrl }) => {
8158
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
8090
+ return /* @__PURE__ */ (0, import_jsx_runtime150.jsx)(
8159
8091
  "div",
8160
8092
  {
8161
8093
  className: "w-full bg-center bg-cover hero-geo-wiki rounded-xl overflow-hidden",
@@ -8167,12 +8099,12 @@ var HeroImage = ({ path, cmsUrl }) => {
8167
8099
  };
8168
8100
 
8169
8101
  // src/components/Hero/HeroImageRightWithAppButtons.tsx
8170
- var import_react25 = require("react");
8102
+ var import_react28 = require("react");
8171
8103
 
8172
8104
  // src/components/HeadingTextBlocks/H1BodyButton.tsx
8173
8105
  var import_core6 = require("@geowiki/core");
8174
8106
  var import_html_react_parser2 = __toESM(require("html-react-parser"));
8175
- var import_jsx_runtime146 = require("react/jsx-runtime");
8107
+ var import_jsx_runtime151 = require("react/jsx-runtime");
8176
8108
  var HtmlView2 = (props) => {
8177
8109
  const options = {
8178
8110
  replace: (domNode) => {
@@ -8186,11 +8118,11 @@ var HtmlView2 = (props) => {
8186
8118
  data = data.replace(match, imageHtml);
8187
8119
  });
8188
8120
  }
8189
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("span", { children: (0, import_html_react_parser2.default)(data) });
8121
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("span", { children: (0, import_html_react_parser2.default)(data) });
8190
8122
  }
8191
8123
  }
8192
8124
  };
8193
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8125
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8194
8126
  "div",
8195
8127
  {
8196
8128
  className: props.cssClass !== void 0 && props.cssClass !== null ? props.cssClass : "m-5 ",
@@ -8210,40 +8142,40 @@ var H1BodyButton = (props) => {
8210
8142
  const modifiedText = text.replace(regex, `$1${textToAdd}`);
8211
8143
  return modifiedText;
8212
8144
  };
8213
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8145
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8214
8146
  "div",
8215
8147
  {
8216
8148
  className: "px-0 container mx-auto mt-6 lg:mt-10 flex justify-start",
8217
8149
  "data-component-name": "H1BodyButton",
8218
8150
  children: [
8219
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8220
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "w-full max-w-3xl lg:px-5", children: [
8221
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8222
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(H1Design, { children: [
8151
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8152
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("div", { className: "w-full max-w-3xl lg:px-5", children: [
8153
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8154
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(H1Design, { children: [
8223
8155
  props.title,
8224
8156
  " "
8225
8157
  ] }),
8226
- props.textBody && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8158
+ props.textBody && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8227
8159
  HtmlView2,
8228
8160
  {
8229
8161
  cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
8230
8162
  html: addLinksStyles(props.textBody)
8231
8163
  }
8232
8164
  ),
8233
- ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8165
+ ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8234
8166
  import_core6.Link,
8235
8167
  {
8236
8168
  href: props.button.link,
8237
8169
  target: props.button.isNewTab ? "_blank" : "_self",
8238
8170
  rel: "noreferrer",
8239
- children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8171
+ children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8240
8172
  DesignButton,
8241
8173
  {
8242
8174
  variant: "externalLink",
8243
8175
  className: "h-auto p-0 lg:p-0",
8244
8176
  children: props.button.text
8245
8177
  }
8246
- ) : /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(DesignButton, { children: props.button.text })
8178
+ ) : /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(DesignButton, { children: props.button.text })
8247
8179
  }
8248
8180
  ) })
8249
8181
  ] })
@@ -8260,57 +8192,57 @@ var H1BodyButtonWithApp = (props) => {
8260
8192
  const modifiedText = text.replace(regex, `$1${textToAdd}`);
8261
8193
  return modifiedText;
8262
8194
  };
8263
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8195
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8264
8196
  "div",
8265
8197
  {
8266
8198
  className: "px-0 container mx-auto mt-2 lg:mt-10 flex justify-start",
8267
8199
  "data-component-name": "H1BodyButton",
8268
8200
  children: [
8269
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8270
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "max-w-3xl lg:px-5", children: [
8271
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8272
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(BigLandingTitle, { children: [
8201
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8202
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("div", { className: "max-w-3xl lg:px-5", children: [
8203
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8204
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(BigLandingTitle, { children: [
8273
8205
  props.title,
8274
8206
  " "
8275
8207
  ] }),
8276
- props.textBody && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8208
+ props.textBody && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8277
8209
  HtmlView2,
8278
8210
  {
8279
8211
  cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
8280
8212
  html: addLinksStyles(props.textBody)
8281
8213
  }
8282
8214
  ),
8283
- ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8215
+ ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8284
8216
  import_core6.Link,
8285
8217
  {
8286
8218
  href: props.button.link,
8287
8219
  target: props.button.isNewTab ? "_blank" : "_self",
8288
8220
  rel: "noreferrer",
8289
- children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8221
+ children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(
8290
8222
  DesignButton,
8291
8223
  {
8292
8224
  variant: "externalLink",
8293
8225
  className: "h-auto p-0 lg:p-0",
8294
8226
  children: props.button.text
8295
8227
  }
8296
- ) : /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(DesignButton, { children: props.button.text })
8228
+ ) : /* @__PURE__ */ (0, import_jsx_runtime151.jsx)(DesignButton, { children: props.button.text })
8297
8229
  }
8298
8230
  ) }),
8299
- props.show_app_stores && /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "mt-6 gap-3 lg:gap-2 flex flex-row md:px-0", children: [
8300
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("a", { href: props.google_marketplace_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", className: "w-full md:w-auto h-auto", viewBox: "0 0 180 53", fill: "none", children: [
8301
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("g", { clipPath: "url(#clip0_5955_146)", children: [
8302
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M173.33 53H6.66992C3.00332 53 0.00341797 50.0188 0.00341797 46.3751V6.62585C0.00341797 2.98215 3.00332 0.000976562 6.66992 0.000976562H173.33C176.997 0.000976562 179.996 2.98215 179.996 6.62585V46.3751C179.996 50.0188 176.997 53 173.33 53Z", fill: "#100F0D" }),
8303
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M173.33 0.000976562H6.66992C3.00332 0.000976562 0.00341797 2.98215 0.00341797 6.62585V46.3751C0.00341797 50.0188 3.00332 53 6.66992 53H173.33C176.997 53 179.996 50.0188 179.996 46.3751V6.62585C179.996 2.98215 176.997 0.000976562 173.33 0.000976562ZM173.33 1.06042C176.418 1.06042 178.93 3.55723 178.93 6.62585V46.3751C178.93 49.4437 176.418 51.9405 173.33 51.9405H6.66992C3.58202 51.9405 1.07062 49.4437 1.07062 46.3751V6.62585C1.07062 3.55723 3.58202 1.06042 6.66992 1.06042H173.33Z", fill: "#A2A2A1" }),
8304
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M142.58 39.7504H145.068V23.1854H142.58V39.7504ZM164.989 29.1529L162.137 36.3342H162.052L159.092 29.1529H156.412L160.852 39.1899L158.32 44.7733H160.915L167.756 29.1534L164.989 29.1529ZM150.879 37.8688C150.066 37.8688 148.928 37.4635 148.928 36.462C148.928 35.1836 150.344 34.6934 151.566 34.6934C152.659 34.6934 153.175 34.9274 153.839 35.2473C153.646 36.7818 152.316 37.8688 150.879 37.8688ZM151.18 28.7906C149.379 28.7906 147.514 29.5794 146.742 31.3268L148.95 32.2429C149.422 31.3268 150.3 31.0287 151.223 31.0287C152.51 31.0287 153.818 31.7952 153.839 33.1595V33.3298C153.388 33.074 152.423 32.6906 151.244 32.6906C148.863 32.6906 146.44 33.9901 146.44 36.4196C146.44 38.6359 148.392 40.0638 150.579 40.0638C152.251 40.0638 153.175 39.3179 153.752 38.4439H153.839V39.7232H156.241V33.3721C156.241 30.4313 154.031 28.7906 151.18 28.7906ZM135.804 31.1694H132.266V25.4917H135.804C137.664 25.4917 138.72 27.0217 138.72 28.3305C138.72 29.6141 137.664 31.1694 135.804 31.1694ZM135.74 23.1858H129.779V39.7508H132.266V33.4753H135.74C138.498 33.4753 141.208 31.4919 141.208 28.3311C141.208 25.1709 138.498 23.1858 135.74 23.1858ZM103.233 37.8716C101.514 37.8716 100.076 36.441 100.076 34.4779C100.076 32.492 101.514 31.0412 103.233 31.0412C104.93 31.0412 106.262 32.4921 106.262 34.4779C106.262 36.441 104.93 37.8716 103.233 37.8716ZM106.09 30.0802H106.004C105.446 29.4187 104.371 28.8209 103.019 28.8209C100.183 28.8209 97.5839 31.2975 97.5839 34.4779C97.5839 37.6366 100.183 40.0914 103.019 40.0914C104.371 40.0914 105.446 39.4936 106.004 38.811H106.09V39.6214C106.09 41.7782 104.93 42.9303 103.061 42.9303C101.537 42.9303 100.592 41.8418 100.205 40.9241L98.0356 41.8205C98.658 43.3141 100.311 45.1506 103.061 45.1506C105.983 45.1506 108.453 43.4425 108.453 39.2798V29.1623H106.09L106.09 30.0802ZM110.172 39.7499H112.663V23.1849H110.172V39.7499ZM116.336 34.2854C116.272 32.108 118.034 30.9982 119.301 30.9982C120.289 30.9982 121.126 31.4894 121.406 32.1933L116.336 34.2854ZM124.069 32.4066C123.596 31.1479 122.157 28.8209 119.215 28.8209C116.293 28.8209 113.866 31.1049 113.866 34.4562C113.866 37.6155 116.272 40.0915 119.493 40.0915C122.092 40.0915 123.596 38.5124 124.22 37.5942L122.286 36.3133C121.642 37.2527 120.762 37.8717 119.493 37.8717C118.227 37.8717 117.324 37.2952 116.745 36.1638L124.327 33.0475L124.069 32.4066ZM63.6598 30.5501V32.9407H69.4163C69.2444 34.2855 68.7934 35.2672 68.1059 35.9504C67.2679 36.7827 65.9576 37.7008 63.6597 37.7008C60.1154 37.7008 57.3447 34.862 57.3447 31.3399C57.3447 27.8178 60.1154 24.9786 63.6597 24.9786C65.5715 24.9786 66.9674 25.7259 67.9985 26.6864L69.6959 24.9997C68.2563 23.6338 66.3449 22.5879 63.6597 22.5879C58.8045 22.5879 54.7234 26.5156 54.7234 31.3399C54.7234 36.1637 58.8045 40.0915 63.6597 40.0915C66.2799 40.0915 68.2564 39.2376 69.8027 37.6367C71.3923 36.0571 71.8865 33.8372 71.8865 32.0439C71.8865 31.4895 71.8432 30.9772 71.7573 30.5501H63.6598ZM78.4318 37.8716C76.713 37.8716 75.2308 36.4627 75.2308 34.4562C75.2308 32.4284 76.713 31.0413 78.4318 31.0413C80.1499 31.0413 81.6321 32.4284 81.6321 34.4562C81.6321 36.4627 80.1499 37.8716 78.4318 37.8716ZM78.4318 28.8209C75.2948 28.8209 72.7391 31.1902 72.7391 34.4562C72.7391 37.7008 75.2948 40.0915 78.4318 40.0915C81.5676 40.0915 84.1238 37.7008 84.1238 34.4562C84.1238 31.1902 81.5676 28.8209 78.4318 28.8209ZM90.8488 37.8716C89.1312 37.8716 87.6485 36.4627 87.6485 34.4562C87.6485 32.4284 89.1313 31.0413 90.8488 31.0413C92.5676 31.0413 94.0493 32.4284 94.0493 34.4562C94.0493 36.4627 92.5676 37.8716 90.8488 37.8716ZM90.8488 28.8209C87.713 28.8209 85.1573 31.1902 85.1573 34.4562C85.1573 37.7008 87.713 40.0915 90.8488 40.0915C93.9858 40.0915 96.5415 37.7008 96.5415 34.4562C96.5415 31.1902 93.9858 28.8209 90.8488 28.8209Z", fill: "white" }),
8305
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M27.622 25.7372L13.428 40.7092C13.4285 40.7122 13.4296 40.7148 13.4301 40.718C13.8654 42.3438 15.3597 43.5409 17.1331 43.5409C17.842 43.5409 18.5076 43.3504 19.0784 43.0161L19.1237 42.9897L35.1017 33.8272L27.622 25.7372Z", fill: "#EB3131" }),
8306
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M41.9831 23.1884L41.9695 23.1791L35.0713 19.2051L27.2996 26.0775L35.0983 33.8265L41.9601 29.892C43.1631 29.2466 43.9798 27.9863 43.9798 26.5329C43.9798 25.09 43.1742 23.8359 41.9831 23.1884Z", fill: "#F6B60B" }),
8307
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M13.4261 12.2927C13.3407 12.6054 13.2959 12.933 13.2959 13.2731V39.7298C13.2959 40.0693 13.3402 40.398 13.4266 40.7096L28.1106 26.1202L13.4261 12.2927Z", fill: "#5778C5" }),
8308
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M27.727 26.5016L35.0743 19.2024L19.1143 10.0067C18.5342 9.66144 17.8571 9.46216 17.1326 9.46216C15.3592 9.46216 13.8629 10.6614 13.4275 12.2891C13.427 12.2907 13.427 12.2918 13.427 12.2932L27.727 26.5016Z", fill: "#3BAD49" }),
8309
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M63.193 12.9606H59.3035V13.9171H62.2181C62.1389 14.6976 61.8263 15.3104 61.2993 15.7555C60.7722 16.2007 60.0993 16.4243 59.3035 16.4243C58.4306 16.4243 57.691 16.122 57.0849 15.5217C56.491 14.9089 56.189 14.1511 56.189 13.2381C56.189 12.3252 56.491 11.5674 57.0849 10.9547C57.691 10.3543 58.4306 10.0541 59.3035 10.0541C59.7515 10.0541 60.1785 10.1307 60.5701 10.2984C60.9618 10.466 61.2763 10.7 61.5222 11.0003L62.2618 10.2653C61.9263 9.88636 61.5014 9.59658 60.9742 9.38539C60.4471 9.17419 59.8972 9.07282 59.3034 9.07282C58.1389 9.07282 57.1515 9.47442 56.3452 10.2757C55.5389 11.0789 55.1348 12.0685 55.1348 13.2382C55.1348 14.4078 55.5389 15.3996 56.3452 16.2008C57.1514 17.0019 58.1389 17.4037 59.3034 17.4037C60.5263 17.4037 61.5013 17.0144 62.2513 16.2235C62.9116 15.5653 63.2491 14.675 63.2491 13.5612C63.2491 13.3728 63.2263 13.1718 63.193 12.9606ZM64.6998 9.2507V17.2255H69.385V16.2462H65.731V13.7164H69.0268V12.7599H65.731V10.2321H69.385V9.25067L64.6998 9.2507ZM75.9548 10.2321V9.2507H70.4403V10.2321H72.682V17.2255H73.7132V10.2321H75.9548ZM80.9473 9.2507H79.9161V17.2255H80.9473V9.2507ZM87.7539 10.2321V9.2507H82.2395V10.2321H84.481V17.2255H85.5122V10.2321H87.7539ZM98.1599 10.288C97.364 9.47436 96.3891 9.07275 95.2245 9.07275C94.0579 9.07275 93.083 9.47435 92.2871 10.2756C91.4912 11.0665 91.0997 12.0581 91.0997 13.2381C91.0997 14.4181 91.4912 15.4098 92.2871 16.2008C93.0829 17.0018 94.0579 17.4036 95.2245 17.4036C96.3786 17.4036 97.364 17.0019 98.1599 16.2008C98.9557 15.4099 99.3473 14.4182 99.3473 13.2381C99.3473 12.0684 98.9557 11.0788 98.1599 10.288ZM93.0267 10.9546C93.6204 10.3543 94.3496 10.054 95.2245 10.054C96.0974 10.054 96.8266 10.3543 97.4099 10.9546C98.0036 11.5446 98.2952 12.3147 98.2952 13.2381C98.2952 14.1636 98.0036 14.9315 97.4099 15.5216C96.8265 16.122 96.0974 16.4242 95.2245 16.4242C94.3495 16.4242 93.6204 16.122 93.0267 15.5216C92.4453 14.9192 92.1537 14.1635 92.1537 13.2381C92.1537 12.3147 92.4453 11.557 93.0267 10.9546ZM101.797 12.2589L101.754 10.7206H101.797L105.876 17.2254H106.953V9.25062H105.922V13.917L105.966 15.4553H105.922L102.022 9.25062H100.766V17.2254H101.797V12.2589Z", fill: "white", stroke: "white", strokeWidth: "0.26666", strokeMiterlimit: "10" })
8231
+ props.show_app_stores && /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("div", { className: "mt-6 gap-3 lg:gap-2 flex flex-row md:px-0", children: [
8232
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("a", { href: props.google_marketplace_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", className: "w-full md:w-auto h-auto", viewBox: "0 0 180 53", fill: "none", children: [
8233
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("g", { clipPath: "url(#clip0_5955_146)", children: [
8234
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M173.33 53H6.66992C3.00332 53 0.00341797 50.0188 0.00341797 46.3751V6.62585C0.00341797 2.98215 3.00332 0.000976562 6.66992 0.000976562H173.33C176.997 0.000976562 179.996 2.98215 179.996 6.62585V46.3751C179.996 50.0188 176.997 53 173.33 53Z", fill: "#100F0D" }),
8235
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M173.33 0.000976562H6.66992C3.00332 0.000976562 0.00341797 2.98215 0.00341797 6.62585V46.3751C0.00341797 50.0188 3.00332 53 6.66992 53H173.33C176.997 53 179.996 50.0188 179.996 46.3751V6.62585C179.996 2.98215 176.997 0.000976562 173.33 0.000976562ZM173.33 1.06042C176.418 1.06042 178.93 3.55723 178.93 6.62585V46.3751C178.93 49.4437 176.418 51.9405 173.33 51.9405H6.66992C3.58202 51.9405 1.07062 49.4437 1.07062 46.3751V6.62585C1.07062 3.55723 3.58202 1.06042 6.66992 1.06042H173.33Z", fill: "#A2A2A1" }),
8236
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M142.58 39.7504H145.068V23.1854H142.58V39.7504ZM164.989 29.1529L162.137 36.3342H162.052L159.092 29.1529H156.412L160.852 39.1899L158.32 44.7733H160.915L167.756 29.1534L164.989 29.1529ZM150.879 37.8688C150.066 37.8688 148.928 37.4635 148.928 36.462C148.928 35.1836 150.344 34.6934 151.566 34.6934C152.659 34.6934 153.175 34.9274 153.839 35.2473C153.646 36.7818 152.316 37.8688 150.879 37.8688ZM151.18 28.7906C149.379 28.7906 147.514 29.5794 146.742 31.3268L148.95 32.2429C149.422 31.3268 150.3 31.0287 151.223 31.0287C152.51 31.0287 153.818 31.7952 153.839 33.1595V33.3298C153.388 33.074 152.423 32.6906 151.244 32.6906C148.863 32.6906 146.44 33.9901 146.44 36.4196C146.44 38.6359 148.392 40.0638 150.579 40.0638C152.251 40.0638 153.175 39.3179 153.752 38.4439H153.839V39.7232H156.241V33.3721C156.241 30.4313 154.031 28.7906 151.18 28.7906ZM135.804 31.1694H132.266V25.4917H135.804C137.664 25.4917 138.72 27.0217 138.72 28.3305C138.72 29.6141 137.664 31.1694 135.804 31.1694ZM135.74 23.1858H129.779V39.7508H132.266V33.4753H135.74C138.498 33.4753 141.208 31.4919 141.208 28.3311C141.208 25.1709 138.498 23.1858 135.74 23.1858ZM103.233 37.8716C101.514 37.8716 100.076 36.441 100.076 34.4779C100.076 32.492 101.514 31.0412 103.233 31.0412C104.93 31.0412 106.262 32.4921 106.262 34.4779C106.262 36.441 104.93 37.8716 103.233 37.8716ZM106.09 30.0802H106.004C105.446 29.4187 104.371 28.8209 103.019 28.8209C100.183 28.8209 97.5839 31.2975 97.5839 34.4779C97.5839 37.6366 100.183 40.0914 103.019 40.0914C104.371 40.0914 105.446 39.4936 106.004 38.811H106.09V39.6214C106.09 41.7782 104.93 42.9303 103.061 42.9303C101.537 42.9303 100.592 41.8418 100.205 40.9241L98.0356 41.8205C98.658 43.3141 100.311 45.1506 103.061 45.1506C105.983 45.1506 108.453 43.4425 108.453 39.2798V29.1623H106.09L106.09 30.0802ZM110.172 39.7499H112.663V23.1849H110.172V39.7499ZM116.336 34.2854C116.272 32.108 118.034 30.9982 119.301 30.9982C120.289 30.9982 121.126 31.4894 121.406 32.1933L116.336 34.2854ZM124.069 32.4066C123.596 31.1479 122.157 28.8209 119.215 28.8209C116.293 28.8209 113.866 31.1049 113.866 34.4562C113.866 37.6155 116.272 40.0915 119.493 40.0915C122.092 40.0915 123.596 38.5124 124.22 37.5942L122.286 36.3133C121.642 37.2527 120.762 37.8717 119.493 37.8717C118.227 37.8717 117.324 37.2952 116.745 36.1638L124.327 33.0475L124.069 32.4066ZM63.6598 30.5501V32.9407H69.4163C69.2444 34.2855 68.7934 35.2672 68.1059 35.9504C67.2679 36.7827 65.9576 37.7008 63.6597 37.7008C60.1154 37.7008 57.3447 34.862 57.3447 31.3399C57.3447 27.8178 60.1154 24.9786 63.6597 24.9786C65.5715 24.9786 66.9674 25.7259 67.9985 26.6864L69.6959 24.9997C68.2563 23.6338 66.3449 22.5879 63.6597 22.5879C58.8045 22.5879 54.7234 26.5156 54.7234 31.3399C54.7234 36.1637 58.8045 40.0915 63.6597 40.0915C66.2799 40.0915 68.2564 39.2376 69.8027 37.6367C71.3923 36.0571 71.8865 33.8372 71.8865 32.0439C71.8865 31.4895 71.8432 30.9772 71.7573 30.5501H63.6598ZM78.4318 37.8716C76.713 37.8716 75.2308 36.4627 75.2308 34.4562C75.2308 32.4284 76.713 31.0413 78.4318 31.0413C80.1499 31.0413 81.6321 32.4284 81.6321 34.4562C81.6321 36.4627 80.1499 37.8716 78.4318 37.8716ZM78.4318 28.8209C75.2948 28.8209 72.7391 31.1902 72.7391 34.4562C72.7391 37.7008 75.2948 40.0915 78.4318 40.0915C81.5676 40.0915 84.1238 37.7008 84.1238 34.4562C84.1238 31.1902 81.5676 28.8209 78.4318 28.8209ZM90.8488 37.8716C89.1312 37.8716 87.6485 36.4627 87.6485 34.4562C87.6485 32.4284 89.1313 31.0413 90.8488 31.0413C92.5676 31.0413 94.0493 32.4284 94.0493 34.4562C94.0493 36.4627 92.5676 37.8716 90.8488 37.8716ZM90.8488 28.8209C87.713 28.8209 85.1573 31.1902 85.1573 34.4562C85.1573 37.7008 87.713 40.0915 90.8488 40.0915C93.9858 40.0915 96.5415 37.7008 96.5415 34.4562C96.5415 31.1902 93.9858 28.8209 90.8488 28.8209Z", fill: "white" }),
8237
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M27.622 25.7372L13.428 40.7092C13.4285 40.7122 13.4296 40.7148 13.4301 40.718C13.8654 42.3438 15.3597 43.5409 17.1331 43.5409C17.842 43.5409 18.5076 43.3504 19.0784 43.0161L19.1237 42.9897L35.1017 33.8272L27.622 25.7372Z", fill: "#EB3131" }),
8238
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M41.9831 23.1884L41.9695 23.1791L35.0713 19.2051L27.2996 26.0775L35.0983 33.8265L41.9601 29.892C43.1631 29.2466 43.9798 27.9863 43.9798 26.5329C43.9798 25.09 43.1742 23.8359 41.9831 23.1884Z", fill: "#F6B60B" }),
8239
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M13.4261 12.2927C13.3407 12.6054 13.2959 12.933 13.2959 13.2731V39.7298C13.2959 40.0693 13.3402 40.398 13.4266 40.7096L28.1106 26.1202L13.4261 12.2927Z", fill: "#5778C5" }),
8240
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M27.727 26.5016L35.0743 19.2024L19.1143 10.0067C18.5342 9.66144 17.8571 9.46216 17.1326 9.46216C15.3592 9.46216 13.8629 10.6614 13.4275 12.2891C13.427 12.2907 13.427 12.2918 13.427 12.2932L27.727 26.5016Z", fill: "#3BAD49" }),
8241
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M63.193 12.9606H59.3035V13.9171H62.2181C62.1389 14.6976 61.8263 15.3104 61.2993 15.7555C60.7722 16.2007 60.0993 16.4243 59.3035 16.4243C58.4306 16.4243 57.691 16.122 57.0849 15.5217C56.491 14.9089 56.189 14.1511 56.189 13.2381C56.189 12.3252 56.491 11.5674 57.0849 10.9547C57.691 10.3543 58.4306 10.0541 59.3035 10.0541C59.7515 10.0541 60.1785 10.1307 60.5701 10.2984C60.9618 10.466 61.2763 10.7 61.5222 11.0003L62.2618 10.2653C61.9263 9.88636 61.5014 9.59658 60.9742 9.38539C60.4471 9.17419 59.8972 9.07282 59.3034 9.07282C58.1389 9.07282 57.1515 9.47442 56.3452 10.2757C55.5389 11.0789 55.1348 12.0685 55.1348 13.2382C55.1348 14.4078 55.5389 15.3996 56.3452 16.2008C57.1514 17.0019 58.1389 17.4037 59.3034 17.4037C60.5263 17.4037 61.5013 17.0144 62.2513 16.2235C62.9116 15.5653 63.2491 14.675 63.2491 13.5612C63.2491 13.3728 63.2263 13.1718 63.193 12.9606ZM64.6998 9.2507V17.2255H69.385V16.2462H65.731V13.7164H69.0268V12.7599H65.731V10.2321H69.385V9.25067L64.6998 9.2507ZM75.9548 10.2321V9.2507H70.4403V10.2321H72.682V17.2255H73.7132V10.2321H75.9548ZM80.9473 9.2507H79.9161V17.2255H80.9473V9.2507ZM87.7539 10.2321V9.2507H82.2395V10.2321H84.481V17.2255H85.5122V10.2321H87.7539ZM98.1599 10.288C97.364 9.47436 96.3891 9.07275 95.2245 9.07275C94.0579 9.07275 93.083 9.47435 92.2871 10.2756C91.4912 11.0665 91.0997 12.0581 91.0997 13.2381C91.0997 14.4181 91.4912 15.4098 92.2871 16.2008C93.0829 17.0018 94.0579 17.4036 95.2245 17.4036C96.3786 17.4036 97.364 17.0019 98.1599 16.2008C98.9557 15.4099 99.3473 14.4182 99.3473 13.2381C99.3473 12.0684 98.9557 11.0788 98.1599 10.288ZM93.0267 10.9546C93.6204 10.3543 94.3496 10.054 95.2245 10.054C96.0974 10.054 96.8266 10.3543 97.4099 10.9546C98.0036 11.5446 98.2952 12.3147 98.2952 13.2381C98.2952 14.1636 98.0036 14.9315 97.4099 15.5216C96.8265 16.122 96.0974 16.4242 95.2245 16.4242C94.3495 16.4242 93.6204 16.122 93.0267 15.5216C92.4453 14.9192 92.1537 14.1635 92.1537 13.2381C92.1537 12.3147 92.4453 11.557 93.0267 10.9546ZM101.797 12.2589L101.754 10.7206H101.797L105.876 17.2254H106.953V9.25062H105.922V13.917L105.966 15.4553H105.922L102.022 9.25062H100.766V17.2254H101.797V12.2589Z", fill: "white", stroke: "white", strokeWidth: "0.26666", strokeMiterlimit: "10" })
8310
8242
  ] }),
8311
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("clipPath", { id: "clip0_5955_146", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8243
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("clipPath", { id: "clip0_5955_146", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8312
8244
  ] }) }),
8313
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("a", { href: props.apple_store_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8245
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("a", { href: props.apple_store_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)(
8314
8246
  "svg",
8315
8247
  {
8316
8248
  xmlns: "http://www.w3.org/2000/svg",
@@ -8319,34 +8251,34 @@ var H1BodyButtonWithApp = (props) => {
8319
8251
  fill: "none",
8320
8252
  onClick: () => props.apple_store_link,
8321
8253
  children: [
8322
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("g", { clipPath: "url(#clip0_5955_114)", children: [
8323
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M173.596 53H6.30533C2.82933 53 0 50.1804 0 46.7288V6.26195C0 2.809 2.82933 0 6.30533 0H173.596C177.071 0 180 2.809 180 6.26195V46.7288C180 50.1804 177.071 53 173.596 53Z", fill: "#A6A6A6" }),
8324
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M178.709 46.73C178.709 49.5337 176.424 51.8048 173.597 51.8048H6.30543C3.4801 51.8048 1.18677 49.5337 1.18677 46.73V6.26057C1.18677 3.4582 3.4801 1.1792 6.30543 1.1792H173.596C176.424 1.1792 178.708 3.4582 178.708 6.26057L178.709 46.73Z", fill: "black" }),
8325
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M40.1707 26.2137C40.132 21.9432 43.6894 19.8656 43.852 19.7689C41.8374 16.8499 38.7147 16.4511 37.6174 16.4193C34.9947 16.145 32.4507 17.9788 31.1147 17.9788C29.752 17.9788 27.6947 16.4458 25.4774 16.4909C22.624 16.5346 19.9547 18.1763 18.4907 20.7256C15.4694 25.9235 17.7227 33.5622 20.6174 37.7637C22.0654 39.8215 23.7574 42.119 25.972 42.0382C28.1387 41.9494 28.948 40.6655 31.5627 40.6655C34.1534 40.6655 34.9134 42.0382 37.172 41.9865C39.4974 41.9494 40.9614 39.9195 42.3587 37.8432C44.032 35.4847 44.704 33.162 44.7307 33.0428C44.676 33.0242 40.2147 31.3322 40.1707 26.2137Z", fill: "white" }),
8326
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M35.9041 13.6555C37.0694 12.2072 37.8667 10.237 37.6454 8.23755C35.9587 8.31175 33.8494 9.39692 32.6347 10.8133C31.5601 12.0615 30.6001 14.1073 30.8481 16.0312C32.7427 16.1716 34.6881 15.0812 35.9041 13.6555Z", fill: "white" }),
8327
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M71.5266 41.7427H68.4986L66.84 36.5633H61.0746L59.4946 41.7427H56.5466L62.2586 24.1096H65.7866L71.5266 41.7427ZM66.34 34.3903L64.84 29.7859C64.6813 29.3155 64.384 28.2078 63.9453 26.4641H63.892C63.7173 27.2141 63.436 28.3218 63.0493 29.7859L61.576 34.3903H66.34Z", fill: "white" }),
8328
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M86.2159 35.2291C86.2159 37.3915 85.6279 39.1008 84.4519 40.3555C83.3985 41.4725 82.0905 42.0303 80.5292 42.0303C78.8439 42.0303 77.6332 41.4288 76.8959 40.2257H76.8425V46.9236H73.9999V33.2138C73.9999 31.8543 73.9639 30.4591 73.8945 29.0281H76.3945L76.5532 31.0434H76.6065C77.5545 29.525 78.9932 28.7671 80.9239 28.7671C82.4332 28.7671 83.6932 29.3594 84.7012 30.5452C85.7119 31.7324 86.2159 33.2933 86.2159 35.2291ZM83.3199 35.3325C83.3199 34.0949 83.0399 33.0747 82.4772 32.2717C81.8625 31.4343 81.0372 31.0156 80.0025 31.0156C79.3012 31.0156 78.6639 31.2488 78.0945 31.7086C77.5239 32.1723 77.1505 32.7779 76.9759 33.5278C76.8879 33.8776 76.8439 34.1638 76.8439 34.3891V36.5091C76.8439 37.4339 77.1292 38.2143 77.6999 38.8517C78.2705 39.489 79.0119 39.807 79.9239 39.807C80.9945 39.807 81.8279 39.3962 82.4239 38.5774C83.0212 37.7572 83.3199 36.676 83.3199 35.3325Z", fill: "white" }),
8329
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M100.932 35.2291C100.932 37.3915 100.344 39.1008 99.1667 40.3555C98.1147 41.4725 96.8067 42.0303 95.2454 42.0303C93.5601 42.0303 92.3494 41.4288 91.6134 40.2257H91.5601V46.9236H88.7174V33.2138C88.7174 31.8543 88.6814 30.4591 88.6121 29.0281H91.1121L91.2707 31.0434H91.3241C92.2707 29.525 93.7094 28.7671 95.6414 28.7671C97.1494 28.7671 98.4094 29.3594 99.4201 30.5452C100.427 31.7324 100.932 33.2933 100.932 35.2291ZM98.0361 35.3325C98.0361 34.0949 97.7547 33.0747 97.1921 32.2717C96.5774 31.4343 95.7547 31.0156 94.7187 31.0156C94.0161 31.0156 93.3801 31.2488 92.8094 31.7086C92.2387 32.1723 91.8667 32.7779 91.6921 33.5278C91.6054 33.8776 91.5601 34.1638 91.5601 34.3891V36.5091C91.5601 37.4339 91.8454 38.2143 92.4134 38.8517C92.9841 39.4877 93.7254 39.807 94.6401 39.807C95.7107 39.807 96.5441 39.3962 97.1401 38.5774C97.7374 37.7572 98.0361 36.676 98.0361 35.3325Z", fill: "white" }),
8330
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M117.385 36.7979C117.385 38.2978 116.861 39.5181 115.809 40.4602C114.653 41.4897 113.044 42.0038 110.976 42.0038C109.067 42.0038 107.536 41.6381 106.377 40.9054L107.036 38.5509C108.284 39.3008 109.653 39.6771 111.145 39.6771C112.216 39.6771 113.049 39.436 113.648 38.9563C114.244 38.4767 114.541 37.8327 114.541 37.0298C114.541 36.3143 114.296 35.7114 113.804 35.2225C113.315 34.7335 112.497 34.2791 111.356 33.859C108.249 32.7076 106.697 31.0209 106.697 28.8028C106.697 27.3533 107.241 26.1648 108.331 25.2399C109.416 24.3137 110.864 23.8513 112.675 23.8513C114.289 23.8513 115.631 24.1309 116.701 24.6887L115.991 26.9916C114.991 26.451 113.86 26.1807 112.595 26.1807C111.595 26.1807 110.813 26.4258 110.253 26.9134C109.78 27.3493 109.543 27.8806 109.543 28.51C109.543 29.207 109.813 29.7833 110.357 30.2365C110.831 30.6552 111.691 31.1083 112.939 31.5973C114.465 32.2081 115.587 32.9223 116.308 33.7411C117.027 34.5573 117.385 35.5789 117.385 36.7979Z", fill: "white" }),
8331
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M126.784 31.1482H123.651V37.3214C123.651 38.8915 124.203 39.6759 125.309 39.6759C125.817 39.6759 126.239 39.6322 126.572 39.5447L126.651 41.6899C126.091 41.8979 125.353 42.0026 124.44 42.0026C123.317 42.0026 122.44 41.6621 121.807 40.9823C121.176 40.3013 120.859 39.1591 120.859 37.5546V31.1455H118.992V29.0255H120.859V26.6975L123.651 25.8601V29.0255H126.784V31.1482Z", fill: "white" }),
8332
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M140.921 35.2807C140.921 37.2351 140.359 38.8396 139.236 40.0944C138.059 41.3863 136.496 42.0302 134.548 42.0302C132.671 42.0302 131.176 41.4115 130.061 40.1739C128.947 38.9364 128.389 37.3742 128.389 35.4914C128.389 33.5211 128.963 31.9072 130.113 30.6525C131.261 29.3964 132.811 28.7683 134.759 28.7683C136.636 28.7683 138.147 29.3871 139.287 30.626C140.377 31.8277 140.921 33.3793 140.921 35.2807ZM137.972 35.3721C137.972 34.1995 137.72 33.1938 137.209 32.3551C136.613 31.3401 135.761 30.834 134.657 30.834C133.515 30.834 132.647 31.3415 132.051 32.3551C131.54 33.1951 131.288 34.2167 131.288 35.4251C131.288 36.5977 131.54 37.6034 132.051 38.4408C132.665 39.4558 133.524 39.9619 134.632 39.9619C135.717 39.9619 136.569 39.4452 137.184 38.4143C137.708 37.5597 137.972 36.5434 137.972 35.3721Z", fill: "white" }),
8333
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M150.161 31.5125C149.88 31.4608 149.58 31.4343 149.265 31.4343C148.265 31.4343 147.492 31.8093 146.948 32.5606C146.475 33.2231 146.237 34.0605 146.237 35.0714V41.7428H143.396L143.423 33.0323C143.423 31.5668 143.387 30.2325 143.316 29.0294H145.792L145.896 31.4621H145.975C146.275 30.6261 146.748 29.953 147.396 29.4481C148.029 28.9937 148.713 28.7671 149.451 28.7671C149.713 28.7671 149.951 28.7856 150.161 28.8188V31.5125Z", fill: "white" }),
8334
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M162.875 34.7838C162.875 35.29 162.841 35.7166 162.771 36.0651H154.243C154.276 37.3212 154.688 38.2818 155.48 38.9443C156.199 39.5366 157.128 39.8334 158.269 39.8334C159.532 39.8334 160.684 39.6333 161.72 39.2319L162.165 41.1929C160.955 41.7176 159.525 41.9786 157.876 41.9786C155.892 41.9786 154.335 41.3982 153.201 40.2389C152.071 39.0795 151.504 37.5226 151.504 35.5696C151.504 33.6523 152.031 32.0557 153.085 30.7823C154.189 29.4229 155.681 28.7432 157.559 28.7432C159.403 28.7432 160.799 29.4229 161.747 30.7823C162.497 31.8622 162.875 33.1978 162.875 34.7838ZM160.164 34.0511C160.183 33.2137 159.997 32.4903 159.612 31.8794C159.12 31.0937 158.364 30.7015 157.347 30.7015C156.417 30.7015 155.661 31.0844 155.084 31.8529C154.611 32.4638 154.329 33.1965 154.243 34.0498L160.164 34.0511Z", fill: "white" }),
8335
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M65.4 13.262C65.4 14.8215 64.9293 15.9955 63.9893 16.7839C63.1186 17.5113 61.8813 17.8757 60.2786 17.8757C59.484 17.8757 58.804 17.8412 58.2346 17.7723V9.25124C58.9773 9.13199 59.7773 9.07104 60.6413 9.07104C62.168 9.07104 63.3186 9.40097 64.0946 10.0608C64.964 10.8068 65.4 11.8734 65.4 13.262ZM63.9266 13.3004C63.9266 12.2895 63.6573 11.5143 63.1186 10.9737C62.58 10.4345 61.7933 10.1642 60.7573 10.1642C60.3173 10.1642 59.9426 10.1933 59.632 10.2543V16.7322C59.804 16.7587 60.1186 16.7706 60.576 16.7706C61.6453 16.7706 62.4706 16.4751 63.052 15.8842C63.6333 15.2932 63.9266 14.432 63.9266 13.3004Z", fill: "white" }),
8336
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M73.2119 14.6241C73.2119 15.5847 72.9359 16.3718 72.3839 16.9892C71.8052 17.6239 71.0386 17.9406 70.0812 17.9406C69.1586 17.9406 68.4239 17.6371 67.8759 17.0276C67.3292 16.4195 67.0559 15.6523 67.0559 14.7274C67.0559 13.7602 67.3372 12.9665 67.9026 12.3504C68.4679 11.7343 69.2279 11.4255 70.1852 11.4255C71.1079 11.4255 71.8492 11.729 72.4106 12.3371C72.9439 12.9281 73.2119 13.6913 73.2119 14.6241ZM71.7626 14.6691C71.7626 14.0928 71.6372 13.5985 71.3879 13.1865C71.0946 12.6883 70.6772 12.4392 70.1346 12.4392C69.5732 12.4392 69.1466 12.6883 68.8532 13.1865C68.6026 13.5985 68.4786 14.1007 68.4786 14.6943C68.4786 15.2707 68.6039 15.7649 68.8532 16.177C69.1559 16.6752 69.5772 16.9243 70.1212 16.9243C70.6546 16.9243 71.0732 16.6712 71.3746 16.1637C71.6332 15.7437 71.7626 15.2455 71.7626 14.6691Z", fill: "white" }),
8337
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M83.6867 11.5527L81.7201 17.7988H80.4401L79.6254 15.0865C79.4187 14.4094 79.2507 13.7363 79.1201 13.0685H79.0947C78.9734 13.7549 78.8054 14.4267 78.5894 15.0865L77.7241 17.7988H76.4294L74.5801 11.5527H76.0161L76.7267 14.5221C76.8987 15.2243 77.0401 15.8934 77.1534 16.5268H77.1787C77.2827 16.0047 77.4547 15.3396 77.6974 14.5353L78.5894 11.5541H79.7281L80.5827 14.4717C80.7894 15.1832 80.9574 15.8683 81.0867 16.5281H81.1254C81.2201 15.8855 81.3627 15.2005 81.5521 14.4717L82.3147 11.5541H83.6867V11.5527Z", fill: "white" }),
8338
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M90.9307 17.7989H89.5334V14.2214C89.5334 13.119 89.112 12.5678 88.2667 12.5678C87.852 12.5678 87.5174 12.7188 87.2574 13.0222C87.0001 13.3257 86.8694 13.6834 86.8694 14.0928V17.7975H85.472V13.3376C85.472 12.789 85.4547 12.1941 85.4214 11.5502H86.6494L86.7147 12.5267H86.7534C86.9161 12.2233 87.1587 11.9728 87.4774 11.7728C87.8561 11.5396 88.28 11.4216 88.744 11.4216C89.3307 11.4216 89.8187 11.6098 90.2067 11.9874C90.6894 12.4498 90.9307 13.1402 90.9307 14.0571V17.7989Z", fill: "white" }),
8339
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M94.7839 17.7988H93.3879V8.68677H94.7839V17.7988Z", fill: "white" }),
8340
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M103.011 14.6241C103.011 15.5847 102.735 16.3718 102.183 16.9892C101.604 17.6239 100.836 17.9406 99.8801 17.9406C98.9561 17.9406 98.2214 17.6371 97.6747 17.0276C97.1281 16.4195 96.8547 15.6523 96.8547 14.7274C96.8547 13.7602 97.1361 12.9665 97.7014 12.3504C98.2667 11.7343 99.0267 11.4255 99.9827 11.4255C100.907 11.4255 101.647 11.729 102.209 12.3371C102.743 12.9281 103.011 13.6913 103.011 14.6241ZM101.56 14.6691C101.56 14.0928 101.435 13.5985 101.185 13.1865C100.893 12.6883 100.475 12.4392 99.9334 12.4392C99.3707 12.4392 98.9441 12.6883 98.6521 13.1865C98.4014 13.5985 98.2774 14.1007 98.2774 14.6943C98.2774 15.2707 98.4027 15.7649 98.6521 16.177C98.9547 16.6752 99.3761 16.9243 99.9201 16.9243C100.453 16.9243 100.871 16.6712 101.172 16.1637C101.432 15.7437 101.56 15.2455 101.56 14.6691Z", fill: "white" }),
8341
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M109.773 17.7988H108.519L108.415 17.0793H108.376C107.947 17.653 107.335 17.9406 106.54 17.9406C105.947 17.9406 105.467 17.7511 105.105 17.3748C104.777 17.0329 104.613 16.6076 104.613 16.1028C104.613 15.3396 104.933 14.7579 105.577 14.3551C106.22 13.9523 107.124 13.7549 108.288 13.7642V13.6476C108.288 12.8247 107.853 12.414 106.983 12.414C106.363 12.414 105.816 12.569 105.344 12.8764L105.06 11.9648C105.644 11.6057 106.365 11.4255 107.216 11.4255C108.859 11.4255 109.683 12.2868 109.683 14.0093V16.3095C109.683 16.9336 109.713 17.4304 109.773 17.7988ZM108.323 15.6523V14.689C106.781 14.6625 106.011 15.0825 106.011 15.9478C106.011 16.2737 106.099 16.5175 106.279 16.6805C106.459 16.8435 106.688 16.9243 106.961 16.9243C107.268 16.9243 107.555 16.8276 107.816 16.6354C108.079 16.442 108.24 16.1969 108.3 15.8961C108.315 15.8285 108.323 15.7464 108.323 15.6523Z", fill: "white" }),
8342
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M117.713 17.7988H116.473L116.408 16.7958H116.369C115.973 17.559 115.299 17.9406 114.351 17.9406C113.593 17.9406 112.963 17.6451 112.463 17.0541C111.963 16.4632 111.713 15.696 111.713 14.7539C111.713 13.743 111.984 12.9241 112.528 12.2987C113.055 11.7157 113.7 11.4242 114.468 11.4242C115.312 11.4242 115.903 11.7064 116.239 12.2722H116.265V8.68677H117.664V16.116C117.664 16.7242 117.68 17.2847 117.713 17.7988ZM116.265 15.1647V14.1232C116.265 13.943 116.252 13.7973 116.227 13.686C116.148 13.3521 115.979 13.0712 115.721 12.8446C115.461 12.618 115.148 12.5041 114.787 12.5041C114.265 12.5041 113.857 12.7095 113.557 13.1215C113.26 13.5336 113.109 14.0596 113.109 14.7023C113.109 15.3197 113.252 15.8206 113.539 16.2061C113.841 16.6169 114.249 16.8223 114.76 16.8223C115.219 16.8223 115.585 16.6513 115.864 16.3082C116.133 15.9915 116.265 15.6099 116.265 15.1647Z", fill: "white" }),
8343
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M129.664 14.6241C129.664 15.5847 129.388 16.3718 128.836 16.9892C128.257 17.6239 127.492 17.9406 126.533 17.9406C125.612 17.9406 124.877 17.6371 124.328 17.0276C123.781 16.4195 123.508 15.6523 123.508 14.7274C123.508 13.7602 123.789 12.9665 124.355 12.3504C124.92 11.7343 125.68 11.4255 126.639 11.4255C127.56 11.4255 128.303 11.729 128.863 12.3371C129.396 12.9281 129.664 13.6913 129.664 14.6241ZM128.216 14.6691C128.216 14.0928 128.091 13.5985 127.841 13.1865C127.547 12.6883 127.131 12.4392 126.587 12.4392C126.027 12.4392 125.6 12.6883 125.305 13.1865C125.055 13.5985 124.931 14.1007 124.931 14.6943C124.931 15.2707 125.056 15.7649 125.305 16.177C125.608 16.6752 126.029 16.9243 126.573 16.9243C127.107 16.9243 127.527 16.6712 127.828 16.1637C128.085 15.7437 128.216 15.2455 128.216 14.6691Z", fill: "white" }),
8344
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M137.177 17.7989H135.781V14.2214C135.781 13.119 135.36 12.5678 134.513 12.5678C134.099 12.5678 133.764 12.7188 133.505 13.0222C133.247 13.3257 133.117 13.6834 133.117 14.0928V17.7975H131.719V13.3376C131.719 12.789 131.703 12.1941 131.669 11.5502H132.896L132.961 12.5267H133C133.164 12.2233 133.407 11.9728 133.724 11.7728C134.104 11.5396 134.527 11.4216 134.992 11.4216C135.577 11.4216 136.065 11.6098 136.453 11.9874C136.937 12.4498 137.177 13.1402 137.177 14.0571V17.7989Z", fill: "white" }),
8345
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M146.581 12.593H145.043V15.6272C145.043 16.3984 145.316 16.784 145.857 16.784C146.108 16.784 146.316 16.7628 146.48 16.719L146.516 17.7724C146.24 17.8758 145.877 17.9274 145.431 17.9274C144.879 17.9274 144.449 17.7605 144.139 17.4266C143.827 17.0927 143.672 16.5309 143.672 15.7425V12.593H142.753V11.5529H143.672V10.4081L145.041 9.99731V11.5515H146.58L146.581 12.593Z", fill: "white" }),
8346
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M153.979 17.7988H152.58V14.2478C152.58 13.1282 152.159 12.5677 151.315 12.5677C150.667 12.5677 150.224 12.8923 149.981 13.5416C149.94 13.678 149.916 13.845 149.916 14.0411V17.7975H148.52V8.68677H149.916V12.4511H149.943C150.383 11.7661 151.013 11.4242 151.831 11.4242C152.409 11.4242 152.888 11.6124 153.268 11.99C153.741 12.4604 153.979 13.16 153.979 14.0848V17.7988Z", fill: "white" }),
8347
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M161.609 14.3802C161.609 14.6293 161.591 14.8387 161.557 15.0096H157.367C157.385 15.6271 157.585 16.0974 157.973 16.4234C158.328 16.7149 158.785 16.8606 159.345 16.8606C159.965 16.8606 160.531 16.7626 161.04 16.5652L161.259 17.5298C160.663 17.7868 159.961 17.9153 159.149 17.9153C158.176 17.9153 157.409 17.6305 156.855 17.0607C156.297 16.491 156.021 15.7264 156.021 14.7671C156.021 13.8251 156.279 13.0407 156.797 12.4153C157.339 11.7475 158.071 11.4136 158.995 11.4136C159.899 11.4136 160.585 11.7475 161.049 12.4153C161.424 12.9453 161.609 13.6011 161.609 14.3802ZM160.276 14.0212C160.287 13.6091 160.195 13.254 160.005 12.9545C159.763 12.569 159.393 12.3755 158.893 12.3755C158.437 12.3755 158.065 12.5637 157.781 12.9413C157.549 13.2421 157.412 13.6011 157.367 14.0212H160.276Z", fill: "white" })
8254
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("g", { clipPath: "url(#clip0_5955_114)", children: [
8255
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M173.596 53H6.30533C2.82933 53 0 50.1804 0 46.7288V6.26195C0 2.809 2.82933 0 6.30533 0H173.596C177.071 0 180 2.809 180 6.26195V46.7288C180 50.1804 177.071 53 173.596 53Z", fill: "#A6A6A6" }),
8256
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M178.709 46.73C178.709 49.5337 176.424 51.8048 173.597 51.8048H6.30543C3.4801 51.8048 1.18677 49.5337 1.18677 46.73V6.26057C1.18677 3.4582 3.4801 1.1792 6.30543 1.1792H173.596C176.424 1.1792 178.708 3.4582 178.708 6.26057L178.709 46.73Z", fill: "black" }),
8257
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M40.1707 26.2137C40.132 21.9432 43.6894 19.8656 43.852 19.7689C41.8374 16.8499 38.7147 16.4511 37.6174 16.4193C34.9947 16.145 32.4507 17.9788 31.1147 17.9788C29.752 17.9788 27.6947 16.4458 25.4774 16.4909C22.624 16.5346 19.9547 18.1763 18.4907 20.7256C15.4694 25.9235 17.7227 33.5622 20.6174 37.7637C22.0654 39.8215 23.7574 42.119 25.972 42.0382C28.1387 41.9494 28.948 40.6655 31.5627 40.6655C34.1534 40.6655 34.9134 42.0382 37.172 41.9865C39.4974 41.9494 40.9614 39.9195 42.3587 37.8432C44.032 35.4847 44.704 33.162 44.7307 33.0428C44.676 33.0242 40.2147 31.3322 40.1707 26.2137Z", fill: "white" }),
8258
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M35.9041 13.6555C37.0694 12.2072 37.8667 10.237 37.6454 8.23755C35.9587 8.31175 33.8494 9.39692 32.6347 10.8133C31.5601 12.0615 30.6001 14.1073 30.8481 16.0312C32.7427 16.1716 34.6881 15.0812 35.9041 13.6555Z", fill: "white" }),
8259
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M71.5266 41.7427H68.4986L66.84 36.5633H61.0746L59.4946 41.7427H56.5466L62.2586 24.1096H65.7866L71.5266 41.7427ZM66.34 34.3903L64.84 29.7859C64.6813 29.3155 64.384 28.2078 63.9453 26.4641H63.892C63.7173 27.2141 63.436 28.3218 63.0493 29.7859L61.576 34.3903H66.34Z", fill: "white" }),
8260
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M86.2159 35.2291C86.2159 37.3915 85.6279 39.1008 84.4519 40.3555C83.3985 41.4725 82.0905 42.0303 80.5292 42.0303C78.8439 42.0303 77.6332 41.4288 76.8959 40.2257H76.8425V46.9236H73.9999V33.2138C73.9999 31.8543 73.9639 30.4591 73.8945 29.0281H76.3945L76.5532 31.0434H76.6065C77.5545 29.525 78.9932 28.7671 80.9239 28.7671C82.4332 28.7671 83.6932 29.3594 84.7012 30.5452C85.7119 31.7324 86.2159 33.2933 86.2159 35.2291ZM83.3199 35.3325C83.3199 34.0949 83.0399 33.0747 82.4772 32.2717C81.8625 31.4343 81.0372 31.0156 80.0025 31.0156C79.3012 31.0156 78.6639 31.2488 78.0945 31.7086C77.5239 32.1723 77.1505 32.7779 76.9759 33.5278C76.8879 33.8776 76.8439 34.1638 76.8439 34.3891V36.5091C76.8439 37.4339 77.1292 38.2143 77.6999 38.8517C78.2705 39.489 79.0119 39.807 79.9239 39.807C80.9945 39.807 81.8279 39.3962 82.4239 38.5774C83.0212 37.7572 83.3199 36.676 83.3199 35.3325Z", fill: "white" }),
8261
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M100.932 35.2291C100.932 37.3915 100.344 39.1008 99.1667 40.3555C98.1147 41.4725 96.8067 42.0303 95.2454 42.0303C93.5601 42.0303 92.3494 41.4288 91.6134 40.2257H91.5601V46.9236H88.7174V33.2138C88.7174 31.8543 88.6814 30.4591 88.6121 29.0281H91.1121L91.2707 31.0434H91.3241C92.2707 29.525 93.7094 28.7671 95.6414 28.7671C97.1494 28.7671 98.4094 29.3594 99.4201 30.5452C100.427 31.7324 100.932 33.2933 100.932 35.2291ZM98.0361 35.3325C98.0361 34.0949 97.7547 33.0747 97.1921 32.2717C96.5774 31.4343 95.7547 31.0156 94.7187 31.0156C94.0161 31.0156 93.3801 31.2488 92.8094 31.7086C92.2387 32.1723 91.8667 32.7779 91.6921 33.5278C91.6054 33.8776 91.5601 34.1638 91.5601 34.3891V36.5091C91.5601 37.4339 91.8454 38.2143 92.4134 38.8517C92.9841 39.4877 93.7254 39.807 94.6401 39.807C95.7107 39.807 96.5441 39.3962 97.1401 38.5774C97.7374 37.7572 98.0361 36.676 98.0361 35.3325Z", fill: "white" }),
8262
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M117.385 36.7979C117.385 38.2978 116.861 39.5181 115.809 40.4602C114.653 41.4897 113.044 42.0038 110.976 42.0038C109.067 42.0038 107.536 41.6381 106.377 40.9054L107.036 38.5509C108.284 39.3008 109.653 39.6771 111.145 39.6771C112.216 39.6771 113.049 39.436 113.648 38.9563C114.244 38.4767 114.541 37.8327 114.541 37.0298C114.541 36.3143 114.296 35.7114 113.804 35.2225C113.315 34.7335 112.497 34.2791 111.356 33.859C108.249 32.7076 106.697 31.0209 106.697 28.8028C106.697 27.3533 107.241 26.1648 108.331 25.2399C109.416 24.3137 110.864 23.8513 112.675 23.8513C114.289 23.8513 115.631 24.1309 116.701 24.6887L115.991 26.9916C114.991 26.451 113.86 26.1807 112.595 26.1807C111.595 26.1807 110.813 26.4258 110.253 26.9134C109.78 27.3493 109.543 27.8806 109.543 28.51C109.543 29.207 109.813 29.7833 110.357 30.2365C110.831 30.6552 111.691 31.1083 112.939 31.5973C114.465 32.2081 115.587 32.9223 116.308 33.7411C117.027 34.5573 117.385 35.5789 117.385 36.7979Z", fill: "white" }),
8263
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M126.784 31.1482H123.651V37.3214C123.651 38.8915 124.203 39.6759 125.309 39.6759C125.817 39.6759 126.239 39.6322 126.572 39.5447L126.651 41.6899C126.091 41.8979 125.353 42.0026 124.44 42.0026C123.317 42.0026 122.44 41.6621 121.807 40.9823C121.176 40.3013 120.859 39.1591 120.859 37.5546V31.1455H118.992V29.0255H120.859V26.6975L123.651 25.8601V29.0255H126.784V31.1482Z", fill: "white" }),
8264
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M140.921 35.2807C140.921 37.2351 140.359 38.8396 139.236 40.0944C138.059 41.3863 136.496 42.0302 134.548 42.0302C132.671 42.0302 131.176 41.4115 130.061 40.1739C128.947 38.9364 128.389 37.3742 128.389 35.4914C128.389 33.5211 128.963 31.9072 130.113 30.6525C131.261 29.3964 132.811 28.7683 134.759 28.7683C136.636 28.7683 138.147 29.3871 139.287 30.626C140.377 31.8277 140.921 33.3793 140.921 35.2807ZM137.972 35.3721C137.972 34.1995 137.72 33.1938 137.209 32.3551C136.613 31.3401 135.761 30.834 134.657 30.834C133.515 30.834 132.647 31.3415 132.051 32.3551C131.54 33.1951 131.288 34.2167 131.288 35.4251C131.288 36.5977 131.54 37.6034 132.051 38.4408C132.665 39.4558 133.524 39.9619 134.632 39.9619C135.717 39.9619 136.569 39.4452 137.184 38.4143C137.708 37.5597 137.972 36.5434 137.972 35.3721Z", fill: "white" }),
8265
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M150.161 31.5125C149.88 31.4608 149.58 31.4343 149.265 31.4343C148.265 31.4343 147.492 31.8093 146.948 32.5606C146.475 33.2231 146.237 34.0605 146.237 35.0714V41.7428H143.396L143.423 33.0323C143.423 31.5668 143.387 30.2325 143.316 29.0294H145.792L145.896 31.4621H145.975C146.275 30.6261 146.748 29.953 147.396 29.4481C148.029 28.9937 148.713 28.7671 149.451 28.7671C149.713 28.7671 149.951 28.7856 150.161 28.8188V31.5125Z", fill: "white" }),
8266
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M162.875 34.7838C162.875 35.29 162.841 35.7166 162.771 36.0651H154.243C154.276 37.3212 154.688 38.2818 155.48 38.9443C156.199 39.5366 157.128 39.8334 158.269 39.8334C159.532 39.8334 160.684 39.6333 161.72 39.2319L162.165 41.1929C160.955 41.7176 159.525 41.9786 157.876 41.9786C155.892 41.9786 154.335 41.3982 153.201 40.2389C152.071 39.0795 151.504 37.5226 151.504 35.5696C151.504 33.6523 152.031 32.0557 153.085 30.7823C154.189 29.4229 155.681 28.7432 157.559 28.7432C159.403 28.7432 160.799 29.4229 161.747 30.7823C162.497 31.8622 162.875 33.1978 162.875 34.7838ZM160.164 34.0511C160.183 33.2137 159.997 32.4903 159.612 31.8794C159.12 31.0937 158.364 30.7015 157.347 30.7015C156.417 30.7015 155.661 31.0844 155.084 31.8529C154.611 32.4638 154.329 33.1965 154.243 34.0498L160.164 34.0511Z", fill: "white" }),
8267
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M65.4 13.262C65.4 14.8215 64.9293 15.9955 63.9893 16.7839C63.1186 17.5113 61.8813 17.8757 60.2786 17.8757C59.484 17.8757 58.804 17.8412 58.2346 17.7723V9.25124C58.9773 9.13199 59.7773 9.07104 60.6413 9.07104C62.168 9.07104 63.3186 9.40097 64.0946 10.0608C64.964 10.8068 65.4 11.8734 65.4 13.262ZM63.9266 13.3004C63.9266 12.2895 63.6573 11.5143 63.1186 10.9737C62.58 10.4345 61.7933 10.1642 60.7573 10.1642C60.3173 10.1642 59.9426 10.1933 59.632 10.2543V16.7322C59.804 16.7587 60.1186 16.7706 60.576 16.7706C61.6453 16.7706 62.4706 16.4751 63.052 15.8842C63.6333 15.2932 63.9266 14.432 63.9266 13.3004Z", fill: "white" }),
8268
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M73.2119 14.6241C73.2119 15.5847 72.9359 16.3718 72.3839 16.9892C71.8052 17.6239 71.0386 17.9406 70.0812 17.9406C69.1586 17.9406 68.4239 17.6371 67.8759 17.0276C67.3292 16.4195 67.0559 15.6523 67.0559 14.7274C67.0559 13.7602 67.3372 12.9665 67.9026 12.3504C68.4679 11.7343 69.2279 11.4255 70.1852 11.4255C71.1079 11.4255 71.8492 11.729 72.4106 12.3371C72.9439 12.9281 73.2119 13.6913 73.2119 14.6241ZM71.7626 14.6691C71.7626 14.0928 71.6372 13.5985 71.3879 13.1865C71.0946 12.6883 70.6772 12.4392 70.1346 12.4392C69.5732 12.4392 69.1466 12.6883 68.8532 13.1865C68.6026 13.5985 68.4786 14.1007 68.4786 14.6943C68.4786 15.2707 68.6039 15.7649 68.8532 16.177C69.1559 16.6752 69.5772 16.9243 70.1212 16.9243C70.6546 16.9243 71.0732 16.6712 71.3746 16.1637C71.6332 15.7437 71.7626 15.2455 71.7626 14.6691Z", fill: "white" }),
8269
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M83.6867 11.5527L81.7201 17.7988H80.4401L79.6254 15.0865C79.4187 14.4094 79.2507 13.7363 79.1201 13.0685H79.0947C78.9734 13.7549 78.8054 14.4267 78.5894 15.0865L77.7241 17.7988H76.4294L74.5801 11.5527H76.0161L76.7267 14.5221C76.8987 15.2243 77.0401 15.8934 77.1534 16.5268H77.1787C77.2827 16.0047 77.4547 15.3396 77.6974 14.5353L78.5894 11.5541H79.7281L80.5827 14.4717C80.7894 15.1832 80.9574 15.8683 81.0867 16.5281H81.1254C81.2201 15.8855 81.3627 15.2005 81.5521 14.4717L82.3147 11.5541H83.6867V11.5527Z", fill: "white" }),
8270
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M90.9307 17.7989H89.5334V14.2214C89.5334 13.119 89.112 12.5678 88.2667 12.5678C87.852 12.5678 87.5174 12.7188 87.2574 13.0222C87.0001 13.3257 86.8694 13.6834 86.8694 14.0928V17.7975H85.472V13.3376C85.472 12.789 85.4547 12.1941 85.4214 11.5502H86.6494L86.7147 12.5267H86.7534C86.9161 12.2233 87.1587 11.9728 87.4774 11.7728C87.8561 11.5396 88.28 11.4216 88.744 11.4216C89.3307 11.4216 89.8187 11.6098 90.2067 11.9874C90.6894 12.4498 90.9307 13.1402 90.9307 14.0571V17.7989Z", fill: "white" }),
8271
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M94.7839 17.7988H93.3879V8.68677H94.7839V17.7988Z", fill: "white" }),
8272
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M103.011 14.6241C103.011 15.5847 102.735 16.3718 102.183 16.9892C101.604 17.6239 100.836 17.9406 99.8801 17.9406C98.9561 17.9406 98.2214 17.6371 97.6747 17.0276C97.1281 16.4195 96.8547 15.6523 96.8547 14.7274C96.8547 13.7602 97.1361 12.9665 97.7014 12.3504C98.2667 11.7343 99.0267 11.4255 99.9827 11.4255C100.907 11.4255 101.647 11.729 102.209 12.3371C102.743 12.9281 103.011 13.6913 103.011 14.6241ZM101.56 14.6691C101.56 14.0928 101.435 13.5985 101.185 13.1865C100.893 12.6883 100.475 12.4392 99.9334 12.4392C99.3707 12.4392 98.9441 12.6883 98.6521 13.1865C98.4014 13.5985 98.2774 14.1007 98.2774 14.6943C98.2774 15.2707 98.4027 15.7649 98.6521 16.177C98.9547 16.6752 99.3761 16.9243 99.9201 16.9243C100.453 16.9243 100.871 16.6712 101.172 16.1637C101.432 15.7437 101.56 15.2455 101.56 14.6691Z", fill: "white" }),
8273
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M109.773 17.7988H108.519L108.415 17.0793H108.376C107.947 17.653 107.335 17.9406 106.54 17.9406C105.947 17.9406 105.467 17.7511 105.105 17.3748C104.777 17.0329 104.613 16.6076 104.613 16.1028C104.613 15.3396 104.933 14.7579 105.577 14.3551C106.22 13.9523 107.124 13.7549 108.288 13.7642V13.6476C108.288 12.8247 107.853 12.414 106.983 12.414C106.363 12.414 105.816 12.569 105.344 12.8764L105.06 11.9648C105.644 11.6057 106.365 11.4255 107.216 11.4255C108.859 11.4255 109.683 12.2868 109.683 14.0093V16.3095C109.683 16.9336 109.713 17.4304 109.773 17.7988ZM108.323 15.6523V14.689C106.781 14.6625 106.011 15.0825 106.011 15.9478C106.011 16.2737 106.099 16.5175 106.279 16.6805C106.459 16.8435 106.688 16.9243 106.961 16.9243C107.268 16.9243 107.555 16.8276 107.816 16.6354C108.079 16.442 108.24 16.1969 108.3 15.8961C108.315 15.8285 108.323 15.7464 108.323 15.6523Z", fill: "white" }),
8274
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M117.713 17.7988H116.473L116.408 16.7958H116.369C115.973 17.559 115.299 17.9406 114.351 17.9406C113.593 17.9406 112.963 17.6451 112.463 17.0541C111.963 16.4632 111.713 15.696 111.713 14.7539C111.713 13.743 111.984 12.9241 112.528 12.2987C113.055 11.7157 113.7 11.4242 114.468 11.4242C115.312 11.4242 115.903 11.7064 116.239 12.2722H116.265V8.68677H117.664V16.116C117.664 16.7242 117.68 17.2847 117.713 17.7988ZM116.265 15.1647V14.1232C116.265 13.943 116.252 13.7973 116.227 13.686C116.148 13.3521 115.979 13.0712 115.721 12.8446C115.461 12.618 115.148 12.5041 114.787 12.5041C114.265 12.5041 113.857 12.7095 113.557 13.1215C113.26 13.5336 113.109 14.0596 113.109 14.7023C113.109 15.3197 113.252 15.8206 113.539 16.2061C113.841 16.6169 114.249 16.8223 114.76 16.8223C115.219 16.8223 115.585 16.6513 115.864 16.3082C116.133 15.9915 116.265 15.6099 116.265 15.1647Z", fill: "white" }),
8275
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M129.664 14.6241C129.664 15.5847 129.388 16.3718 128.836 16.9892C128.257 17.6239 127.492 17.9406 126.533 17.9406C125.612 17.9406 124.877 17.6371 124.328 17.0276C123.781 16.4195 123.508 15.6523 123.508 14.7274C123.508 13.7602 123.789 12.9665 124.355 12.3504C124.92 11.7343 125.68 11.4255 126.639 11.4255C127.56 11.4255 128.303 11.729 128.863 12.3371C129.396 12.9281 129.664 13.6913 129.664 14.6241ZM128.216 14.6691C128.216 14.0928 128.091 13.5985 127.841 13.1865C127.547 12.6883 127.131 12.4392 126.587 12.4392C126.027 12.4392 125.6 12.6883 125.305 13.1865C125.055 13.5985 124.931 14.1007 124.931 14.6943C124.931 15.2707 125.056 15.7649 125.305 16.177C125.608 16.6752 126.029 16.9243 126.573 16.9243C127.107 16.9243 127.527 16.6712 127.828 16.1637C128.085 15.7437 128.216 15.2455 128.216 14.6691Z", fill: "white" }),
8276
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M137.177 17.7989H135.781V14.2214C135.781 13.119 135.36 12.5678 134.513 12.5678C134.099 12.5678 133.764 12.7188 133.505 13.0222C133.247 13.3257 133.117 13.6834 133.117 14.0928V17.7975H131.719V13.3376C131.719 12.789 131.703 12.1941 131.669 11.5502H132.896L132.961 12.5267H133C133.164 12.2233 133.407 11.9728 133.724 11.7728C134.104 11.5396 134.527 11.4216 134.992 11.4216C135.577 11.4216 136.065 11.6098 136.453 11.9874C136.937 12.4498 137.177 13.1402 137.177 14.0571V17.7989Z", fill: "white" }),
8277
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M146.581 12.593H145.043V15.6272C145.043 16.3984 145.316 16.784 145.857 16.784C146.108 16.784 146.316 16.7628 146.48 16.719L146.516 17.7724C146.24 17.8758 145.877 17.9274 145.431 17.9274C144.879 17.9274 144.449 17.7605 144.139 17.4266C143.827 17.0927 143.672 16.5309 143.672 15.7425V12.593H142.753V11.5529H143.672V10.4081L145.041 9.99731V11.5515H146.58L146.581 12.593Z", fill: "white" }),
8278
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M153.979 17.7988H152.58V14.2478C152.58 13.1282 152.159 12.5677 151.315 12.5677C150.667 12.5677 150.224 12.8923 149.981 13.5416C149.94 13.678 149.916 13.845 149.916 14.0411V17.7975H148.52V8.68677H149.916V12.4511H149.943C150.383 11.7661 151.013 11.4242 151.831 11.4242C152.409 11.4242 152.888 11.6124 153.268 11.99C153.741 12.4604 153.979 13.16 153.979 14.0848V17.7988Z", fill: "white" }),
8279
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("path", { d: "M161.609 14.3802C161.609 14.6293 161.591 14.8387 161.557 15.0096H157.367C157.385 15.6271 157.585 16.0974 157.973 16.4234C158.328 16.7149 158.785 16.8606 159.345 16.8606C159.965 16.8606 160.531 16.7626 161.04 16.5652L161.259 17.5298C160.663 17.7868 159.961 17.9153 159.149 17.9153C158.176 17.9153 157.409 17.6305 156.855 17.0607C156.297 16.491 156.021 15.7264 156.021 14.7671C156.021 13.8251 156.279 13.0407 156.797 12.4153C157.339 11.7475 158.071 11.4136 158.995 11.4136C159.899 11.4136 160.585 11.7475 161.049 12.4153C161.424 12.9453 161.609 13.6011 161.609 14.3802ZM160.276 14.0212C160.287 13.6091 160.195 13.254 160.005 12.9545C159.763 12.569 159.393 12.3755 158.893 12.3755C158.437 12.3755 158.065 12.5637 157.781 12.9413C157.549 13.2421 157.412 13.6011 157.367 14.0212H160.276Z", fill: "white" })
8348
8280
  ] }),
8349
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("clipPath", { id: "clip0_5955_114", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8281
+ /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("clipPath", { id: "clip0_5955_114", children: /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8350
8282
  ]
8351
8283
  }
8352
8284
  ) })
@@ -8358,18 +8290,18 @@ var H1BodyButtonWithApp = (props) => {
8358
8290
  };
8359
8291
 
8360
8292
  // src/components/Hero/HeroImageRightWithAppButtons.tsx
8361
- var import_jsx_runtime147 = require("react/jsx-runtime");
8293
+ var import_jsx_runtime152 = require("react/jsx-runtime");
8362
8294
  var HeroImageRightWithAppButtons = (props) => {
8363
- const [description, setDescription] = (0, import_react25.useState)(props.description);
8364
- (0, import_react25.useEffect)(() => {
8295
+ const [description, setDescription] = (0, import_react28.useState)(props.description);
8296
+ (0, import_react28.useEffect)(() => {
8365
8297
  var _a;
8366
8298
  if (typeof window !== "undefined") {
8367
8299
  const desc = window.innerWidth < 700 ? (_a = props.description) == null ? void 0 : _a.replaceAll("<br>", "") : props.description;
8368
8300
  setDescription(desc);
8369
8301
  }
8370
8302
  }, [props.description]);
8371
- return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "lg:mt-10", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "flex gap-5 max-md:flex-col max-md:gap-0", children: [
8372
- /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "flex flex-col w-[50%] max-md:ml-0 max-md:w-full lg:pr-5", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "flex flex-col self-stretch lg:pr-5 my-auto max-md:max-w-full", children: props.title && props.description && /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
8303
+ return /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "lg:mt-10", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { className: "flex gap-5 max-md:flex-col max-md:gap-0", children: [
8304
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "flex flex-col w-[50%] max-md:ml-0 max-md:w-full lg:pr-5", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "flex flex-col self-stretch lg:pr-5 my-auto max-md:max-w-full", children: props.title && props.description && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
8373
8305
  H1BodyButtonWithApp,
8374
8306
  {
8375
8307
  title: props.title,
@@ -8379,7 +8311,7 @@ var HeroImageRightWithAppButtons = (props) => {
8379
8311
  apple_store_link: props.app_store_link
8380
8312
  }
8381
8313
  ) }) }),
8382
- /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "flex flex-col ml-5 w-[50%] max-md:ml-0 max-md:w-full", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "flex overflow-hidden relative min-h-[430px] flex-col grow justify-center lg:min-h-[784px] max-md:mt-6 max-md:max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
8314
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "flex flex-col ml-5 w-[50%] max-md:ml-0 max-md:w-full", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "flex overflow-hidden relative min-h-[430px] flex-col grow justify-center lg:min-h-[784px] max-md:mt-6 max-md:max-w-full", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
8383
8315
  ImageElement,
8384
8316
  {
8385
8317
  src: props.path,
@@ -8390,16 +8322,16 @@ var HeroImageRightWithAppButtons = (props) => {
8390
8322
  };
8391
8323
 
8392
8324
  // src/components/Panel/Horizontal.tsx
8393
- var import_jsx_runtime148 = require("react/jsx-runtime");
8325
+ var import_jsx_runtime153 = require("react/jsx-runtime");
8394
8326
  var PanelHorizontal = ({
8395
8327
  children
8396
8328
  }) => {
8397
- return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "panel-horizontal", children });
8329
+ return /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { className: "panel-horizontal", children });
8398
8330
  };
8399
8331
 
8400
8332
  // src/components/HeadingTextBlocks/H2BodyButton.tsx
8401
8333
  var import_core7 = require("@geowiki/core");
8402
- var import_jsx_runtime149 = require("react/jsx-runtime");
8334
+ var import_jsx_runtime154 = require("react/jsx-runtime");
8403
8335
  var H2BodyButton = (props) => {
8404
8336
  var _a;
8405
8337
  const isNeedParse = /<em>(.*?)<\/em>/g.test(props.title);
@@ -8409,43 +8341,43 @@ var H2BodyButton = (props) => {
8409
8341
  const modifiedText = content.replace(regex, `$1${textToAdd}`);
8410
8342
  return modifiedText;
8411
8343
  };
8412
- return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8344
+ return /* @__PURE__ */ (0, import_jsx_runtime154.jsxs)(
8413
8345
  "div",
8414
8346
  {
8415
8347
  id: props.id,
8416
8348
  className: `${props.noContainer ? `lg:ml-8` : `lg:container`} mx-auto flex flex-col lg:flex-row justify-between mt-4 lg:pt-20 ${props.bottomPadding && `lg:mb-${props.bottomPadding}`}`,
8417
8349
  children: [
8418
- /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "flex flex-col lg:w-[14%]", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(Body18, { children: props.tag }) }),
8419
- /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "flex flex-col lg:w-[51%] space-y-4 lg:space-y-6", children: [
8420
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8350
+ /* @__PURE__ */ (0, import_jsx_runtime154.jsx)("div", { className: "flex flex-col lg:w-[14%]", children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(Body18, { children: props.tag }) }),
8351
+ /* @__PURE__ */ (0, import_jsx_runtime154.jsxs)("div", { className: "flex flex-col lg:w-[51%] space-y-4 lg:space-y-6", children: [
8352
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
8421
8353
  HtmlView,
8422
8354
  {
8423
8355
  cssClass: "m-0 pt-2 lg:pt-0",
8424
8356
  html: parseTitle(props.title, "H2")
8425
8357
  }
8426
8358
  ),
8427
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(H2Design, { className: "pt-2 lg:pt-0", children: [
8359
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime154.jsxs)(H2Design, { className: "pt-2 lg:pt-0", children: [
8428
8360
  props.title,
8429
8361
  " "
8430
8362
  ] }),
8431
- /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8363
+ /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
8432
8364
  HtmlView,
8433
8365
  {
8434
8366
  cssClass: "m-0 text-base lg:text-lg leading-[130%] lg:mt-4",
8435
8367
  html: addLinksStyles(props.textBody)
8436
8368
  }
8437
8369
  ),
8438
- ((_a = props.button) == null ? void 0 : _a.text) && props.button.link && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8370
+ ((_a = props.button) == null ? void 0 : _a.text) && props.button.link && /* @__PURE__ */ (0, import_jsx_runtime154.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(
8439
8371
  import_core7.Link,
8440
8372
  {
8441
8373
  href: props.button.link,
8442
8374
  target: props.button.isNewTab ? "_blank" : "_self",
8443
8375
  rel: "noreferrer",
8444
- children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(DesignButton, { children: props.button.text })
8376
+ children: /* @__PURE__ */ (0, import_jsx_runtime154.jsx)(DesignButton, { children: props.button.text })
8445
8377
  }
8446
8378
  ) })
8447
8379
  ] }),
8448
- /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "hidden lg:w-[15%] lg:inline" })
8380
+ /* @__PURE__ */ (0, import_jsx_runtime154.jsx)("div", { className: "hidden lg:w-[15%] lg:inline" })
8449
8381
  ]
8450
8382
  }
8451
8383
  );
@@ -8527,6 +8459,7 @@ var H2BodyButton = (props) => {
8527
8459
  Carousel,
8528
8460
  CarouselContent,
8529
8461
  CarouselItem,
8462
+ CarouselItemList,
8530
8463
  CarouselNext,
8531
8464
  CarouselPrevious,
8532
8465
  ChartLineDotsIcon,
@@ -8749,6 +8682,7 @@ var H2BodyButton = (props) => {
8749
8682
  Skeleton,
8750
8683
  Slider,
8751
8684
  StopWatchCheckIcon,
8685
+ SummaryCard,
8752
8686
  Switch,
8753
8687
  Table,
8754
8688
  TableBody,