@geowiki/design-system 0.16.9-dev.21 → 0.16.9-dev.23

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
@@ -134,6 +134,7 @@ __export(index_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,
@@ -1574,434 +1575,19 @@ var DropdownMenuShortcut = (_a) => {
1574
1575
  DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
1575
1576
 
1576
1577
  // src/components/ui/form.tsx
1577
- var React14 = __toESM(require("react"));
1578
+ var React13 = __toESM(require("react"));
1578
1579
  var import_react_slot2 = require("@radix-ui/react-slot");
1579
-
1580
- // ../../node_modules/react-hook-form/dist/index.esm.mjs
1581
- var import_react = __toESM(require("react"), 1);
1582
- var isCheckBoxInput = (element) => element.type === "checkbox";
1583
- var isDateObject = (value) => value instanceof Date;
1584
- var isNullOrUndefined = (value) => value == null;
1585
- var isObjectType = (value) => typeof value === "object";
1586
- var isObject = (value) => !isNullOrUndefined(value) && !Array.isArray(value) && isObjectType(value) && !isDateObject(value);
1587
- var getEventValue = (event) => isObject(event) && event.target ? isCheckBoxInput(event.target) ? event.target.checked : event.target.value : event;
1588
- var getFieldArrayParentNames = (names, name) => {
1589
- const parts = name.split(".");
1590
- const matches = [];
1591
- let prefix = parts[0];
1592
- for (let i = 1; i < parts.length; prefix += "." + parts[i++]) {
1593
- !isNaN(+parts[i]) && names.has(prefix) && matches.push(prefix);
1594
- }
1595
- return matches;
1596
- };
1597
- var isPlainObject = (tempObject) => {
1598
- const prototypeCopy = tempObject.constructor && tempObject.constructor.prototype;
1599
- return isObject(prototypeCopy) && prototypeCopy.hasOwnProperty("isPrototypeOf");
1600
- };
1601
- var isWeb = typeof window !== "undefined" && typeof window.HTMLElement !== "undefined" && typeof document !== "undefined";
1602
- function cloneObject(data) {
1603
- if (data instanceof Date) {
1604
- return new Date(data);
1605
- }
1606
- const isFileListInstance = typeof FileList !== "undefined" && data instanceof FileList;
1607
- if (isWeb && (data instanceof Blob || isFileListInstance)) {
1608
- return data;
1609
- }
1610
- const isArray = Array.isArray(data);
1611
- if (!isArray && !(isObject(data) && isPlainObject(data))) {
1612
- return data;
1613
- }
1614
- const copy = isArray ? [] : Object.create(Object.getPrototypeOf(data));
1615
- for (const key in data) {
1616
- if (Object.prototype.hasOwnProperty.call(data, key)) {
1617
- copy[key] = cloneObject(data[key]);
1618
- }
1619
- }
1620
- return copy;
1621
- }
1622
- var isKey = (value) => /^\w*$/.test(value);
1623
- var isUndefined = (val) => val === void 0;
1624
- var compact = (value) => Array.isArray(value) ? value.filter(Boolean) : [];
1625
- var stringToPath = (input) => compact(input.replace(/["|']|\]/g, "").split(/\.|\[/));
1626
- var get = (object, path, defaultValue) => {
1627
- if (!path || !isObject(object)) {
1628
- return defaultValue;
1629
- }
1630
- const paths = isKey(path) ? [path] : stringToPath(path);
1631
- const result = paths.reduce((result2, key) => {
1632
- return isNullOrUndefined(result2) ? void 0 : result2[key];
1633
- }, object);
1634
- return isUndefined(result) || result === object ? isUndefined(object[path]) ? defaultValue : object[path] : result;
1635
- };
1636
- var isBoolean = (value) => typeof value === "boolean";
1637
- var isFunction = (value) => typeof value === "function";
1638
- var set = (object, path, value) => {
1639
- let index = -1;
1640
- const tempPath = isKey(path) ? [path] : stringToPath(path);
1641
- const length = tempPath.length;
1642
- const lastIndex = length - 1;
1643
- while (++index < length) {
1644
- const key = tempPath[index];
1645
- let newValue = value;
1646
- if (index !== lastIndex) {
1647
- const objValue = object[key];
1648
- newValue = isObject(objValue) || Array.isArray(objValue) ? objValue : !isNaN(+tempPath[index + 1]) ? [] : {};
1649
- }
1650
- if (key === "__proto__" || key === "constructor" || key === "prototype") {
1651
- return;
1652
- }
1653
- object[key] = newValue;
1654
- object = object[key];
1655
- }
1656
- };
1657
- var EVENTS = {
1658
- BLUR: "blur",
1659
- FOCUS_OUT: "focusout",
1660
- CHANGE: "change",
1661
- SUBMIT: "submit",
1662
- TRIGGER: "trigger",
1663
- VALID: "valid"
1664
- };
1665
- var VALIDATION_MODE = {
1666
- onBlur: "onBlur",
1667
- onChange: "onChange",
1668
- onSubmit: "onSubmit",
1669
- onTouched: "onTouched",
1670
- all: "all"
1671
- };
1672
- var HookFormControlContext = import_react.default.createContext(null);
1673
- HookFormControlContext.displayName = "HookFormControlContext";
1674
- var useFormControlContext = () => import_react.default.useContext(HookFormControlContext);
1675
- var getProxyFormState = (formState, control, localProxyFormState, isRoot = true) => {
1676
- const result = {};
1677
- for (const key in formState) {
1678
- Object.defineProperty(result, key, {
1679
- get: () => {
1680
- const _key = key;
1681
- if (control._proxyFormState[_key] !== VALIDATION_MODE.all) {
1682
- control._proxyFormState[_key] = !isRoot || VALIDATION_MODE.all;
1683
- }
1684
- localProxyFormState && (localProxyFormState[_key] = true);
1685
- return formState[_key];
1686
- }
1687
- });
1688
- }
1689
- return result;
1690
- };
1691
- var useIsomorphicLayoutEffect = typeof window !== "undefined" ? import_react.default.useLayoutEffect : import_react.default.useEffect;
1692
- function useFormState(props) {
1693
- const formControl = useFormControlContext();
1694
- const { control = formControl, disabled, name, exact } = props || {};
1695
- const [formState, updateFormState] = import_react.default.useState(() => __spreadProps(__spreadValues({}, control._formState), {
1696
- defaultValues: control._defaultValues
1697
- }));
1698
- const _localProxyFormState = import_react.default.useRef({
1699
- isDirty: false,
1700
- isLoading: false,
1701
- dirtyFields: false,
1702
- touchedFields: false,
1703
- validatingFields: false,
1704
- isValidating: false,
1705
- isValid: false,
1706
- errors: false
1707
- });
1708
- useIsomorphicLayoutEffect(() => control._subscribe({
1709
- name,
1710
- formState: _localProxyFormState.current,
1711
- exact,
1712
- callback: (formState2) => {
1713
- !disabled && updateFormState(__spreadProps(__spreadValues(__spreadValues({}, control._formState), formState2), {
1714
- defaultValues: control._defaultValues
1715
- }));
1716
- }
1717
- }), [name, disabled, exact]);
1718
- import_react.default.useEffect(() => {
1719
- _localProxyFormState.current.isValid && control._setValid(true);
1720
- }, [control]);
1721
- return import_react.default.useMemo(() => getProxyFormState(formState, control, _localProxyFormState.current, false), [formState, control]);
1722
- }
1723
- var isString = (value) => typeof value === "string";
1724
- var generateWatchOutput = (names, _names, formValues, isGlobal, defaultValue) => {
1725
- if (isString(names)) {
1726
- isGlobal && _names.watch.add(names);
1727
- return get(formValues, names, defaultValue);
1728
- }
1729
- if (Array.isArray(names)) {
1730
- return names.map((fieldName) => (isGlobal && _names.watch.add(fieldName), get(formValues, fieldName)));
1731
- }
1732
- isGlobal && (_names.watchAll = true);
1733
- return formValues;
1734
- };
1735
- var isPrimitive = (value) => isNullOrUndefined(value) || !isObjectType(value);
1736
- function deepEqual(object1, object2, visited = /* @__PURE__ */ new WeakSet()) {
1737
- if (object1 === object2) {
1738
- return true;
1739
- }
1740
- if (isPrimitive(object1) || isPrimitive(object2)) {
1741
- return Object.is(object1, object2);
1742
- }
1743
- if (isDateObject(object1) && isDateObject(object2)) {
1744
- return Object.is(object1.getTime(), object2.getTime());
1745
- }
1746
- const keys1 = Object.keys(object1);
1747
- const keys2 = Object.keys(object2);
1748
- if (keys1.length !== keys2.length) {
1749
- return false;
1750
- }
1751
- if (visited.has(object1) || visited.has(object2)) {
1752
- return true;
1753
- }
1754
- visited.add(object1);
1755
- visited.add(object2);
1756
- for (const key of keys1) {
1757
- const val1 = object1[key];
1758
- if (!(key in object2)) {
1759
- return false;
1760
- }
1761
- if (key !== "ref") {
1762
- const val2 = object2[key];
1763
- if (isDateObject(val1) && isDateObject(val2) || (isObject(val1) || Array.isArray(val1)) && (isObject(val2) || Array.isArray(val2)) ? !deepEqual(val1, val2, visited) : !Object.is(val1, val2)) {
1764
- return false;
1765
- }
1766
- }
1767
- }
1768
- return true;
1769
- }
1770
- function useWatch(props) {
1771
- const formControl = useFormControlContext();
1772
- const { control = formControl, name, defaultValue, disabled, exact, compute } = props || {};
1773
- const _defaultValue = import_react.default.useRef(defaultValue);
1774
- const _compute = import_react.default.useRef(compute);
1775
- const _computeFormValues = import_react.default.useRef(void 0);
1776
- const _prevControl = import_react.default.useRef(control);
1777
- const _prevName = import_react.default.useRef(name);
1778
- _compute.current = compute;
1779
- const [value, updateValue] = import_react.default.useState(() => {
1780
- const defaultValue2 = control._getWatch(name, _defaultValue.current);
1781
- return _compute.current ? _compute.current(defaultValue2) : defaultValue2;
1782
- });
1783
- const getCurrentOutput = import_react.default.useCallback((values) => {
1784
- const formValues = generateWatchOutput(name, control._names, values || control._formValues, false, _defaultValue.current);
1785
- return _compute.current ? _compute.current(formValues) : formValues;
1786
- }, [control._formValues, control._names, name]);
1787
- const refreshValue = import_react.default.useCallback((values) => {
1788
- if (!disabled) {
1789
- const formValues = generateWatchOutput(name, control._names, values || control._formValues, false, _defaultValue.current);
1790
- if (_compute.current) {
1791
- const computedFormValues = _compute.current(formValues);
1792
- if (!deepEqual(computedFormValues, _computeFormValues.current)) {
1793
- updateValue(computedFormValues);
1794
- _computeFormValues.current = computedFormValues;
1795
- }
1796
- } else {
1797
- updateValue(formValues);
1798
- }
1799
- }
1800
- }, [control._formValues, control._names, disabled, name]);
1801
- useIsomorphicLayoutEffect(() => {
1802
- if (_prevControl.current !== control || !deepEqual(_prevName.current, name)) {
1803
- _prevControl.current = control;
1804
- _prevName.current = name;
1805
- refreshValue();
1806
- }
1807
- return control._subscribe({
1808
- name,
1809
- formState: {
1810
- values: true
1811
- },
1812
- exact,
1813
- callback: (formState) => {
1814
- refreshValue(formState.values);
1815
- }
1816
- });
1817
- }, [control, exact, name, refreshValue]);
1818
- import_react.default.useEffect(() => control._removeUnmounted());
1819
- const controlChanged = _prevControl.current !== control;
1820
- const prevName = _prevName.current;
1821
- const computedOutput = import_react.default.useMemo(() => {
1822
- if (disabled) {
1823
- return null;
1824
- }
1825
- const nameChanged = !controlChanged && !deepEqual(prevName, name);
1826
- const shouldReturnImmediate = controlChanged || nameChanged;
1827
- return shouldReturnImmediate ? getCurrentOutput() : null;
1828
- }, [disabled, controlChanged, name, prevName, getCurrentOutput]);
1829
- return computedOutput !== null ? computedOutput : value;
1830
- }
1831
- function useController(props) {
1832
- const formControl = useFormControlContext();
1833
- const { name, disabled, control = formControl, shouldUnregister, defaultValue, exact = true } = props;
1834
- const isArrayField = !!getFieldArrayParentNames(control._names.array, name).length;
1835
- const defaultValueMemo = import_react.default.useMemo(() => get(control._formValues, name, get(control._defaultValues, name, defaultValue)), [control, name, defaultValue]);
1836
- const value = useWatch({
1837
- control,
1838
- name,
1839
- defaultValue: defaultValueMemo,
1840
- exact
1841
- });
1842
- const formState = useFormState({
1843
- control,
1844
- name,
1845
- exact
1846
- });
1847
- const _props = import_react.default.useRef(props);
1848
- const _registerProps = import_react.default.useRef(control.register(name, __spreadValues(__spreadProps(__spreadValues({}, props.rules), {
1849
- value
1850
- }), isBoolean(props.disabled) ? { disabled: props.disabled } : {})));
1851
- _props.current = props;
1852
- const fieldState = import_react.default.useMemo(() => Object.defineProperties({}, {
1853
- invalid: {
1854
- enumerable: true,
1855
- get: () => !!get(formState.errors, name)
1856
- },
1857
- isDirty: {
1858
- enumerable: true,
1859
- get: () => !!get(formState.dirtyFields, name)
1860
- },
1861
- isTouched: {
1862
- enumerable: true,
1863
- get: () => !!get(formState.touchedFields, name)
1864
- },
1865
- isValidating: {
1866
- enumerable: true,
1867
- get: () => !!get(formState.validatingFields, name)
1868
- },
1869
- error: {
1870
- enumerable: true,
1871
- get: () => get(formState.errors, name)
1872
- }
1873
- }), [formState, name]);
1874
- const onChange = import_react.default.useCallback((event) => _registerProps.current.onChange({
1875
- target: {
1876
- value: getEventValue(event),
1877
- name
1878
- },
1879
- type: EVENTS.CHANGE
1880
- }), [name]);
1881
- const onBlur = import_react.default.useCallback(() => _registerProps.current.onBlur({
1882
- target: {
1883
- value: get(control._formValues, name),
1884
- name
1885
- },
1886
- type: EVENTS.BLUR
1887
- }), [name, control._formValues]);
1888
- const ref = import_react.default.useCallback((elm) => {
1889
- const field2 = get(control._fields, name);
1890
- if (field2 && field2._f && elm) {
1891
- field2._f.ref = {
1892
- focus: () => isFunction(elm.focus) && elm.focus(),
1893
- select: () => isFunction(elm.select) && elm.select(),
1894
- setCustomValidity: (message) => isFunction(elm.setCustomValidity) && elm.setCustomValidity(message),
1895
- reportValidity: () => isFunction(elm.reportValidity) && elm.reportValidity()
1896
- };
1897
- }
1898
- }, [control._fields, name]);
1899
- const field = import_react.default.useMemo(() => __spreadProps(__spreadValues({
1900
- name,
1901
- value
1902
- }, isBoolean(disabled) || formState.disabled ? { disabled: formState.disabled || disabled } : {}), {
1903
- onChange,
1904
- onBlur,
1905
- ref
1906
- }), [name, disabled, formState.disabled, onChange, onBlur, ref, value]);
1907
- import_react.default.useEffect(() => {
1908
- const _shouldUnregisterField = control._options.shouldUnregister || shouldUnregister;
1909
- control.register(name, __spreadValues(__spreadValues({}, _props.current.rules), isBoolean(_props.current.disabled) ? { disabled: _props.current.disabled } : {}));
1910
- const updateMounted = (name2, value2) => {
1911
- const field2 = get(control._fields, name2);
1912
- if (field2 && field2._f) {
1913
- field2._f.mount = value2;
1914
- }
1915
- };
1916
- updateMounted(name, true);
1917
- if (_shouldUnregisterField) {
1918
- const value2 = cloneObject(get(control._defaultValues, name, get(control._options.defaultValues, name, _props.current.defaultValue)));
1919
- set(control._defaultValues, name, value2);
1920
- if (isUndefined(get(control._formValues, name))) {
1921
- set(control._formValues, name, value2);
1922
- }
1923
- }
1924
- !isArrayField && control.register(name);
1925
- return () => {
1926
- (isArrayField ? _shouldUnregisterField && !control._state.action : _shouldUnregisterField) ? control.unregister(name) : updateMounted(name, false);
1927
- };
1928
- }, [name, control, isArrayField, shouldUnregister]);
1929
- import_react.default.useEffect(() => {
1930
- control._setDisabledField({
1931
- disabled,
1932
- name
1933
- });
1934
- }, [disabled, name, control]);
1935
- return import_react.default.useMemo(() => ({
1936
- field,
1937
- formState,
1938
- fieldState
1939
- }), [field, formState, fieldState]);
1940
- }
1941
- var Controller = (props) => props.render(useController(props));
1942
- var HookFormContext = import_react.default.createContext(null);
1943
- HookFormContext.displayName = "HookFormContext";
1944
- var useFormContext = () => import_react.default.useContext(HookFormContext);
1945
- var FormProvider = (props) => {
1946
- const { children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, handleSubmit, unregister, control, register, setFocus, subscribe } = props;
1947
- const memoizedValue = import_react.default.useMemo(() => ({
1948
- watch,
1949
- getValues,
1950
- getFieldState,
1951
- setError,
1952
- clearErrors,
1953
- setValue,
1954
- setValues,
1955
- trigger,
1956
- formState,
1957
- resetField,
1958
- reset,
1959
- handleSubmit,
1960
- unregister,
1961
- control,
1962
- register,
1963
- setFocus,
1964
- subscribe
1965
- }), [
1966
- clearErrors,
1967
- control,
1968
- formState,
1969
- getFieldState,
1970
- getValues,
1971
- handleSubmit,
1972
- register,
1973
- reset,
1974
- resetField,
1975
- setError,
1976
- setFocus,
1977
- setValue,
1978
- setValues,
1979
- subscribe,
1980
- trigger,
1981
- unregister,
1982
- watch
1983
- ]);
1984
- return import_react.default.createElement(
1985
- HookFormContext.Provider,
1986
- { value: memoizedValue },
1987
- import_react.default.createElement(HookFormControlContext.Provider, { value: memoizedValue.control }, children)
1988
- );
1989
- };
1990
- var defaultOptions = {
1991
- mode: VALIDATION_MODE.onSubmit,
1992
- reValidateMode: VALIDATION_MODE.onChange,
1993
- shouldFocusError: true
1994
- };
1580
+ var import_react_hook_form = require("react-hook-form");
1995
1581
 
1996
1582
  // src/components/ui/label.tsx
1997
- var React13 = __toESM(require("react"));
1583
+ var React12 = __toESM(require("react"));
1998
1584
  var LabelPrimitive = __toESM(require("@radix-ui/react-label"));
1999
1585
  var import_class_variance_authority4 = require("class-variance-authority");
2000
1586
  var import_jsx_runtime14 = require("react/jsx-runtime");
2001
1587
  var labelVariants = (0, import_class_variance_authority4.cva)(
2002
1588
  "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
2003
1589
  );
2004
- var Label3 = React13.forwardRef((_a, ref) => {
1590
+ var Label3 = React12.forwardRef((_a, ref) => {
2005
1591
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2006
1592
  return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2007
1593
  LabelPrimitive.Root,
@@ -2015,18 +1601,18 @@ Label3.displayName = LabelPrimitive.Root.displayName;
2015
1601
 
2016
1602
  // src/components/ui/form.tsx
2017
1603
  var import_jsx_runtime15 = require("react/jsx-runtime");
2018
- var Form = FormProvider;
2019
- var FormFieldContext = React14.createContext(
1604
+ var Form = import_react_hook_form.FormProvider;
1605
+ var FormFieldContext = React13.createContext(
2020
1606
  {}
2021
1607
  );
2022
1608
  var FormField = (_a) => {
2023
1609
  var props = __objRest(_a, []);
2024
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(Controller, __spreadValues({}, props)) });
1610
+ 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)) });
2025
1611
  };
2026
1612
  var useFormField = () => {
2027
- const fieldContext = React14.useContext(FormFieldContext);
2028
- const itemContext = React14.useContext(FormItemContext);
2029
- const { getFieldState, formState } = useFormContext();
1613
+ const fieldContext = React13.useContext(FormFieldContext);
1614
+ const itemContext = React13.useContext(FormItemContext);
1615
+ const { getFieldState, formState } = (0, import_react_hook_form.useFormContext)();
2030
1616
  const fieldState = getFieldState(fieldContext.name, formState);
2031
1617
  if (!fieldContext) {
2032
1618
  throw new Error("useFormField should be used within <FormField>");
@@ -2040,16 +1626,16 @@ var useFormField = () => {
2040
1626
  formMessageId: `${id}-form-item-message`
2041
1627
  }, fieldState);
2042
1628
  };
2043
- var FormItemContext = React14.createContext(
1629
+ var FormItemContext = React13.createContext(
2044
1630
  {}
2045
1631
  );
2046
- var FormItem = React14.forwardRef((_a, ref) => {
1632
+ var FormItem = React13.forwardRef((_a, ref) => {
2047
1633
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2048
- const id = React14.useId();
1634
+ const id = React13.useId();
2049
1635
  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)) });
2050
1636
  });
2051
1637
  FormItem.displayName = "FormItem";
2052
- var FormLabel = React14.forwardRef((_a, ref) => {
1638
+ var FormLabel = React13.forwardRef((_a, ref) => {
2053
1639
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2054
1640
  const { error, formItemId } = useFormField();
2055
1641
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -2062,7 +1648,7 @@ var FormLabel = React14.forwardRef((_a, ref) => {
2062
1648
  );
2063
1649
  });
2064
1650
  FormLabel.displayName = "FormLabel";
2065
- var FormControl = React14.forwardRef((_a, ref) => {
1651
+ var FormControl = React13.forwardRef((_a, ref) => {
2066
1652
  var props = __objRest(_a, []);
2067
1653
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
2068
1654
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -2076,7 +1662,7 @@ var FormControl = React14.forwardRef((_a, ref) => {
2076
1662
  );
2077
1663
  });
2078
1664
  FormControl.displayName = "FormControl";
2079
- var FormDescription = React14.forwardRef((_a, ref) => {
1665
+ var FormDescription = React13.forwardRef((_a, ref) => {
2080
1666
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2081
1667
  const { formDescriptionId } = useFormField();
2082
1668
  return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
@@ -2089,7 +1675,7 @@ var FormDescription = React14.forwardRef((_a, ref) => {
2089
1675
  );
2090
1676
  });
2091
1677
  FormDescription.displayName = "FormDescription";
2092
- var FormMessage = React14.forwardRef((_a, ref) => {
1678
+ var FormMessage = React13.forwardRef((_a, ref) => {
2093
1679
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2094
1680
  const { error, formMessageId } = useFormField();
2095
1681
  const body = error ? String(error == null ? void 0 : error.message) : children;
@@ -2110,12 +1696,12 @@ var FormMessage = React14.forwardRef((_a, ref) => {
2110
1696
  FormMessage.displayName = "FormMessage";
2111
1697
 
2112
1698
  // src/components/ui/hover-card.tsx
2113
- var React15 = __toESM(require("react"));
1699
+ var React14 = __toESM(require("react"));
2114
1700
  var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"));
2115
1701
  var import_jsx_runtime16 = require("react/jsx-runtime");
2116
1702
  var HoverCard = HoverCardPrimitive.Root;
2117
1703
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
2118
- var HoverCardContent = React15.forwardRef((_a, ref) => {
1704
+ var HoverCardContent = React14.forwardRef((_a, ref) => {
2119
1705
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
2120
1706
  return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2121
1707
  HoverCardPrimitive.Content,
@@ -2133,9 +1719,9 @@ var HoverCardContent = React15.forwardRef((_a, ref) => {
2133
1719
  HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
2134
1720
 
2135
1721
  // src/components/ui/input.tsx
2136
- var React16 = __toESM(require("react"));
1722
+ var React15 = __toESM(require("react"));
2137
1723
  var import_jsx_runtime17 = require("react/jsx-runtime");
2138
- var Input = React16.forwardRef(
1724
+ var Input = React15.forwardRef(
2139
1725
  (_a, ref) => {
2140
1726
  var _b = _a, { className, type } = _b, props = __objRest(_b, ["className", "type"]);
2141
1727
  return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
@@ -2154,7 +1740,7 @@ var Input = React16.forwardRef(
2154
1740
  Input.displayName = "Input";
2155
1741
 
2156
1742
  // src/components/ui/menubar.tsx
2157
- var React17 = __toESM(require("react"));
1743
+ var React16 = __toESM(require("react"));
2158
1744
  var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"));
2159
1745
  var import_lucide_react6 = require("lucide-react");
2160
1746
  var import_jsx_runtime18 = require("react/jsx-runtime");
@@ -2163,7 +1749,7 @@ var MenubarGroup = MenubarPrimitive.Group;
2163
1749
  var MenubarPortal = MenubarPrimitive.Portal;
2164
1750
  var MenubarSub = MenubarPrimitive.Sub;
2165
1751
  var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
2166
- var Menubar = React17.forwardRef((_a, ref) => {
1752
+ var Menubar = React16.forwardRef((_a, ref) => {
2167
1753
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2168
1754
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2169
1755
  MenubarPrimitive.Root,
@@ -2177,7 +1763,7 @@ var Menubar = React17.forwardRef((_a, ref) => {
2177
1763
  );
2178
1764
  });
2179
1765
  Menubar.displayName = MenubarPrimitive.Root.displayName;
2180
- var MenubarTrigger = React17.forwardRef((_a, ref) => {
1766
+ var MenubarTrigger = React16.forwardRef((_a, ref) => {
2181
1767
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2182
1768
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2183
1769
  MenubarPrimitive.Trigger,
@@ -2191,7 +1777,7 @@ var MenubarTrigger = React17.forwardRef((_a, ref) => {
2191
1777
  );
2192
1778
  });
2193
1779
  MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
2194
- var MenubarSubTrigger = React17.forwardRef((_a, ref) => {
1780
+ var MenubarSubTrigger = React16.forwardRef((_a, ref) => {
2195
1781
  var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
2196
1782
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2197
1783
  MenubarPrimitive.SubTrigger,
@@ -2211,7 +1797,7 @@ var MenubarSubTrigger = React17.forwardRef((_a, ref) => {
2211
1797
  );
2212
1798
  });
2213
1799
  MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
2214
- var MenubarSubContent = React17.forwardRef((_a, ref) => {
1800
+ var MenubarSubContent = React16.forwardRef((_a, ref) => {
2215
1801
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2216
1802
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2217
1803
  MenubarPrimitive.SubContent,
@@ -2225,7 +1811,7 @@ var MenubarSubContent = React17.forwardRef((_a, ref) => {
2225
1811
  );
2226
1812
  });
2227
1813
  MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
2228
- var MenubarContent = React17.forwardRef(
1814
+ var MenubarContent = React16.forwardRef(
2229
1815
  (_a, ref) => {
2230
1816
  var _b = _a, { className, align = "start", alignOffset = -4, sideOffset = 8 } = _b, props = __objRest(_b, ["className", "align", "alignOffset", "sideOffset"]);
2231
1817
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
@@ -2244,7 +1830,7 @@ var MenubarContent = React17.forwardRef(
2244
1830
  }
2245
1831
  );
2246
1832
  MenubarContent.displayName = MenubarPrimitive.Content.displayName;
2247
- var MenubarItem = React17.forwardRef((_a, ref) => {
1833
+ var MenubarItem = React16.forwardRef((_a, ref) => {
2248
1834
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
2249
1835
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2250
1836
  MenubarPrimitive.Item,
@@ -2259,7 +1845,7 @@ var MenubarItem = React17.forwardRef((_a, ref) => {
2259
1845
  );
2260
1846
  });
2261
1847
  MenubarItem.displayName = MenubarPrimitive.Item.displayName;
2262
- var MenubarCheckboxItem = React17.forwardRef((_a, ref) => {
1848
+ var MenubarCheckboxItem = React16.forwardRef((_a, ref) => {
2263
1849
  var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
2264
1850
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2265
1851
  MenubarPrimitive.CheckboxItem,
@@ -2279,7 +1865,7 @@ var MenubarCheckboxItem = React17.forwardRef((_a, ref) => {
2279
1865
  );
2280
1866
  });
2281
1867
  MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
2282
- var MenubarRadioItem = React17.forwardRef((_a, ref) => {
1868
+ var MenubarRadioItem = React16.forwardRef((_a, ref) => {
2283
1869
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2284
1870
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2285
1871
  MenubarPrimitive.RadioItem,
@@ -2298,7 +1884,7 @@ var MenubarRadioItem = React17.forwardRef((_a, ref) => {
2298
1884
  );
2299
1885
  });
2300
1886
  MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
2301
- var MenubarLabel = React17.forwardRef((_a, ref) => {
1887
+ var MenubarLabel = React16.forwardRef((_a, ref) => {
2302
1888
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
2303
1889
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2304
1890
  MenubarPrimitive.Label,
@@ -2313,7 +1899,7 @@ var MenubarLabel = React17.forwardRef((_a, ref) => {
2313
1899
  );
2314
1900
  });
2315
1901
  MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
2316
- var MenubarSeparator = React17.forwardRef((_a, ref) => {
1902
+ var MenubarSeparator = React16.forwardRef((_a, ref) => {
2317
1903
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2318
1904
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2319
1905
  MenubarPrimitive.Separator,
@@ -2343,12 +1929,12 @@ var MenubarShortcut = (_a) => {
2343
1929
  MenubarShortcut.displayname = "MenubarShortcut";
2344
1930
 
2345
1931
  // src/components/ui/navigation-menu.tsx
2346
- var React18 = __toESM(require("react"));
1932
+ var React17 = __toESM(require("react"));
2347
1933
  var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"));
2348
1934
  var import_class_variance_authority5 = require("class-variance-authority");
2349
1935
  var import_lucide_react7 = require("lucide-react");
2350
1936
  var import_jsx_runtime19 = require("react/jsx-runtime");
2351
- var NavigationMenu = React18.forwardRef((_a, ref) => {
1937
+ var NavigationMenu = React17.forwardRef((_a, ref) => {
2352
1938
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2353
1939
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2354
1940
  NavigationMenuPrimitive.Root,
@@ -2367,7 +1953,7 @@ var NavigationMenu = React18.forwardRef((_a, ref) => {
2367
1953
  );
2368
1954
  });
2369
1955
  NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
2370
- var NavigationMenuList = React18.forwardRef((_a, ref) => {
1956
+ var NavigationMenuList = React17.forwardRef((_a, ref) => {
2371
1957
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2372
1958
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2373
1959
  NavigationMenuPrimitive.List,
@@ -2385,7 +1971,7 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
2385
1971
  var navigationMenuTriggerStyle = (0, import_class_variance_authority5.cva)(
2386
1972
  "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"
2387
1973
  );
2388
- var NavigationMenuTrigger = React18.forwardRef((_a, ref) => {
1974
+ var NavigationMenuTrigger = React17.forwardRef((_a, ref) => {
2389
1975
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2390
1976
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2391
1977
  NavigationMenuPrimitive.Trigger,
@@ -2408,7 +1994,7 @@ var NavigationMenuTrigger = React18.forwardRef((_a, ref) => {
2408
1994
  );
2409
1995
  });
2410
1996
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
2411
- var NavigationMenuContent = React18.forwardRef((_a, ref) => {
1997
+ var NavigationMenuContent = React17.forwardRef((_a, ref) => {
2412
1998
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2413
1999
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2414
2000
  NavigationMenuPrimitive.Content,
@@ -2423,7 +2009,7 @@ var NavigationMenuContent = React18.forwardRef((_a, ref) => {
2423
2009
  });
2424
2010
  NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
2425
2011
  var NavigationMenuLink = NavigationMenuPrimitive.Link;
2426
- var NavigationMenuViewport = React18.forwardRef((_a, ref) => {
2012
+ var NavigationMenuViewport = React17.forwardRef((_a, ref) => {
2427
2013
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2428
2014
  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)(
2429
2015
  NavigationMenuPrimitive.Viewport,
@@ -2437,7 +2023,7 @@ var NavigationMenuViewport = React18.forwardRef((_a, ref) => {
2437
2023
  ) });
2438
2024
  });
2439
2025
  NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
2440
- var NavigationMenuIndicator = React18.forwardRef((_a, ref) => {
2026
+ var NavigationMenuIndicator = React17.forwardRef((_a, ref) => {
2441
2027
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2442
2028
  return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2443
2029
  NavigationMenuPrimitive.Indicator,
@@ -2455,13 +2041,13 @@ var NavigationMenuIndicator = React18.forwardRef((_a, ref) => {
2455
2041
  NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
2456
2042
 
2457
2043
  // src/components/ui/popover.tsx
2458
- var React19 = __toESM(require("react"));
2044
+ var React18 = __toESM(require("react"));
2459
2045
  var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"));
2460
2046
  var import_jsx_runtime20 = require("react/jsx-runtime");
2461
2047
  var Popover = PopoverPrimitive.Root;
2462
2048
  var PopoverTrigger = PopoverPrimitive.Trigger;
2463
2049
  var PopoverAnchor = PopoverPrimitive.Anchor;
2464
- var PopoverContent = React19.forwardRef((_a, ref) => {
2050
+ var PopoverContent = React18.forwardRef((_a, ref) => {
2465
2051
  var _b = _a, { className, align = "center", sideOffset = 4 } = _b, props = __objRest(_b, ["className", "align", "sideOffset"]);
2466
2052
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2467
2053
  PopoverPrimitive.Content,
@@ -2479,10 +2065,10 @@ var PopoverContent = React19.forwardRef((_a, ref) => {
2479
2065
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
2480
2066
 
2481
2067
  // src/components/ui/progress.tsx
2482
- var React20 = __toESM(require("react"));
2068
+ var React19 = __toESM(require("react"));
2483
2069
  var ProgressPrimitive = __toESM(require("@radix-ui/react-progress"));
2484
2070
  var import_jsx_runtime21 = require("react/jsx-runtime");
2485
- var Progress = React20.forwardRef((_a, ref) => {
2071
+ var Progress = React19.forwardRef((_a, ref) => {
2486
2072
  var _b = _a, { className, value } = _b, props = __objRest(_b, ["className", "value"]);
2487
2073
  return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2488
2074
  ProgressPrimitive.Root,
@@ -2506,11 +2092,11 @@ var Progress = React20.forwardRef((_a, ref) => {
2506
2092
  Progress.displayName = ProgressPrimitive.Root.displayName;
2507
2093
 
2508
2094
  // src/components/ui/radio-group.tsx
2509
- var React21 = __toESM(require("react"));
2095
+ var React20 = __toESM(require("react"));
2510
2096
  var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"));
2511
2097
  var import_lucide_react8 = require("lucide-react");
2512
2098
  var import_jsx_runtime22 = require("react/jsx-runtime");
2513
- var RadioGroup4 = React21.forwardRef((_a, ref) => {
2099
+ var RadioGroup4 = React20.forwardRef((_a, ref) => {
2514
2100
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2515
2101
  return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2516
2102
  RadioGroupPrimitive.Root,
@@ -2522,7 +2108,7 @@ var RadioGroup4 = React21.forwardRef((_a, ref) => {
2522
2108
  );
2523
2109
  });
2524
2110
  RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
2525
- var RadioGroupItem = React21.forwardRef((_a, ref) => {
2111
+ var RadioGroupItem = React20.forwardRef((_a, ref) => {
2526
2112
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2527
2113
  return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2528
2114
  RadioGroupPrimitive.Item,
@@ -2540,10 +2126,10 @@ var RadioGroupItem = React21.forwardRef((_a, ref) => {
2540
2126
  RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
2541
2127
 
2542
2128
  // src/components/ui/scroll-area.tsx
2543
- var React22 = __toESM(require("react"));
2129
+ var React21 = __toESM(require("react"));
2544
2130
  var ScrollAreaPrimitive = __toESM(require("@radix-ui/react-scroll-area"));
2545
2131
  var import_jsx_runtime23 = require("react/jsx-runtime");
2546
- var ScrollArea = React22.forwardRef((_a, ref) => {
2132
+ var ScrollArea = React21.forwardRef((_a, ref) => {
2547
2133
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2548
2134
  return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
2549
2135
  ScrollAreaPrimitive.Root,
@@ -2560,7 +2146,7 @@ var ScrollArea = React22.forwardRef((_a, ref) => {
2560
2146
  );
2561
2147
  });
2562
2148
  ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
2563
- var ScrollBar = React22.forwardRef((_a, ref) => {
2149
+ var ScrollBar = React21.forwardRef((_a, ref) => {
2564
2150
  var _b = _a, { className, orientation = "vertical" } = _b, props = __objRest(_b, ["className", "orientation"]);
2565
2151
  return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2566
2152
  ScrollAreaPrimitive.ScrollAreaScrollbar,
@@ -2581,14 +2167,14 @@ var ScrollBar = React22.forwardRef((_a, ref) => {
2581
2167
  ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
2582
2168
 
2583
2169
  // src/components/ui/select.tsx
2584
- var React23 = __toESM(require("react"));
2170
+ var React22 = __toESM(require("react"));
2585
2171
  var SelectPrimitive = __toESM(require("@radix-ui/react-select"));
2586
2172
  var import_lucide_react9 = require("lucide-react");
2587
2173
  var import_jsx_runtime24 = require("react/jsx-runtime");
2588
2174
  var Select = SelectPrimitive.Root;
2589
2175
  var SelectGroup = SelectPrimitive.Group;
2590
2176
  var SelectValue = SelectPrimitive.Value;
2591
- var SelectTrigger = React23.forwardRef((_a, ref) => {
2177
+ var SelectTrigger = React22.forwardRef((_a, ref) => {
2592
2178
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2593
2179
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2594
2180
  SelectPrimitive.Trigger,
@@ -2607,7 +2193,7 @@ var SelectTrigger = React23.forwardRef((_a, ref) => {
2607
2193
  );
2608
2194
  });
2609
2195
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
2610
- var SelectContent = React23.forwardRef((_a, ref) => {
2196
+ var SelectContent = React22.forwardRef((_a, ref) => {
2611
2197
  var _b = _a, { className, children, position = "popper" } = _b, props = __objRest(_b, ["className", "children", "position"]);
2612
2198
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2613
2199
  SelectPrimitive.Content,
@@ -2634,7 +2220,7 @@ var SelectContent = React23.forwardRef((_a, ref) => {
2634
2220
  ) });
2635
2221
  });
2636
2222
  SelectContent.displayName = SelectPrimitive.Content.displayName;
2637
- var SelectLabel = React23.forwardRef((_a, ref) => {
2223
+ var SelectLabel = React22.forwardRef((_a, ref) => {
2638
2224
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2639
2225
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2640
2226
  SelectPrimitive.Label,
@@ -2645,7 +2231,7 @@ var SelectLabel = React23.forwardRef((_a, ref) => {
2645
2231
  );
2646
2232
  });
2647
2233
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
2648
- var SelectItem = React23.forwardRef((_a, ref) => {
2234
+ var SelectItem = React22.forwardRef((_a, ref) => {
2649
2235
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
2650
2236
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2651
2237
  SelectPrimitive.Item,
@@ -2664,7 +2250,7 @@ var SelectItem = React23.forwardRef((_a, ref) => {
2664
2250
  );
2665
2251
  });
2666
2252
  SelectItem.displayName = SelectPrimitive.Item.displayName;
2667
- var SelectSeparator = React23.forwardRef((_a, ref) => {
2253
+ var SelectSeparator = React22.forwardRef((_a, ref) => {
2668
2254
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2669
2255
  return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2670
2256
  SelectPrimitive.Separator,
@@ -2677,10 +2263,10 @@ var SelectSeparator = React23.forwardRef((_a, ref) => {
2677
2263
  SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
2678
2264
 
2679
2265
  // src/components/ui/separator.tsx
2680
- var React24 = __toESM(require("react"));
2266
+ var React23 = __toESM(require("react"));
2681
2267
  var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"));
2682
2268
  var import_jsx_runtime25 = require("react/jsx-runtime");
2683
- var Separator5 = React24.forwardRef(
2269
+ var Separator5 = React23.forwardRef(
2684
2270
  (_a, ref) => {
2685
2271
  var _b = _a, { className, orientation = "horizontal", decorative = true } = _b, props = __objRest(_b, ["className", "orientation", "decorative"]);
2686
2272
  return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
@@ -2701,7 +2287,7 @@ var Separator5 = React24.forwardRef(
2701
2287
  Separator5.displayName = SeparatorPrimitive.Root.displayName;
2702
2288
 
2703
2289
  // src/components/ui/sheet.tsx
2704
- var React25 = __toESM(require("react"));
2290
+ var React24 = __toESM(require("react"));
2705
2291
  var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"));
2706
2292
  var import_react_icons3 = require("@radix-ui/react-icons");
2707
2293
  var import_class_variance_authority6 = require("class-variance-authority");
@@ -2710,7 +2296,7 @@ var Sheet = SheetPrimitive.Root;
2710
2296
  var SheetTrigger = SheetPrimitive.Trigger;
2711
2297
  var SheetClose = SheetPrimitive.Close;
2712
2298
  var SheetPortal = SheetPrimitive.Portal;
2713
- var SheetOverlay = React25.forwardRef((_a, ref) => {
2299
+ var SheetOverlay = React24.forwardRef((_a, ref) => {
2714
2300
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2715
2301
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2716
2302
  SheetPrimitive.Overlay,
@@ -2741,7 +2327,7 @@ var sheetVariants = (0, import_class_variance_authority6.cva)(
2741
2327
  }
2742
2328
  }
2743
2329
  );
2744
- var SheetContent = React25.forwardRef((_a, ref) => {
2330
+ var SheetContent = React24.forwardRef((_a, ref) => {
2745
2331
  var _b = _a, { side = "right", className, children } = _b, props = __objRest(_b, ["side", "className", "children"]);
2746
2332
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(SheetPortal, { children: [
2747
2333
  /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(SheetOverlay, {}),
@@ -2797,7 +2383,7 @@ var SheetFooter = (_a) => {
2797
2383
  );
2798
2384
  };
2799
2385
  SheetFooter.displayName = "SheetFooter";
2800
- var SheetTitle = React25.forwardRef((_a, ref) => {
2386
+ var SheetTitle = React24.forwardRef((_a, ref) => {
2801
2387
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2802
2388
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2803
2389
  SheetPrimitive.Title,
@@ -2808,7 +2394,7 @@ var SheetTitle = React25.forwardRef((_a, ref) => {
2808
2394
  );
2809
2395
  });
2810
2396
  SheetTitle.displayName = SheetPrimitive.Title.displayName;
2811
- var SheetDescription = React25.forwardRef((_a, ref) => {
2397
+ var SheetDescription = React24.forwardRef((_a, ref) => {
2812
2398
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2813
2399
  return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2814
2400
  SheetPrimitive.Description,
@@ -2837,10 +2423,10 @@ function Skeleton(_a) {
2837
2423
  }
2838
2424
 
2839
2425
  // src/components/ui/slider.tsx
2840
- var React26 = __toESM(require("react"));
2426
+ var React25 = __toESM(require("react"));
2841
2427
  var SliderPrimitive = __toESM(require("@radix-ui/react-slider"));
2842
2428
  var import_jsx_runtime28 = require("react/jsx-runtime");
2843
- var Slider = React26.forwardRef((_a, ref) => {
2429
+ var Slider = React25.forwardRef((_a, ref) => {
2844
2430
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2845
2431
  const value = props.value || props.defaultValue;
2846
2432
  const thumbs = value && Array.isArray(value) ? value.length : 1;
@@ -2869,10 +2455,10 @@ var Slider = React26.forwardRef((_a, ref) => {
2869
2455
  Slider.displayName = SliderPrimitive.Root.displayName;
2870
2456
 
2871
2457
  // src/components/ui/switch.tsx
2872
- var React27 = __toESM(require("react"));
2458
+ var React26 = __toESM(require("react"));
2873
2459
  var SwitchPrimitives = __toESM(require("@radix-ui/react-switch"));
2874
2460
  var import_jsx_runtime29 = require("react/jsx-runtime");
2875
- var Switch = React27.forwardRef((_a, ref) => {
2461
+ var Switch = React26.forwardRef((_a, ref) => {
2876
2462
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2877
2463
  return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
2878
2464
  SwitchPrimitives.Root,
@@ -2897,9 +2483,9 @@ var Switch = React27.forwardRef((_a, ref) => {
2897
2483
  Switch.displayName = SwitchPrimitives.Root.displayName;
2898
2484
 
2899
2485
  // src/components/ui/table.tsx
2900
- var React28 = __toESM(require("react"));
2486
+ var React27 = __toESM(require("react"));
2901
2487
  var import_jsx_runtime30 = require("react/jsx-runtime");
2902
- var Table = React28.forwardRef((_a, ref) => {
2488
+ var Table = React27.forwardRef((_a, ref) => {
2903
2489
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2904
2490
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { className: "w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2905
2491
  "table",
@@ -2910,12 +2496,12 @@ var Table = React28.forwardRef((_a, ref) => {
2910
2496
  ) });
2911
2497
  });
2912
2498
  Table.displayName = "Table";
2913
- var TableHeader = React28.forwardRef((_a, ref) => {
2499
+ var TableHeader = React27.forwardRef((_a, ref) => {
2914
2500
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2915
2501
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("thead", __spreadValues({ ref, className: cn("[&_tr]:border-b", className) }, props));
2916
2502
  });
2917
2503
  TableHeader.displayName = "TableHeader";
2918
- var TableBody = React28.forwardRef((_a, ref) => {
2504
+ var TableBody = React27.forwardRef((_a, ref) => {
2919
2505
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2920
2506
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2921
2507
  "tbody",
@@ -2926,7 +2512,7 @@ var TableBody = React28.forwardRef((_a, ref) => {
2926
2512
  );
2927
2513
  });
2928
2514
  TableBody.displayName = "TableBody";
2929
- var TableFooter = React28.forwardRef((_a, ref) => {
2515
+ var TableFooter = React27.forwardRef((_a, ref) => {
2930
2516
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2931
2517
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2932
2518
  "tfoot",
@@ -2937,7 +2523,7 @@ var TableFooter = React28.forwardRef((_a, ref) => {
2937
2523
  );
2938
2524
  });
2939
2525
  TableFooter.displayName = "TableFooter";
2940
- var TableRow = React28.forwardRef((_a, ref) => {
2526
+ var TableRow = React27.forwardRef((_a, ref) => {
2941
2527
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2942
2528
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2943
2529
  "tr",
@@ -2951,7 +2537,7 @@ var TableRow = React28.forwardRef((_a, ref) => {
2951
2537
  );
2952
2538
  });
2953
2539
  TableRow.displayName = "TableRow";
2954
- var TableHead = React28.forwardRef((_a, ref) => {
2540
+ var TableHead = React27.forwardRef((_a, ref) => {
2955
2541
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2956
2542
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2957
2543
  "th",
@@ -2965,7 +2551,7 @@ var TableHead = React28.forwardRef((_a, ref) => {
2965
2551
  );
2966
2552
  });
2967
2553
  TableHead.displayName = "TableHead";
2968
- var TableCell = React28.forwardRef((_a, ref) => {
2554
+ var TableCell = React27.forwardRef((_a, ref) => {
2969
2555
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2970
2556
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2971
2557
  "td",
@@ -2976,7 +2562,7 @@ var TableCell = React28.forwardRef((_a, ref) => {
2976
2562
  );
2977
2563
  });
2978
2564
  TableCell.displayName = "TableCell";
2979
- var TableCaption = React28.forwardRef((_a, ref) => {
2565
+ var TableCaption = React27.forwardRef((_a, ref) => {
2980
2566
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2981
2567
  return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
2982
2568
  "caption",
@@ -2989,11 +2575,11 @@ var TableCaption = React28.forwardRef((_a, ref) => {
2989
2575
  TableCaption.displayName = "TableCaption";
2990
2576
 
2991
2577
  // src/components/ui/tabs.tsx
2992
- var React29 = __toESM(require("react"));
2578
+ var React28 = __toESM(require("react"));
2993
2579
  var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"));
2994
2580
  var import_jsx_runtime31 = require("react/jsx-runtime");
2995
2581
  var Tabs = TabsPrimitive.Root;
2996
- var TabsList = React29.forwardRef((_a, ref) => {
2582
+ var TabsList = React28.forwardRef((_a, ref) => {
2997
2583
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
2998
2584
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
2999
2585
  TabsPrimitive.List,
@@ -3007,7 +2593,7 @@ var TabsList = React29.forwardRef((_a, ref) => {
3007
2593
  );
3008
2594
  });
3009
2595
  TabsList.displayName = TabsPrimitive.List.displayName;
3010
- var TabsTrigger = React29.forwardRef((_a, ref) => {
2596
+ var TabsTrigger = React28.forwardRef((_a, ref) => {
3011
2597
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3012
2598
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3013
2599
  TabsPrimitive.Trigger,
@@ -3021,7 +2607,7 @@ var TabsTrigger = React29.forwardRef((_a, ref) => {
3021
2607
  );
3022
2608
  });
3023
2609
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
3024
- var TabsContent = React29.forwardRef((_a, ref) => {
2610
+ var TabsContent = React28.forwardRef((_a, ref) => {
3025
2611
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3026
2612
  return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3027
2613
  TabsPrimitive.Content,
@@ -3069,9 +2655,9 @@ var TagList = (props) => {
3069
2655
  var tag_list_default = TagList;
3070
2656
 
3071
2657
  // src/components/ui/textarea.tsx
3072
- var React30 = __toESM(require("react"));
2658
+ var React29 = __toESM(require("react"));
3073
2659
  var import_jsx_runtime34 = require("react/jsx-runtime");
3074
- var Textarea = React30.forwardRef(
2660
+ var Textarea = React29.forwardRef(
3075
2661
  (_a, ref) => {
3076
2662
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3077
2663
  return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
@@ -3089,13 +2675,13 @@ var Textarea = React30.forwardRef(
3089
2675
  Textarea.displayName = "Textarea";
3090
2676
 
3091
2677
  // src/components/ui/toast.tsx
3092
- var React31 = __toESM(require("react"));
2678
+ var React30 = __toESM(require("react"));
3093
2679
  var ToastPrimitives = __toESM(require("@radix-ui/react-toast"));
3094
2680
  var import_class_variance_authority7 = require("class-variance-authority");
3095
2681
  var import_lucide_react10 = require("lucide-react");
3096
2682
  var import_jsx_runtime35 = require("react/jsx-runtime");
3097
2683
  var ToastProvider = ToastPrimitives.Provider;
3098
- var ToastViewport = React31.forwardRef((_a, ref) => {
2684
+ var ToastViewport = React30.forwardRef((_a, ref) => {
3099
2685
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3100
2686
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3101
2687
  ToastPrimitives.Viewport,
@@ -3123,7 +2709,7 @@ var toastVariants = (0, import_class_variance_authority7.cva)(
3123
2709
  }
3124
2710
  }
3125
2711
  );
3126
- var Toast = React31.forwardRef((_a, ref) => {
2712
+ var Toast = React30.forwardRef((_a, ref) => {
3127
2713
  var _b = _a, { className, variant } = _b, props = __objRest(_b, ["className", "variant"]);
3128
2714
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3129
2715
  ToastPrimitives.Root,
@@ -3134,7 +2720,7 @@ var Toast = React31.forwardRef((_a, ref) => {
3134
2720
  );
3135
2721
  });
3136
2722
  Toast.displayName = ToastPrimitives.Root.displayName;
3137
- var ToastAction = React31.forwardRef((_a, ref) => {
2723
+ var ToastAction = React30.forwardRef((_a, ref) => {
3138
2724
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3139
2725
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3140
2726
  ToastPrimitives.Action,
@@ -3148,7 +2734,7 @@ var ToastAction = React31.forwardRef((_a, ref) => {
3148
2734
  );
3149
2735
  });
3150
2736
  ToastAction.displayName = ToastPrimitives.Action.displayName;
3151
- var ToastClose = React31.forwardRef((_a, ref) => {
2737
+ var ToastClose = React30.forwardRef((_a, ref) => {
3152
2738
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3153
2739
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3154
2740
  ToastPrimitives.Close,
@@ -3165,7 +2751,7 @@ var ToastClose = React31.forwardRef((_a, ref) => {
3165
2751
  );
3166
2752
  });
3167
2753
  ToastClose.displayName = ToastPrimitives.Close.displayName;
3168
- var ToastTitle = React31.forwardRef((_a, ref) => {
2754
+ var ToastTitle = React30.forwardRef((_a, ref) => {
3169
2755
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3170
2756
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3171
2757
  ToastPrimitives.Title,
@@ -3176,7 +2762,7 @@ var ToastTitle = React31.forwardRef((_a, ref) => {
3176
2762
  );
3177
2763
  });
3178
2764
  ToastTitle.displayName = ToastPrimitives.Title.displayName;
3179
- var ToastDescription = React31.forwardRef((_a, ref) => {
2765
+ var ToastDescription = React30.forwardRef((_a, ref) => {
3180
2766
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
3181
2767
  return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3182
2768
  ToastPrimitives.Description,
@@ -3189,7 +2775,7 @@ var ToastDescription = React31.forwardRef((_a, ref) => {
3189
2775
  ToastDescription.displayName = ToastPrimitives.Description.displayName;
3190
2776
 
3191
2777
  // src/components/ui/use-toast.ts
3192
- var React32 = __toESM(require("react"));
2778
+ var React31 = __toESM(require("react"));
3193
2779
  var TOAST_LIMIT = 1;
3194
2780
  var TOAST_REMOVE_DELAY = 1e6;
3195
2781
  var count = 0;
@@ -3284,8 +2870,8 @@ function toast(_a) {
3284
2870
  };
3285
2871
  }
3286
2872
  function useToast() {
3287
- const [state, setState] = React32.useState(memoryState);
3288
- React32.useEffect(() => {
2873
+ const [state, setState] = React31.useState(memoryState);
2874
+ React31.useEffect(() => {
3289
2875
  listeners.push(setState);
3290
2876
  return () => {
3291
2877
  const index = listeners.indexOf(setState);
@@ -3321,7 +2907,7 @@ function Toaster() {
3321
2907
  }
3322
2908
 
3323
2909
  // src/components/ui/toggle.tsx
3324
- var React33 = __toESM(require("react"));
2910
+ var React32 = __toESM(require("react"));
3325
2911
  var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"));
3326
2912
  var import_class_variance_authority8 = require("class-variance-authority");
3327
2913
  var import_jsx_runtime37 = require("react/jsx-runtime");
@@ -3345,7 +2931,7 @@ var toggleVariants = (0, import_class_variance_authority8.cva)(
3345
2931
  }
3346
2932
  }
3347
2933
  );
3348
- var Toggle = React33.forwardRef((_a, ref) => {
2934
+ var Toggle = React32.forwardRef((_a, ref) => {
3349
2935
  var _b = _a, { className, variant, size } = _b, props = __objRest(_b, ["className", "variant", "size"]);
3350
2936
  return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3351
2937
  TogglePrimitive.Root,
@@ -3358,13 +2944,13 @@ var Toggle = React33.forwardRef((_a, ref) => {
3358
2944
  Toggle.displayName = TogglePrimitive.Root.displayName;
3359
2945
 
3360
2946
  // src/components/ui/tooltip.tsx
3361
- var React34 = __toESM(require("react"));
2947
+ var React33 = __toESM(require("react"));
3362
2948
  var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"));
3363
2949
  var import_jsx_runtime38 = require("react/jsx-runtime");
3364
2950
  var TooltipProvider = TooltipPrimitive.Provider;
3365
2951
  var Tooltip = TooltipPrimitive.Root;
3366
2952
  var TooltipTrigger = TooltipPrimitive.Trigger;
3367
- var TooltipContent = React34.forwardRef((_a, ref) => {
2953
+ var TooltipContent = React33.forwardRef((_a, ref) => {
3368
2954
  var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
3369
2955
  return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3370
2956
  TooltipPrimitive.Content,
@@ -4375,7 +3961,7 @@ var UsersGroup = (_a) => {
4375
3961
 
4376
3962
  // src/components/Shared/CustomTable.tsx
4377
3963
  var import_react_table = require("@tanstack/react-table");
4378
- var import_react2 = require("react");
3964
+ var import_react = require("react");
4379
3965
 
4380
3966
  // src/components/Shared/Pagination.tsx
4381
3967
  var import_uuid = require("uuid");
@@ -4478,7 +4064,7 @@ var TableView = ({
4478
4064
  totalCount,
4479
4065
  pageSize
4480
4066
  }) => {
4481
- const renderHeader = (0, import_react2.useCallback)(() => {
4067
+ const renderHeader = (0, import_react.useCallback)(() => {
4482
4068
  const headerGroups = table.getHeaderGroups();
4483
4069
  return headerGroups.map((headerGroup) => {
4484
4070
  const headers = headerGroup.headers;
@@ -4498,7 +4084,7 @@ var TableView = ({
4498
4084
  }) }, headerGroup.id);
4499
4085
  });
4500
4086
  }, [table]);
4501
- const renderBody = (0, import_react2.useCallback)(() => {
4087
+ const renderBody = (0, import_react.useCallback)(() => {
4502
4088
  const rows = table.getRowModel().rows;
4503
4089
  return rows.map((row) => {
4504
4090
  const cells = row.getVisibleCells();
@@ -4571,13 +4157,13 @@ var Loader = () => {
4571
4157
  };
4572
4158
 
4573
4159
  // src/components/Shared/Search.tsx
4574
- var import_react6 = require("react");
4160
+ var import_react5 = require("react");
4575
4161
 
4576
4162
  // src/components/Shared/hooks/useDebounce.ts
4577
- var import_react3 = require("react");
4163
+ var import_react2 = require("react");
4578
4164
  var useDebounce = (value, delay = 800) => {
4579
- const [debouncedValue, setDebouncedValue] = (0, import_react3.useState)(value);
4580
- (0, import_react3.useEffect)(
4165
+ const [debouncedValue, setDebouncedValue] = (0, import_react2.useState)(value);
4166
+ (0, import_react2.useEffect)(
4581
4167
  () => {
4582
4168
  const handler = setTimeout(() => {
4583
4169
  setDebouncedValue(value);
@@ -4593,13 +4179,13 @@ var useDebounce = (value, delay = 800) => {
4593
4179
  };
4594
4180
 
4595
4181
  // src/components/Shared/Input.tsx
4596
- var import_react5 = require("react");
4182
+ var import_react4 = require("react");
4597
4183
 
4598
4184
  // src/components/Shared/Label.tsx
4599
- var import_react4 = require("react");
4185
+ var import_react3 = require("react");
4600
4186
  var LabelPrimitive2 = __toESM(require("@radix-ui/react-label"));
4601
4187
  var import_jsx_runtime83 = require("react/jsx-runtime");
4602
- var Label6 = (0, import_react4.forwardRef)((_a, ref) => {
4188
+ var Label6 = (0, import_react3.forwardRef)((_a, ref) => {
4603
4189
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4604
4190
  return /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
4605
4191
  LabelPrimitive2.Root,
@@ -4616,7 +4202,7 @@ Label6.displayName = LabelPrimitive2.Root.displayName;
4616
4202
 
4617
4203
  // src/components/Shared/Input.tsx
4618
4204
  var import_jsx_runtime84 = require("react/jsx-runtime");
4619
- var Input2 = (0, import_react5.forwardRef)(
4205
+ var Input2 = (0, import_react4.forwardRef)(
4620
4206
  (_a, ref) => {
4621
4207
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4622
4208
  const { label, errMessage, id } = props;
@@ -4641,10 +4227,10 @@ Input2.displayName = "Input";
4641
4227
  // src/components/Shared/Search.tsx
4642
4228
  var import_jsx_runtime85 = require("react/jsx-runtime");
4643
4229
  var SearchInput = ({ onUpdate, value }) => {
4644
- const [searchTerm, setSearchTerm] = (0, import_react6.useState)(value);
4645
- const ref = (0, import_react6.useRef)(null);
4230
+ const [searchTerm, setSearchTerm] = (0, import_react5.useState)(value);
4231
+ const ref = (0, import_react5.useRef)(null);
4646
4232
  const searchStr = useDebounce(searchTerm);
4647
- const onSearchEvent = (0, import_react6.useCallback)(
4233
+ const onSearchEvent = (0, import_react5.useCallback)(
4648
4234
  (e) => {
4649
4235
  const target = e.target;
4650
4236
  const { value: value2 } = target;
@@ -4655,10 +4241,10 @@ var SearchInput = ({ onUpdate, value }) => {
4655
4241
  },
4656
4242
  [onUpdate]
4657
4243
  );
4658
- (0, import_react6.useEffect)(() => {
4244
+ (0, import_react5.useEffect)(() => {
4659
4245
  if (searchStr) onUpdate(searchStr);
4660
4246
  }, [onUpdate, searchStr]);
4661
- (0, import_react6.useEffect)(() => {
4247
+ (0, import_react5.useEffect)(() => {
4662
4248
  var _a;
4663
4249
  if (value) {
4664
4250
  (_a = ref.current) == null ? void 0 : _a.focus();
@@ -4675,21 +4261,21 @@ var SearchInput = ({ onUpdate, value }) => {
4675
4261
  }
4676
4262
  ) });
4677
4263
  };
4678
- var Search2 = (0, import_react6.memo)(SearchInput);
4264
+ var Search2 = (0, import_react5.memo)(SearchInput);
4679
4265
 
4680
4266
  // src/components/Shared/ThemeChanger.tsx
4681
- var import_react8 = require("react");
4267
+ var import_react7 = require("react");
4682
4268
  var import_lucide_react13 = require("lucide-react");
4683
4269
 
4684
4270
  // src/components/Shared/DropdownMenu.tsx
4685
4271
  var DropdownMenuPrimitive2 = __toESM(require("@radix-ui/react-dropdown-menu"));
4686
4272
  var import_lucide_react12 = require("lucide-react");
4687
- var import_react7 = __toESM(require("react"));
4273
+ var import_react6 = __toESM(require("react"));
4688
4274
  var import_react_icons4 = require("@radix-ui/react-icons");
4689
4275
  var import_jsx_runtime86 = require("react/jsx-runtime");
4690
4276
  var DropdownMenu2 = DropdownMenuPrimitive2.Root;
4691
4277
  var DropdownMenuTrigger2 = DropdownMenuPrimitive2.Trigger;
4692
- var DropdownMenuSubTrigger2 = import_react7.default.forwardRef((_a, ref) => {
4278
+ var DropdownMenuSubTrigger2 = import_react6.default.forwardRef((_a, ref) => {
4693
4279
  var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
4694
4280
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4695
4281
  DropdownMenuPrimitive2.SubTrigger,
@@ -4709,7 +4295,7 @@ var DropdownMenuSubTrigger2 = import_react7.default.forwardRef((_a, ref) => {
4709
4295
  );
4710
4296
  });
4711
4297
  DropdownMenuSubTrigger2.displayName = DropdownMenuPrimitive2.SubTrigger.displayName;
4712
- var DropdownMenuSubContent2 = import_react7.default.forwardRef((_a, ref) => {
4298
+ var DropdownMenuSubContent2 = import_react6.default.forwardRef((_a, ref) => {
4713
4299
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4714
4300
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4715
4301
  DropdownMenuPrimitive2.SubContent,
@@ -4723,7 +4309,7 @@ var DropdownMenuSubContent2 = import_react7.default.forwardRef((_a, ref) => {
4723
4309
  );
4724
4310
  });
4725
4311
  DropdownMenuSubContent2.displayName = DropdownMenuPrimitive2.SubContent.displayName;
4726
- var DropdownMenuContent2 = import_react7.default.forwardRef((_a, ref) => {
4312
+ var DropdownMenuContent2 = import_react6.default.forwardRef((_a, ref) => {
4727
4313
  var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
4728
4314
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(DropdownMenuPrimitive2.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4729
4315
  DropdownMenuPrimitive2.Content,
@@ -4739,7 +4325,7 @@ var DropdownMenuContent2 = import_react7.default.forwardRef((_a, ref) => {
4739
4325
  ) });
4740
4326
  });
4741
4327
  DropdownMenuContent2.displayName = DropdownMenuPrimitive2.Content.displayName;
4742
- var DropdownMenuItem2 = import_react7.default.forwardRef((_a, ref) => {
4328
+ var DropdownMenuItem2 = import_react6.default.forwardRef((_a, ref) => {
4743
4329
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
4744
4330
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4745
4331
  DropdownMenuPrimitive2.Item,
@@ -4754,7 +4340,7 @@ var DropdownMenuItem2 = import_react7.default.forwardRef((_a, ref) => {
4754
4340
  );
4755
4341
  });
4756
4342
  DropdownMenuItem2.displayName = DropdownMenuPrimitive2.Item.displayName;
4757
- var DropdownMenuCheckboxItem2 = import_react7.default.forwardRef((_a, ref) => {
4343
+ var DropdownMenuCheckboxItem2 = import_react6.default.forwardRef((_a, ref) => {
4758
4344
  var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
4759
4345
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4760
4346
  DropdownMenuPrimitive2.CheckboxItem,
@@ -4774,7 +4360,7 @@ var DropdownMenuCheckboxItem2 = import_react7.default.forwardRef((_a, ref) => {
4774
4360
  );
4775
4361
  });
4776
4362
  DropdownMenuCheckboxItem2.displayName = DropdownMenuPrimitive2.CheckboxItem.displayName;
4777
- var DropdownMenuRadioItem2 = import_react7.default.forwardRef((_a, ref) => {
4363
+ var DropdownMenuRadioItem2 = import_react6.default.forwardRef((_a, ref) => {
4778
4364
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
4779
4365
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
4780
4366
  DropdownMenuPrimitive2.RadioItem,
@@ -4793,7 +4379,7 @@ var DropdownMenuRadioItem2 = import_react7.default.forwardRef((_a, ref) => {
4793
4379
  );
4794
4380
  });
4795
4381
  DropdownMenuRadioItem2.displayName = DropdownMenuPrimitive2.RadioItem.displayName;
4796
- var DropdownMenuLabel2 = import_react7.default.forwardRef((_a, ref) => {
4382
+ var DropdownMenuLabel2 = import_react6.default.forwardRef((_a, ref) => {
4797
4383
  var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
4798
4384
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4799
4385
  DropdownMenuPrimitive2.Label,
@@ -4808,7 +4394,7 @@ var DropdownMenuLabel2 = import_react7.default.forwardRef((_a, ref) => {
4808
4394
  );
4809
4395
  });
4810
4396
  DropdownMenuLabel2.displayName = DropdownMenuPrimitive2.Label.displayName;
4811
- var DropdownMenuSeparator2 = import_react7.default.forwardRef((_a, ref) => {
4397
+ var DropdownMenuSeparator2 = import_react6.default.forwardRef((_a, ref) => {
4812
4398
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
4813
4399
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
4814
4400
  DropdownMenuPrimitive2.Separator,
@@ -4838,8 +4424,8 @@ DropdownMenuShortcut2.displayName = "DropdownMenuShortcut";
4838
4424
  var import_jsx_runtime87 = require("react/jsx-runtime");
4839
4425
  var themes = ["light", "dark", "cupcake", "dracula"];
4840
4426
  var ThemeSwitcher = () => {
4841
- const [currTheme, setCurrTheme] = (0, import_react8.useState)("");
4842
- (0, import_react8.useEffect)(() => {
4427
+ const [currTheme, setCurrTheme] = (0, import_react7.useState)("");
4428
+ (0, import_react7.useEffect)(() => {
4843
4429
  const t = getCurrentSelectedTheme();
4844
4430
  setCurrTheme(t);
4845
4431
  document.documentElement.setAttribute("data-theme", t);
@@ -4933,6 +4519,7 @@ var OldCustomInput = (props) => {
4933
4519
  };
4934
4520
 
4935
4521
  // src/components/Input/MultiSelect.tsx
4522
+ var import_react_hook_form2 = require("react-hook-form");
4936
4523
  var import_react_select = __toESM(require("react-select"));
4937
4524
  var import_jsx_runtime89 = require("react/jsx-runtime");
4938
4525
  var MultiSelect = (props) => {
@@ -4945,7 +4532,7 @@ var MultiSelect = (props) => {
4945
4532
  };
4946
4533
  return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("div", { children: [
4947
4534
  /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
4948
- Controller,
4535
+ import_react_hook_form2.Controller,
4949
4536
  {
4950
4537
  control: props.control,
4951
4538
  rules: { required: props.isRequired },
@@ -5089,9 +4676,9 @@ var PrimaryButton = (props) => {
5089
4676
  };
5090
4677
 
5091
4678
  // src/components/DesignElements/typography.tsx
5092
- var import_react9 = require("react");
4679
+ var import_react8 = require("react");
5093
4680
  var import_jsx_runtime94 = require("react/jsx-runtime");
5094
- var LandingTitle = (0, import_react9.forwardRef)(
4681
+ var LandingTitle = (0, import_react8.forwardRef)(
5095
4682
  (_a, ref) => {
5096
4683
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5097
4684
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5107,7 +4694,7 @@ var LandingTitle = (0, import_react9.forwardRef)(
5107
4694
  }
5108
4695
  );
5109
4696
  LandingTitle.displayName = "LandingTitle";
5110
- var LandingTitleAccent = (0, import_react9.forwardRef)(
4697
+ var LandingTitleAccent = (0, import_react8.forwardRef)(
5111
4698
  (_a, ref) => {
5112
4699
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5113
4700
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5123,7 +4710,7 @@ var LandingTitleAccent = (0, import_react9.forwardRef)(
5123
4710
  }
5124
4711
  );
5125
4712
  LandingTitleAccent.displayName = "LandingTitleAccent";
5126
- var BigLandingTitle = (0, import_react9.forwardRef)(
4713
+ var BigLandingTitle = (0, import_react8.forwardRef)(
5127
4714
  (_a, ref) => {
5128
4715
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5129
4716
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5139,7 +4726,7 @@ var BigLandingTitle = (0, import_react9.forwardRef)(
5139
4726
  }
5140
4727
  );
5141
4728
  BigLandingTitle.displayName = "BigLandingTitle";
5142
- var BigLandingTitleAccent = (0, import_react9.forwardRef)(
4729
+ var BigLandingTitleAccent = (0, import_react8.forwardRef)(
5143
4730
  (_a, ref) => {
5144
4731
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5145
4732
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5155,7 +4742,7 @@ var BigLandingTitleAccent = (0, import_react9.forwardRef)(
5155
4742
  }
5156
4743
  );
5157
4744
  BigLandingTitleAccent.displayName = "BigLandingTitleAccent";
5158
- var H1Design = (0, import_react9.forwardRef)(
4745
+ var H1Design = (0, import_react8.forwardRef)(
5159
4746
  (_a, ref) => {
5160
4747
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5161
4748
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5171,7 +4758,7 @@ var H1Design = (0, import_react9.forwardRef)(
5171
4758
  }
5172
4759
  );
5173
4760
  H1Design.displayName = "H1Design";
5174
- var H1AccentDesign = (0, import_react9.forwardRef)(
4761
+ var H1AccentDesign = (0, import_react8.forwardRef)(
5175
4762
  (_a, ref) => {
5176
4763
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5177
4764
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5187,7 +4774,7 @@ var H1AccentDesign = (0, import_react9.forwardRef)(
5187
4774
  }
5188
4775
  );
5189
4776
  H1AccentDesign.displayName = "H1AccentDesign";
5190
- var H2Design = (0, import_react9.forwardRef)(
4777
+ var H2Design = (0, import_react8.forwardRef)(
5191
4778
  (_a, ref) => {
5192
4779
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5193
4780
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5203,7 +4790,7 @@ var H2Design = (0, import_react9.forwardRef)(
5203
4790
  }
5204
4791
  );
5205
4792
  H2Design.displayName = "H2Design";
5206
- var H2AccentDesign = (0, import_react9.forwardRef)(
4793
+ var H2AccentDesign = (0, import_react8.forwardRef)(
5207
4794
  (_a, ref) => {
5208
4795
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5209
4796
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5219,7 +4806,7 @@ var H2AccentDesign = (0, import_react9.forwardRef)(
5219
4806
  }
5220
4807
  );
5221
4808
  H2AccentDesign.displayName = "H2AccentDesign";
5222
- var H3Design = (0, import_react9.forwardRef)(
4809
+ var H3Design = (0, import_react8.forwardRef)(
5223
4810
  (_a, ref) => {
5224
4811
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5225
4812
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5235,7 +4822,7 @@ var H3Design = (0, import_react9.forwardRef)(
5235
4822
  }
5236
4823
  );
5237
4824
  H3Design.displayName = "H3Design";
5238
- var H4Design = (0, import_react9.forwardRef)(
4825
+ var H4Design = (0, import_react8.forwardRef)(
5239
4826
  (_a, ref) => {
5240
4827
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5241
4828
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5251,7 +4838,7 @@ var H4Design = (0, import_react9.forwardRef)(
5251
4838
  }
5252
4839
  );
5253
4840
  H4Design.displayName = "H4Design";
5254
- var H5Design = (0, import_react9.forwardRef)(
4841
+ var H5Design = (0, import_react8.forwardRef)(
5255
4842
  (_a, ref) => {
5256
4843
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5257
4844
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5267,7 +4854,7 @@ var H5Design = (0, import_react9.forwardRef)(
5267
4854
  }
5268
4855
  );
5269
4856
  H5Design.displayName = "H5Design";
5270
- var H6Design = (0, import_react9.forwardRef)(
4857
+ var H6Design = (0, import_react8.forwardRef)(
5271
4858
  (_a, ref) => {
5272
4859
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5273
4860
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5283,7 +4870,7 @@ var H6Design = (0, import_react9.forwardRef)(
5283
4870
  }
5284
4871
  );
5285
4872
  H6Design.displayName = "H6Design";
5286
- var H7Design = (0, import_react9.forwardRef)(
4873
+ var H7Design = (0, import_react8.forwardRef)(
5287
4874
  (_a, ref) => {
5288
4875
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5289
4876
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5299,7 +4886,7 @@ var H7Design = (0, import_react9.forwardRef)(
5299
4886
  }
5300
4887
  );
5301
4888
  H7Design.displayName = "H7Design";
5302
- var H8Design = (0, import_react9.forwardRef)(
4889
+ var H8Design = (0, import_react8.forwardRef)(
5303
4890
  (_a, ref) => {
5304
4891
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5305
4892
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5315,7 +4902,7 @@ var H8Design = (0, import_react9.forwardRef)(
5315
4902
  }
5316
4903
  );
5317
4904
  H8Design.displayName = "H8Design";
5318
- var H9Design = (0, import_react9.forwardRef)(
4905
+ var H9Design = (0, import_react8.forwardRef)(
5319
4906
  (_a, ref) => {
5320
4907
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5321
4908
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5331,7 +4918,7 @@ var H9Design = (0, import_react9.forwardRef)(
5331
4918
  }
5332
4919
  );
5333
4920
  H9Design.displayName = "H9Design";
5334
- var Caption = (0, import_react9.forwardRef)((_a, ref) => {
4921
+ var Caption = (0, import_react8.forwardRef)((_a, ref) => {
5335
4922
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5336
4923
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
5337
4924
  "p",
@@ -5342,7 +4929,7 @@ var Caption = (0, import_react9.forwardRef)((_a, ref) => {
5342
4929
  );
5343
4930
  });
5344
4931
  Caption.displayName = "Caption";
5345
- var Body20sb = (0, import_react9.forwardRef)(
4932
+ var Body20sb = (0, import_react8.forwardRef)(
5346
4933
  (_a, ref) => {
5347
4934
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5348
4935
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5355,7 +4942,7 @@ var Body20sb = (0, import_react9.forwardRef)(
5355
4942
  }
5356
4943
  );
5357
4944
  Body20sb.displayName = "Body20sb";
5358
- var Body20m = (0, import_react9.forwardRef)(
4945
+ var Body20m = (0, import_react8.forwardRef)(
5359
4946
  (_a, ref) => {
5360
4947
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5361
4948
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5371,7 +4958,7 @@ var Body20m = (0, import_react9.forwardRef)(
5371
4958
  }
5372
4959
  );
5373
4960
  Body20m.displayName = "Body20m";
5374
- var Body20 = (0, import_react9.forwardRef)(
4961
+ var Body20 = (0, import_react8.forwardRef)(
5375
4962
  (_a, ref) => {
5376
4963
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5377
4964
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5384,7 +4971,7 @@ var Body20 = (0, import_react9.forwardRef)(
5384
4971
  }
5385
4972
  );
5386
4973
  Body20.displayName = "Body20";
5387
- var Body18sb = (0, import_react9.forwardRef)(
4974
+ var Body18sb = (0, import_react8.forwardRef)(
5388
4975
  (_a, ref) => {
5389
4976
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5390
4977
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5400,7 +4987,7 @@ var Body18sb = (0, import_react9.forwardRef)(
5400
4987
  }
5401
4988
  );
5402
4989
  Body18sb.displayName = "Body18sb";
5403
- var Body18m = (0, import_react9.forwardRef)(
4990
+ var Body18m = (0, import_react8.forwardRef)(
5404
4991
  (_a, ref) => {
5405
4992
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5406
4993
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5416,7 +5003,7 @@ var Body18m = (0, import_react9.forwardRef)(
5416
5003
  }
5417
5004
  );
5418
5005
  Body18m.displayName = "Body18m";
5419
- var Body18 = (0, import_react9.forwardRef)(
5006
+ var Body18 = (0, import_react8.forwardRef)(
5420
5007
  (_a, ref) => {
5421
5008
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5422
5009
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5429,7 +5016,7 @@ var Body18 = (0, import_react9.forwardRef)(
5429
5016
  }
5430
5017
  );
5431
5018
  Body18.displayName = "Body18";
5432
- var Body16sb = (0, import_react9.forwardRef)(
5019
+ var Body16sb = (0, import_react8.forwardRef)(
5433
5020
  (_a, ref) => {
5434
5021
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5435
5022
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5445,7 +5032,7 @@ var Body16sb = (0, import_react9.forwardRef)(
5445
5032
  }
5446
5033
  );
5447
5034
  Body16sb.displayName = "Body16sb";
5448
- var Body16m = (0, import_react9.forwardRef)(
5035
+ var Body16m = (0, import_react8.forwardRef)(
5449
5036
  (_a, ref) => {
5450
5037
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5451
5038
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5461,7 +5048,7 @@ var Body16m = (0, import_react9.forwardRef)(
5461
5048
  }
5462
5049
  );
5463
5050
  Body16m.displayName = "Body16m";
5464
- var Body16 = (0, import_react9.forwardRef)(
5051
+ var Body16 = (0, import_react8.forwardRef)(
5465
5052
  (_a, ref) => {
5466
5053
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5467
5054
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5477,7 +5064,7 @@ var Body16 = (0, import_react9.forwardRef)(
5477
5064
  }
5478
5065
  );
5479
5066
  Body16.displayName = "Body16";
5480
- var Body16it = (0, import_react9.forwardRef)(
5067
+ var Body16it = (0, import_react8.forwardRef)(
5481
5068
  (_a, ref) => {
5482
5069
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5483
5070
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5490,7 +5077,7 @@ var Body16it = (0, import_react9.forwardRef)(
5490
5077
  }
5491
5078
  );
5492
5079
  Body16it.displayName = "Body16it";
5493
- var Body15sb = (0, import_react9.forwardRef)(
5080
+ var Body15sb = (0, import_react8.forwardRef)(
5494
5081
  (_a, ref) => {
5495
5082
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5496
5083
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5506,7 +5093,7 @@ var Body15sb = (0, import_react9.forwardRef)(
5506
5093
  }
5507
5094
  );
5508
5095
  Body15sb.displayName = "Body15sb";
5509
- var Body15m = (0, import_react9.forwardRef)(
5096
+ var Body15m = (0, import_react8.forwardRef)(
5510
5097
  (_a, ref) => {
5511
5098
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5512
5099
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5522,7 +5109,7 @@ var Body15m = (0, import_react9.forwardRef)(
5522
5109
  }
5523
5110
  );
5524
5111
  Body15m.displayName = "Body15m";
5525
- var Body15 = (0, import_react9.forwardRef)(
5112
+ var Body15 = (0, import_react8.forwardRef)(
5526
5113
  (_a, ref) => {
5527
5114
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5528
5115
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5535,7 +5122,7 @@ var Body15 = (0, import_react9.forwardRef)(
5535
5122
  }
5536
5123
  );
5537
5124
  Body15.displayName = "Body15";
5538
- var Body15it = (0, import_react9.forwardRef)(
5125
+ var Body15it = (0, import_react8.forwardRef)(
5539
5126
  (_a, ref) => {
5540
5127
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5541
5128
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5548,7 +5135,7 @@ var Body15it = (0, import_react9.forwardRef)(
5548
5135
  }
5549
5136
  );
5550
5137
  Body15it.displayName = "Body15it";
5551
- var Body14sb = (0, import_react9.forwardRef)(
5138
+ var Body14sb = (0, import_react8.forwardRef)(
5552
5139
  (_a, ref) => {
5553
5140
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5554
5141
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5561,7 +5148,7 @@ var Body14sb = (0, import_react9.forwardRef)(
5561
5148
  }
5562
5149
  );
5563
5150
  Body14sb.displayName = "Body14sb";
5564
- var Body14m = (0, import_react9.forwardRef)(
5151
+ var Body14m = (0, import_react8.forwardRef)(
5565
5152
  (_a, ref) => {
5566
5153
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5567
5154
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5574,7 +5161,7 @@ var Body14m = (0, import_react9.forwardRef)(
5574
5161
  }
5575
5162
  );
5576
5163
  Body14m.displayName = "Body14m";
5577
- var Body14 = (0, import_react9.forwardRef)(
5164
+ var Body14 = (0, import_react8.forwardRef)(
5578
5165
  (_a, ref) => {
5579
5166
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5580
5167
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5587,7 +5174,7 @@ var Body14 = (0, import_react9.forwardRef)(
5587
5174
  }
5588
5175
  );
5589
5176
  Body14.displayName = "Body14";
5590
- var Body12sb = (0, import_react9.forwardRef)(
5177
+ var Body12sb = (0, import_react8.forwardRef)(
5591
5178
  (_a, ref) => {
5592
5179
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5593
5180
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5600,7 +5187,7 @@ var Body12sb = (0, import_react9.forwardRef)(
5600
5187
  }
5601
5188
  );
5602
5189
  Body12sb.displayName = "Body12sb";
5603
- var Body12m = (0, import_react9.forwardRef)(
5190
+ var Body12m = (0, import_react8.forwardRef)(
5604
5191
  (_a, ref) => {
5605
5192
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5606
5193
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5613,7 +5200,7 @@ var Body12m = (0, import_react9.forwardRef)(
5613
5200
  }
5614
5201
  );
5615
5202
  Body12m.displayName = "Body12m";
5616
- var Body12 = (0, import_react9.forwardRef)(
5203
+ var Body12 = (0, import_react8.forwardRef)(
5617
5204
  (_a, ref) => {
5618
5205
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5619
5206
  return /* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
@@ -5637,16 +5224,16 @@ var AboutInfoItem = ({ title, description }) => {
5637
5224
  };
5638
5225
 
5639
5226
  // src/components/DesignElements/breadcrumb.tsx
5640
- var React36 = __toESM(require("react"));
5227
+ var React35 = __toESM(require("react"));
5641
5228
  var import_react_icons5 = require("@radix-ui/react-icons");
5642
5229
  var import_react_slot3 = require("@radix-ui/react-slot");
5643
5230
  var import_jsx_runtime96 = require("react/jsx-runtime");
5644
- var Breadcrumb = React36.forwardRef((_a, ref) => {
5231
+ var Breadcrumb = React35.forwardRef((_a, ref) => {
5645
5232
  var props = __objRest(_a, []);
5646
5233
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("nav", __spreadValues({ ref, "aria-label": "breadcrumb" }, props));
5647
5234
  });
5648
5235
  Breadcrumb.displayName = "Breadcrumb";
5649
- var BreadcrumbList = React36.forwardRef((_a, ref) => {
5236
+ var BreadcrumbList = React35.forwardRef((_a, ref) => {
5650
5237
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5651
5238
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5652
5239
  "ol",
@@ -5660,7 +5247,7 @@ var BreadcrumbList = React36.forwardRef((_a, ref) => {
5660
5247
  );
5661
5248
  });
5662
5249
  BreadcrumbList.displayName = "BreadcrumbList";
5663
- var BreadcrumbItem = React36.forwardRef((_a, ref) => {
5250
+ var BreadcrumbItem = React35.forwardRef((_a, ref) => {
5664
5251
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5665
5252
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5666
5253
  "li",
@@ -5671,7 +5258,7 @@ var BreadcrumbItem = React36.forwardRef((_a, ref) => {
5671
5258
  );
5672
5259
  });
5673
5260
  BreadcrumbItem.displayName = "BreadcrumbItem";
5674
- var BreadcrumbLink = React36.forwardRef((_a, ref) => {
5261
+ var BreadcrumbLink = React35.forwardRef((_a, ref) => {
5675
5262
  var _b = _a, { asChild, className } = _b, props = __objRest(_b, ["asChild", "className"]);
5676
5263
  const Comp = asChild ? import_react_slot3.Slot : "a";
5677
5264
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
@@ -5683,7 +5270,7 @@ var BreadcrumbLink = React36.forwardRef((_a, ref) => {
5683
5270
  );
5684
5271
  });
5685
5272
  BreadcrumbLink.displayName = "BreadcrumbLink";
5686
- var BreadcrumbPage = React36.forwardRef((_a, ref) => {
5273
+ var BreadcrumbPage = React35.forwardRef((_a, ref) => {
5687
5274
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5688
5275
  return /* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
5689
5276
  "span",
@@ -5741,7 +5328,7 @@ BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
5741
5328
 
5742
5329
  // src/components/DesignElements/button.tsx
5743
5330
  var import_react_slot4 = require("@radix-ui/react-slot");
5744
- var import_react10 = __toESM(require("react"));
5331
+ var import_react9 = __toESM(require("react"));
5745
5332
  var import_class_variance_authority9 = require("class-variance-authority");
5746
5333
  var import_jsx_runtime97 = require("react/jsx-runtime");
5747
5334
  var designButtonVariants = (0, import_class_variance_authority9.cva)(
@@ -5770,7 +5357,7 @@ var designButtonVariants = (0, import_class_variance_authority9.cva)(
5770
5357
  }
5771
5358
  }
5772
5359
  );
5773
- var DesignButton = import_react10.default.forwardRef(
5360
+ var DesignButton = import_react9.default.forwardRef(
5774
5361
  (_a, ref) => {
5775
5362
  var _b = _a, {
5776
5363
  className,
@@ -5832,19 +5419,19 @@ var DesignButton = import_react10.default.forwardRef(
5832
5419
  DesignButton.displayName = "DesignButton";
5833
5420
 
5834
5421
  // src/components/DesignElements/carousel.tsx
5835
- var React38 = __toESM(require("react"));
5422
+ var React37 = __toESM(require("react"));
5836
5423
  var import_embla_carousel_react = __toESM(require("embla-carousel-react"));
5837
5424
  var import_lucide_react14 = require("lucide-react");
5838
5425
  var import_jsx_runtime98 = require("react/jsx-runtime");
5839
- var CarouselContext = React38.createContext(null);
5426
+ var CarouselContext = React37.createContext(null);
5840
5427
  function useCarousel() {
5841
- const context = React38.useContext(CarouselContext);
5428
+ const context = React37.useContext(CarouselContext);
5842
5429
  if (!context) {
5843
5430
  throw new Error("useCarousel must be used within a <Carousel />");
5844
5431
  }
5845
5432
  return context;
5846
5433
  }
5847
- var Carousel = React38.forwardRef(
5434
+ var Carousel = React37.forwardRef(
5848
5435
  (_a, ref) => {
5849
5436
  var _b = _a, {
5850
5437
  orientation = "horizontal",
@@ -5870,22 +5457,22 @@ var Carousel = React38.forwardRef(
5870
5457
  }),
5871
5458
  plugins
5872
5459
  );
5873
- const [canScrollPrev, setCanScrollPrev] = React38.useState(false);
5874
- const [canScrollNext, setCanScrollNext] = React38.useState(false);
5875
- const onSelect = React38.useCallback((api2) => {
5460
+ const [canScrollPrev, setCanScrollPrev] = React37.useState(false);
5461
+ const [canScrollNext, setCanScrollNext] = React37.useState(false);
5462
+ const onSelect = React37.useCallback((api2) => {
5876
5463
  if (!api2) {
5877
5464
  return;
5878
5465
  }
5879
5466
  setCanScrollPrev(api2.canScrollPrev());
5880
5467
  setCanScrollNext(api2.canScrollNext());
5881
5468
  }, []);
5882
- const scrollPrev = React38.useCallback(() => {
5469
+ const scrollPrev = React37.useCallback(() => {
5883
5470
  api == null ? void 0 : api.scrollPrev();
5884
5471
  }, [api]);
5885
- const scrollNext = React38.useCallback(() => {
5472
+ const scrollNext = React37.useCallback(() => {
5886
5473
  api == null ? void 0 : api.scrollNext();
5887
5474
  }, [api]);
5888
- const handleKeyDown = React38.useCallback(
5475
+ const handleKeyDown = React37.useCallback(
5889
5476
  (event) => {
5890
5477
  if (event.key === "ArrowLeft") {
5891
5478
  event.preventDefault();
@@ -5897,13 +5484,13 @@ var Carousel = React38.forwardRef(
5897
5484
  },
5898
5485
  [scrollPrev, scrollNext]
5899
5486
  );
5900
- React38.useEffect(() => {
5487
+ React37.useEffect(() => {
5901
5488
  if (!api || !setApi) {
5902
5489
  return;
5903
5490
  }
5904
5491
  setApi(api);
5905
5492
  }, [api, setApi]);
5906
- React38.useEffect(() => {
5493
+ React37.useEffect(() => {
5907
5494
  if (!api) {
5908
5495
  return;
5909
5496
  }
@@ -5945,7 +5532,7 @@ var Carousel = React38.forwardRef(
5945
5532
  }
5946
5533
  );
5947
5534
  Carousel.displayName = "Carousel";
5948
- var CarouselContent = React38.forwardRef((_a, ref) => {
5535
+ var CarouselContent = React37.forwardRef((_a, ref) => {
5949
5536
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5950
5537
  const { carouselRef, orientation } = useCarousel();
5951
5538
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
@@ -5961,7 +5548,7 @@ var CarouselContent = React38.forwardRef((_a, ref) => {
5961
5548
  ) });
5962
5549
  });
5963
5550
  CarouselContent.displayName = "CarouselContent";
5964
- var CarouselItem = React38.forwardRef((_a, ref) => {
5551
+ var CarouselItem = React37.forwardRef((_a, ref) => {
5965
5552
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5966
5553
  const { orientation } = useCarousel();
5967
5554
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
@@ -5979,7 +5566,7 @@ var CarouselItem = React38.forwardRef((_a, ref) => {
5979
5566
  );
5980
5567
  });
5981
5568
  CarouselItem.displayName = "CarouselItem";
5982
- var CarouselPrevious = React38.forwardRef((_a, ref) => {
5569
+ var CarouselPrevious = React37.forwardRef((_a, ref) => {
5983
5570
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
5984
5571
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
5985
5572
  return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
@@ -6002,7 +5589,7 @@ var CarouselPrevious = React38.forwardRef((_a, ref) => {
6002
5589
  );
6003
5590
  });
6004
5591
  CarouselPrevious.displayName = "CarouselPrevious";
6005
- var CarouselNext = React38.forwardRef(
5592
+ var CarouselNext = React37.forwardRef(
6006
5593
  (_a, ref) => {
6007
5594
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6008
5595
  const { orientation, scrollNext, canScrollNext } = useCarousel();
@@ -6029,11 +5616,11 @@ var CarouselNext = React38.forwardRef(
6029
5616
  CarouselNext.displayName = "CarouselNext";
6030
5617
 
6031
5618
  // src/components/DesignElements/checkbox.tsx
6032
- var React39 = __toESM(require("react"));
5619
+ var React38 = __toESM(require("react"));
6033
5620
  var CheckboxPrimitive2 = __toESM(require("@radix-ui/react-checkbox"));
6034
5621
  var import_lucide_react15 = require("lucide-react");
6035
5622
  var import_jsx_runtime99 = require("react/jsx-runtime");
6036
- var Checkbox2 = React39.forwardRef((_a, ref) => {
5623
+ var Checkbox2 = React38.forwardRef((_a, ref) => {
6037
5624
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6038
5625
  return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
6039
5626
  CheckboxPrimitive2.Root,
@@ -6057,11 +5644,11 @@ var Checkbox2 = React39.forwardRef((_a, ref) => {
6057
5644
  Checkbox2.displayName = CheckboxPrimitive2.Root.displayName;
6058
5645
 
6059
5646
  // src/components/DesignElements/cookies.tsx
6060
- var import_react11 = require("react");
5647
+ var import_react10 = require("react");
6061
5648
  var import_lucide_react16 = require("lucide-react");
6062
5649
  var import_jsx_runtime100 = require("react/jsx-runtime");
6063
5650
  var Cookies = ({ handleAccept, handleDecline }) => {
6064
- const [isOpen, setIsOpen] = (0, import_react11.useState)(true);
5651
+ const [isOpen, setIsOpen] = (0, import_react10.useState)(true);
6065
5652
  const handleClose = () => {
6066
5653
  setIsOpen(false);
6067
5654
  };
@@ -6159,7 +5746,7 @@ var InfoBox = ({ title, text }) => {
6159
5746
  };
6160
5747
 
6161
5748
  // src/components/DesignElements/input.tsx
6162
- var React40 = __toESM(require("react"));
5749
+ var React39 = __toESM(require("react"));
6163
5750
  var import_class_variance_authority10 = require("class-variance-authority");
6164
5751
  var import_jsx_runtime103 = require("react/jsx-runtime");
6165
5752
  var designInputVariants = (0, import_class_variance_authority10.cva)(
@@ -6177,7 +5764,7 @@ var designInputVariants = (0, import_class_variance_authority10.cva)(
6177
5764
  }
6178
5765
  }
6179
5766
  );
6180
- var DesignInput = React40.forwardRef(
5767
+ var DesignInput = React39.forwardRef(
6181
5768
  (_a, ref) => {
6182
5769
  var _b = _a, { className, type, variant } = _b, props = __objRest(_b, ["className", "type", "variant"]);
6183
5770
  return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)("div", { className: "relative", children: [
@@ -6263,11 +5850,11 @@ var NoResults = () => {
6263
5850
  };
6264
5851
 
6265
5852
  // src/components/DesignElements/radio-group.tsx
6266
- var React41 = __toESM(require("react"));
5853
+ var React40 = __toESM(require("react"));
6267
5854
  var RadioGroupPrimitive2 = __toESM(require("@radix-ui/react-radio-group"));
6268
5855
  var import_lucide_react17 = require("lucide-react");
6269
5856
  var import_jsx_runtime107 = require("react/jsx-runtime");
6270
- var DesignRadioGroup = React41.forwardRef((_a, ref) => {
5857
+ var DesignRadioGroup = React40.forwardRef((_a, ref) => {
6271
5858
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6272
5859
  return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
6273
5860
  RadioGroupPrimitive2.Root,
@@ -6279,7 +5866,7 @@ var DesignRadioGroup = React41.forwardRef((_a, ref) => {
6279
5866
  );
6280
5867
  });
6281
5868
  DesignRadioGroup.displayName = RadioGroupPrimitive2.Root.displayName;
6282
- var DesignRadioGroupItem = React41.forwardRef((_a, ref) => {
5869
+ var DesignRadioGroupItem = React40.forwardRef((_a, ref) => {
6283
5870
  var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
6284
5871
  return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
6285
5872
  RadioGroupPrimitive2.Item,
@@ -6479,10 +6066,10 @@ var DesignSimpleTag = ({
6479
6066
  };
6480
6067
 
6481
6068
  // src/components/DesignElements/switch.tsx
6482
- var React42 = __toESM(require("react"));
6069
+ var React41 = __toESM(require("react"));
6483
6070
  var SwitchPrimitives2 = __toESM(require("@radix-ui/react-switch"));
6484
6071
  var import_jsx_runtime110 = require("react/jsx-runtime");
6485
- var DesignSwitch = React42.forwardRef((_a, ref) => {
6072
+ var DesignSwitch = React41.forwardRef((_a, ref) => {
6486
6073
  var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
6487
6074
  return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
6488
6075
  SwitchPrimitives2.Root,
@@ -6508,11 +6095,11 @@ var DesignSwitch = React42.forwardRef((_a, ref) => {
6508
6095
  DesignSwitch.displayName = SwitchPrimitives2.Root.displayName;
6509
6096
 
6510
6097
  // src/components/DesignElements/tag.tsx
6511
- var import_react12 = require("react");
6098
+ var import_react11 = require("react");
6512
6099
  var import_lucide_react19 = require("lucide-react");
6513
6100
  var import_jsx_runtime111 = require("react/jsx-runtime");
6514
6101
  var DesignResultTag = ({ tag, name }) => {
6515
- const [isOpen, setIsOpen] = (0, import_react12.useState)(true);
6102
+ const [isOpen, setIsOpen] = (0, import_react11.useState)(true);
6516
6103
  const handleClose = () => {
6517
6104
  setIsOpen(false);
6518
6105
  };
@@ -6563,8 +6150,8 @@ var ResourceTag = ({ tag, type }) => {
6563
6150
  };
6564
6151
 
6565
6152
  // src/components/DesignElements/Notification.tsx
6566
- var import_react13 = require("@headlessui/react");
6567
- var import_react14 = require("react");
6153
+ var import_react12 = require("@headlessui/react");
6154
+ var import_react13 = require("react");
6568
6155
  var import_outline = require("@heroicons/react/24/outline");
6569
6156
  var import_jsx_runtime113 = require("react/jsx-runtime");
6570
6157
  var Notification = ({
@@ -6574,11 +6161,11 @@ var Notification = ({
6574
6161
  setOpen,
6575
6162
  icon
6576
6163
  }) => {
6577
- 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: [
6164
+ 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: [
6578
6165
  /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
6579
- import_react13.Transition.Child,
6166
+ import_react12.Transition.Child,
6580
6167
  {
6581
- as: import_react14.Fragment,
6168
+ as: import_react13.Fragment,
6582
6169
  enter: "ease-out duration-300",
6583
6170
  enterFrom: "opacity-0",
6584
6171
  enterTo: "opacity-100",
@@ -6589,16 +6176,16 @@ var Notification = ({
6589
6176
  }
6590
6177
  ),
6591
6178
  /* @__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)(
6592
- import_react13.Transition.Child,
6179
+ import_react12.Transition.Child,
6593
6180
  {
6594
- as: import_react14.Fragment,
6181
+ as: import_react13.Fragment,
6595
6182
  enter: "ease-out duration-300",
6596
6183
  enterFrom: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
6597
6184
  enterTo: "opacity-100 translate-y-0 sm:scale-100",
6598
6185
  leave: "ease-in duration-200",
6599
6186
  leaveFrom: "opacity-100 translate-y-0 sm:scale-100",
6600
6187
  leaveTo: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
6601
- 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: [
6188
+ 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: [
6602
6189
  /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("div", { className: "absolute top-0 right-0 pt-10 pr-10", children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
6603
6190
  "button",
6604
6191
  {
@@ -6729,11 +6316,11 @@ var ThreeColumn = ({ tag, content, TagClassName }) => {
6729
6316
  };
6730
6317
 
6731
6318
  // src/components/DesignElements/VersionDisplay.tsx
6732
- var import_react15 = require("react");
6319
+ var import_react14 = require("react");
6733
6320
  var import_jsx_runtime118 = require("react/jsx-runtime");
6734
6321
  var VersionDisplay = () => {
6735
- const [version, setVersion] = (0, import_react15.useState)();
6736
- (0, import_react15.useEffect)(() => {
6322
+ const [version, setVersion] = (0, import_react14.useState)();
6323
+ (0, import_react14.useEffect)(() => {
6737
6324
  fetch("/version.json").then((res) => {
6738
6325
  if (!res.ok) throw new Error("Version file not found");
6739
6326
  return res.json();
@@ -6747,8 +6334,8 @@ var VersionDisplay = () => {
6747
6334
  };
6748
6335
 
6749
6336
  // src/components/DesignElements/header.tsx
6750
- var import_react16 = require("react");
6751
- var import_react17 = require("@headlessui/react");
6337
+ var import_react15 = require("react");
6338
+ var import_react16 = require("@headlessui/react");
6752
6339
  var import_outline2 = require("@heroicons/react/24/outline");
6753
6340
  var import_solid2 = require("@heroicons/react/20/solid");
6754
6341
  var import_core3 = require("@geowiki/core");
@@ -6841,8 +6428,8 @@ var DesignHeader = ({
6841
6428
  privacy_policy_url,
6842
6429
  mobile_menu_color
6843
6430
  }) => {
6844
- const [mobileMenuOpen, setMobileMenuOpen] = (0, import_react16.useState)(false);
6845
- const [openNotification, setOpenNotification] = (0, import_react16.useState)(false);
6431
+ const [mobileMenuOpen, setMobileMenuOpen] = (0, import_react15.useState)(false);
6432
+ const [openNotification, setOpenNotification] = (0, import_react15.useState)(false);
6846
6433
  let rootPath = "/";
6847
6434
  if (rootUrl) {
6848
6435
  rootPath = rootUrl != null ? rootUrl : "/";
@@ -6922,9 +6509,9 @@ var DesignHeader = ({
6922
6509
  }
6923
6510
  )
6924
6511
  ] }) }),
6925
- /* @__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(
6926
- (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover, { children: [
6927
- /* @__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: [
6512
+ /* @__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(
6513
+ (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover, { children: [
6514
+ /* @__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: [
6928
6515
  menuItem.text,
6929
6516
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
6930
6517
  import_solid2.ChevronDownIcon,
@@ -6934,7 +6521,7 @@ var DesignHeader = ({
6934
6521
  }
6935
6522
  )
6936
6523
  ] }),
6937
- /* @__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)(
6524
+ /* @__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)(
6938
6525
  "div",
6939
6526
  {
6940
6527
  className: "group relative flex rounded-lg text-sm leading-tight",
@@ -7003,7 +6590,7 @@ var DesignHeader = ({
7003
6590
  }
7004
6591
  ) }),
7005
6592
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
7006
- import_react17.Dialog,
6593
+ import_react16.Dialog,
7007
6594
  {
7008
6595
  as: "div",
7009
6596
  className: "lg:hidden",
@@ -7011,7 +6598,7 @@ var DesignHeader = ({
7011
6598
  onClose: setMobileMenuOpen,
7012
6599
  children: [
7013
6600
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "fixed inset-0 z-10" }),
7014
- /* @__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: [
6601
+ /* @__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: [
7015
6602
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center justify-between p-4", children: [
7016
6603
  /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_core3.Link, { href: rootPath, className: "flex-shrink-0", children: [
7017
6604
  /* @__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 }),
@@ -7057,8 +6644,8 @@ var DesignHeader = ({
7057
6644
  }
7058
6645
  ) }),
7059
6646
  mainMenu.map(
7060
- (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react17.Popover, { className: "relative", children: [
7061
- /* @__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: [
6647
+ (menuItem) => menuItem.subMenu ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react16.Popover, { className: "relative", children: [
6648
+ /* @__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: [
7062
6649
  menuItem.text,
7063
6650
  /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
7064
6651
  import_solid2.ChevronDownIcon,
@@ -7068,7 +6655,7 @@ var DesignHeader = ({
7068
6655
  }
7069
6656
  )
7070
6657
  ] }),
7071
- /* @__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)(
6658
+ /* @__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)(
7072
6659
  import_core3.Link,
7073
6660
  {
7074
6661
  href: subItem.link,
@@ -7221,12 +6808,12 @@ var HtmlView = (props) => {
7221
6808
  };
7222
6809
 
7223
6810
  // src/components/DesignElements/ResourcesQuickFind.tsx
7224
- var import_react18 = require("react");
6811
+ var import_react17 = require("react");
7225
6812
  var import_core4 = require("@geowiki/core");
7226
6813
  var import_jsx_runtime122 = require("react/jsx-runtime");
7227
6814
  var ResourcesQuickFind = (props) => {
7228
- const [selectedParent, setSelectedParent] = (0, import_react18.useState)();
7229
- const [selectedChild, setSelectedChild] = (0, import_react18.useState)();
6815
+ const [selectedParent, setSelectedParent] = (0, import_react17.useState)();
6816
+ const [selectedChild, setSelectedChild] = (0, import_react17.useState)();
7230
6817
  console.log(selectedChild);
7231
6818
  const handleParentChange = (selectedValue) => {
7232
6819
  setSelectedParent(selectedValue);
@@ -7334,17 +6921,17 @@ var ResourcesQuickFind = (props) => {
7334
6921
  };
7335
6922
 
7336
6923
  // src/components/DesignElements/FAQItem.tsx
7337
- var import_react19 = require("@headlessui/react");
6924
+ var import_react18 = require("@headlessui/react");
7338
6925
  var import_outline3 = require("@heroicons/react/24/outline");
7339
6926
  var import_jsx_runtime123 = require("react/jsx-runtime");
7340
6927
  var FAQItem = ({ faqs, backgroundColor }) => {
7341
6928
  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)(
7342
- import_react19.Disclosure,
6929
+ import_react18.Disclosure,
7343
6930
  {
7344
6931
  as: "div",
7345
6932
  className: "border-0 border-b border-zinc-300",
7346
6933
  children: ({ open }) => /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(import_jsx_runtime123.Fragment, { children: [
7347
- /* @__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: [
6934
+ /* @__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: [
7348
6935
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(Body20m, { className: `${open ? "pb-0" : "pb-6 lg:pb-8"}`, children: faq.question }),
7349
6936
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("span", { className: "ml-6 flex h-7 items-center", children: open ? /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
7350
6937
  import_outline3.MinusSmallIcon,
@@ -7355,7 +6942,7 @@ var FAQItem = ({ faqs, backgroundColor }) => {
7355
6942
  ) : /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(import_outline3.PlusSmallIcon, { className: "h-6 w-6", "aria-hidden": "true" }) })
7356
6943
  ] }) }),
7357
6944
  /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
7358
- import_react19.Disclosure.Panel,
6945
+ import_react18.Disclosure.Panel,
7359
6946
  {
7360
6947
  as: "dd",
7361
6948
  className: `pr-10 ${faq.hint ? "pt-6 pb-8 space-y-6" : "py-6"}`,
@@ -7575,11 +7162,11 @@ var BasicFooter = (props) => {
7575
7162
  };
7576
7163
 
7577
7164
  // src/components/DesignElements/AppItem.tsx
7578
- var import_react23 = require("react");
7165
+ var import_react22 = require("react");
7579
7166
 
7580
7167
  // src/components/DesignElements/AppItemPopUpView.tsx
7581
- var import_react21 = require("react");
7582
- var import_react22 = require("@headlessui/react");
7168
+ var import_react20 = require("react");
7169
+ var import_react21 = require("@headlessui/react");
7583
7170
  var import_outline4 = require("@heroicons/react/24/outline");
7584
7171
  var import_core5 = require("@geowiki/core");
7585
7172
 
@@ -7633,10 +7220,10 @@ var ResourceIcon = ({
7633
7220
  };
7634
7221
 
7635
7222
  // src/components/DesignElements/ExpandableText.tsx
7636
- var import_react20 = require("react");
7223
+ var import_react19 = require("react");
7637
7224
  var import_jsx_runtime127 = require("react/jsx-runtime");
7638
7225
  var ExpandableText = ({ text, maxLength = 120, show_read_more = false, no_word_wrap = true }) => {
7639
- const [expanded, setExpanded] = (0, import_react20.useState)(false);
7226
+ const [expanded, setExpanded] = (0, import_react19.useState)(false);
7640
7227
  if (text.length <= maxLength || maxLength == 0) {
7641
7228
  return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)("div", { className: no_word_wrap ? "whitespace-normal" : "whitespace-nowrap", children: [
7642
7229
  " ",
@@ -7688,8 +7275,8 @@ function AppItemPopUpView({
7688
7275
  languages
7689
7276
  }) {
7690
7277
  var _a, _b, _c, _d;
7691
- const [isNarrowViewport, setIsNarrowViewport] = (0, import_react21.useState)(false);
7692
- (0, import_react21.useEffect)(() => {
7278
+ const [isNarrowViewport, setIsNarrowViewport] = (0, import_react20.useState)(false);
7279
+ (0, import_react20.useEffect)(() => {
7693
7280
  const mql = window.matchMedia("(max-width: 699px)");
7694
7281
  setIsNarrowViewport(mql.matches);
7695
7282
  const update = (e) => setIsNarrowViewport(e.matches);
@@ -7715,11 +7302,11 @@ function AppItemPopUpView({
7715
7302
  const currentTypes = ((_a = types == null ? void 0 : types.find((type) => type.key === resource.resourceType)) == null ? void 0 : _a.value) || resource.resourceType;
7716
7303
  const link = (resource == null ? void 0 : resource.link) || "";
7717
7304
  const linkText = link.length > 70 ? `${link.slice(0, 70)}...` : link;
7718
- 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: [
7305
+ 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: [
7719
7306
  /* @__PURE__ */ (0, import_jsx_runtime128.jsx)(
7720
- import_react22.Transition.Child,
7307
+ import_react21.Transition.Child,
7721
7308
  {
7722
- as: import_react21.Fragment,
7309
+ as: import_react20.Fragment,
7723
7310
  enter: "ease-out duration-300",
7724
7311
  enterFrom: "opacity-0",
7725
7312
  enterTo: "opacity-100",
@@ -7730,9 +7317,9 @@ function AppItemPopUpView({
7730
7317
  }
7731
7318
  ),
7732
7319
  /* @__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)(
7733
- import_react22.Transition.Child,
7320
+ import_react21.Transition.Child,
7734
7321
  {
7735
- as: import_react21.Fragment,
7322
+ as: import_react20.Fragment,
7736
7323
  enter: "ease-out duration-300",
7737
7324
  enterFrom: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
7738
7325
  enterTo: "opacity-100 translate-y-0 sm:scale-100",
@@ -7740,7 +7327,7 @@ function AppItemPopUpView({
7740
7327
  leaveFrom: "opacity-100 translate-y-0 sm:scale-100",
7741
7328
  leaveTo: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
7742
7329
  children: /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
7743
- import_react22.Dialog.Panel,
7330
+ import_react21.Dialog.Panel,
7744
7331
  {
7745
7332
  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`,
7746
7333
  children: [
@@ -7874,7 +7461,7 @@ var AppItemPopUpView_default = AppItemPopUpView;
7874
7461
  var import_jsx_runtime129 = require("react/jsx-runtime");
7875
7462
  var AppItem = (props) => {
7876
7463
  var _a;
7877
- const [open, setOpen] = (0, import_react23.useState)(false);
7464
+ const [open, setOpen] = (0, import_react22.useState)(false);
7878
7465
  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: () => {
7879
7466
  if (window.innerWidth < 700)
7880
7467
  setOpen(true);
@@ -7920,18 +7507,193 @@ var AppItemsList = (props) => {
7920
7507
  ] });
7921
7508
  };
7922
7509
 
7510
+ // src/components/DesignElements/Carousel/CarouselGalleryItem.tsx
7511
+ var import_jsx_runtime131 = require("react/jsx-runtime");
7512
+ var CarouselGalleryItem = ({ text, url }) => {
7513
+ return /* @__PURE__ */ (0, import_jsx_runtime131.jsxs)("div", { className: "h-[22.25rem] sm:w-auto bg-center relative flex group ", children: [
7514
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
7515
+ ImageElement,
7516
+ {
7517
+ src: url,
7518
+ width: 432,
7519
+ height: 356,
7520
+ className: "h-full bg-black group-hover:brightness-50 rounded-xl object-cover"
7521
+ }
7522
+ ),
7523
+ /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { className: " absolute bottom-6 opacity-0 group-hover:opacity-100", children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("div", { className: " mx-6 text-white text-base leading-[120%] line-clamp-4", children: text }) })
7524
+ ] });
7525
+ };
7526
+
7527
+ // src/components/DesignElements/Carousel/CarouselOpen.tsx
7528
+ var import_react23 = require("react");
7529
+ var import_react24 = require("@headlessui/react");
7530
+ var import_outline5 = require("@heroicons/react/24/outline");
7531
+ var import_react25 = require("react");
7532
+ var import_lucide_react20 = require("lucide-react");
7533
+ var import_jsx_runtime132 = require("react/jsx-runtime");
7534
+ var GalleryCarouselOpen = ({
7535
+ list,
7536
+ currentPhoto,
7537
+ open,
7538
+ setOpen
7539
+ }) => {
7540
+ const [defaultPhoto, setDefaultPhoto] = (0, import_react25.useState)(currentPhoto);
7541
+ const [text, setDefaultText] = (0, import_react25.useState)("");
7542
+ const [rotation, setRotation] = (0, import_react25.useState)(0);
7543
+ (0, import_react25.useEffect)(() => {
7544
+ setDefaultPhoto(currentPhoto);
7545
+ }, [currentPhoto]);
7546
+ const handlePrevious = () => {
7547
+ const currentIndex = list.findIndex(
7548
+ (item) => item.url === defaultPhoto.imageUrl
7549
+ );
7550
+ if (currentIndex > 0) {
7551
+ const previousIndex = currentIndex - 1;
7552
+ setDefaultPhoto({ imageUrl: list[previousIndex].url });
7553
+ }
7554
+ };
7555
+ const handleNext = () => {
7556
+ const currentIndex = list.findIndex(
7557
+ (item) => item.url === defaultPhoto.imageUrl
7558
+ );
7559
+ if (currentIndex < list.length - 1) {
7560
+ const nextIndex = currentIndex + 1;
7561
+ setDefaultPhoto({ imageUrl: list[nextIndex].url });
7562
+ }
7563
+ };
7564
+ (0, import_react25.useEffect)(() => {
7565
+ const foundPhoto = list.find((list2) => list2.url === defaultPhoto.imageUrl);
7566
+ if (foundPhoto) {
7567
+ setDefaultText(foundPhoto.text);
7568
+ }
7569
+ }, [defaultPhoto, list]);
7570
+ return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_react24.Transition.Root, { show: open, as: import_react23.Fragment, "data-component": "ResourceView", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(import_react24.Dialog, { as: "div", className: "relative z-10", onClose: setOpen, children: [
7571
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7572
+ import_react24.Transition.Child,
7573
+ {
7574
+ as: import_react23.Fragment,
7575
+ enter: "ease-out duration-300",
7576
+ enterFrom: "opacity-0",
7577
+ enterTo: "opacity-100",
7578
+ leave: "ease-in duration-200",
7579
+ leaveFrom: "opacity-100",
7580
+ leaveTo: "opacity-0",
7581
+ children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "fixed inset-0 bg-black bg-opacity-90 transition-opacity" })
7582
+ }
7583
+ ),
7584
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_react24.Dialog.Panel, { className: "relative ", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "fixed inset-0 flex items-center justify-between", children: [
7585
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "absolute top-0 right-0 pt-4 pr-4 z-40", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
7586
+ "button",
7587
+ {
7588
+ type: "button",
7589
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 ",
7590
+ onClick: () => setOpen(false),
7591
+ children: [
7592
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("span", { className: "sr-only", children: "Close" }),
7593
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7594
+ import_outline5.XMarkIcon,
7595
+ {
7596
+ className: "h-4 w-4 lg:h-6 lg:w-6 text-white",
7597
+ "aria-hidden": "true"
7598
+ }
7599
+ )
7600
+ ]
7601
+ }
7602
+ ) }),
7603
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)("div", { className: "mx-20 w-full items-center z-30 cursor-default ", children: /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "flex justify-between items-center w-full ", children: [
7604
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7605
+ "button",
7606
+ {
7607
+ type: "button",
7608
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 z-40 ",
7609
+ onClick: handlePrevious,
7610
+ children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_lucide_react20.ChevronLeft, { className: "h-8 w-8 disabled:pointer-events-none disabled:opacity-60 text-white", onClick: () => setRotation(0) })
7611
+ }
7612
+ ),
7613
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "w-full flex-col flex justify-center", children: [
7614
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7615
+ "img",
7616
+ {
7617
+ src: defaultPhoto.imageUrl,
7618
+ alt: "Description",
7619
+ style: { maxWidth: "95%", maxHeight: "95%", transform: `rotate(${rotation}deg)` },
7620
+ className: " h-4/6 w-auto py-4"
7621
+ }
7622
+ ),
7623
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(Body16, { className: "z-40 text-white", children: text }),
7624
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)("div", { className: "gap-2 flex flex-row", children: [
7625
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_lucide_react20.RotateCcw, { className: "h-6 w-6 text-white cursor-pointer", onClick: () => {
7626
+ setRotation(rotation - 90);
7627
+ } }),
7628
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_lucide_react20.RotateCw, { className: "h-6 w-6 text-white cursor-pointer", onClick: () => {
7629
+ setRotation(rotation + 90);
7630
+ } })
7631
+ ] })
7632
+ ] }),
7633
+ /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7634
+ "button",
7635
+ {
7636
+ type: "button",
7637
+ className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 z-40",
7638
+ onClick: handleNext,
7639
+ children: /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(import_lucide_react20.ChevronRight, { className: "h-8 w-8 disabled:pointer-events-none disabled:opacity-60 text-white", onClick: () => setRotation(0) })
7640
+ }
7641
+ )
7642
+ ] }) })
7643
+ ] }) })
7644
+ ] }) });
7645
+ };
7646
+
7647
+ // src/components/DesignElements/Carousel/CarouselGalleryItemList.tsx
7648
+ var import_react26 = require("react");
7649
+ var import_jsx_runtime133 = require("react/jsx-runtime");
7650
+ var CarouselItemList = ({ galleryItems }) => {
7651
+ const [open, setOpen] = (0, import_react26.useState)(false);
7652
+ const [selectedItemId, setSelectedItemId] = (0, import_react26.useState)("");
7653
+ const handleOpenGallery = (id) => {
7654
+ setOpen(true);
7655
+ setSelectedItemId(id);
7656
+ };
7657
+ return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("div", { children: [
7658
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(Carousel, { className: "w-full px-8", children: [
7659
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(CarouselContent, { className: "px-3", children: galleryItems.map((galleryItem, index) => /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(CarouselItem, { className: " md:basis-1/2 lg:basis-1/3", children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)("div", { className: "p-1", children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7660
+ "div",
7661
+ {
7662
+ className: "flex aspect-square items-center justify-center cursor-pointer",
7663
+ onClick: () => handleOpenGallery(galleryItem.url),
7664
+ children: /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(CarouselGalleryItem, { text: galleryItem.text, url: galleryItem.url })
7665
+ }
7666
+ ) }) }, index)) }),
7667
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(CarouselPrevious, {}),
7668
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(CarouselNext, {})
7669
+ ] }),
7670
+ /* @__PURE__ */ (0, import_jsx_runtime133.jsx)(
7671
+ GalleryCarouselOpen,
7672
+ {
7673
+ currentPhoto: { imageUrl: selectedItemId },
7674
+ list: galleryItems.map((galleryItem) => ({
7675
+ url: galleryItem.url,
7676
+ text: galleryItem.text
7677
+ })),
7678
+ open,
7679
+ setOpen
7680
+ }
7681
+ )
7682
+ ] });
7683
+ };
7684
+
7923
7685
  // src/components/Elements/button.tsx
7924
7686
  var import_classnames4 = __toESM(require("classnames"));
7925
- var import_jsx_runtime131 = require("react/jsx-runtime");
7687
+ var import_jsx_runtime134 = require("react/jsx-runtime");
7926
7688
  var OldButton = ({
7927
7689
  label,
7928
7690
  appearance,
7929
- compact: compact2 = false,
7691
+ compact = false,
7930
7692
  handleClick,
7931
7693
  loading = false,
7932
7694
  type
7933
7695
  }) => {
7934
- return /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("button", { onClick: handleClick, type, children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
7696
+ return /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("button", { onClick: handleClick, type, children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7935
7697
  "div",
7936
7698
  {
7937
7699
  className: (0, import_classnames4.default)(
@@ -7939,11 +7701,11 @@ var OldButton = ({
7939
7701
  "flex w-full justify-center lg:w-auto text-center uppercase tracking-wide font-semibold text-base md:text-sm border-2 rounded-md",
7940
7702
  // Full-size button
7941
7703
  {
7942
- "px-8 py-4": compact2 === false
7704
+ "px-8 py-4": compact === false
7943
7705
  },
7944
7706
  // Compact button
7945
7707
  {
7946
- "px-6 py-2": compact2 === true
7708
+ "px-6 py-2": compact === true
7947
7709
  },
7948
7710
  // Specific to when the button is fully dark
7949
7711
  {
@@ -7969,9 +7731,9 @@ var OldButton = ({
7969
7731
 
7970
7732
  // src/components/Elements/button-link.tsx
7971
7733
  var import_classnames5 = __toESM(require("classnames"));
7972
- var import_jsx_runtime132 = require("react/jsx-runtime");
7973
- var ButtonContent = ({ button, appearance, compact: compact2 }) => {
7974
- return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(
7734
+ var import_jsx_runtime135 = require("react/jsx-runtime");
7735
+ var ButtonContent = ({ button, appearance, compact }) => {
7736
+ return /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(
7975
7737
  "div",
7976
7738
  {
7977
7739
  className: (0, import_classnames5.default)(
@@ -7979,11 +7741,11 @@ var ButtonContent = ({ button, appearance, compact: compact2 }) => {
7979
7741
  "block mr-4 w-full lg:w-auto text-center uppercase tracking-wide font-semibold text-base md:text-sm border-2 rounded-md",
7980
7742
  // Full-size button
7981
7743
  {
7982
- "px-8 py-4": compact2 === false
7744
+ "px-8 py-4": compact === false
7983
7745
  },
7984
7746
  // Compact button
7985
7747
  {
7986
- "px-6 py-2": compact2 === true
7748
+ "px-6 py-2": compact === true
7987
7749
  },
7988
7750
  // Specific to when the button is fully dark
7989
7751
  {
@@ -8009,15 +7771,15 @@ var ButtonContent = ({ button, appearance, compact: compact2 }) => {
8009
7771
  var ButtonLink = ({
8010
7772
  button,
8011
7773
  appearance,
8012
- compact: compact2 = false
7774
+ compact = false
8013
7775
  }) => {
8014
- return /* @__PURE__ */ (0, import_jsx_runtime132.jsx)(ButtonContent, { button, appearance, compact: compact2 });
7776
+ return /* @__PURE__ */ (0, import_jsx_runtime135.jsx)(ButtonContent, { button, appearance, compact });
8015
7777
  };
8016
7778
 
8017
7779
  // src/components/Elements/Error.tsx
8018
- var import_jsx_runtime133 = require("react/jsx-runtime");
7780
+ var import_jsx_runtime136 = require("react/jsx-runtime");
8019
7781
  var ErrorMessage = (props) => {
8020
- return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)("div", { children: [
7782
+ return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)("div", { children: [
8021
7783
  "Error (: ",
8022
7784
  props.message,
8023
7785
  ")"
@@ -8025,10 +7787,10 @@ var ErrorMessage = (props) => {
8025
7787
  };
8026
7788
 
8027
7789
  // src/components/Elements/feature-disabled.tsx
8028
- var import_jsx_runtime134 = require("react/jsx-runtime");
7790
+ var import_jsx_runtime137 = require("react/jsx-runtime");
8029
7791
  var FeatureDisabled = () => {
8030
- 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: [
8031
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7792
+ return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime137.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: [
7793
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
8032
7794
  "svg",
8033
7795
  {
8034
7796
  className: "mx-auto h-12 w-12 text-gray-400",
@@ -8036,7 +7798,7 @@ var FeatureDisabled = () => {
8036
7798
  fill: "none",
8037
7799
  viewBox: "0 0 24 24",
8038
7800
  stroke: "currentColor",
8039
- children: /* @__PURE__ */ (0, import_jsx_runtime134.jsx)(
7801
+ children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
8040
7802
  "path",
8041
7803
  {
8042
7804
  strokeLinecap: "round",
@@ -8047,16 +7809,16 @@ var FeatureDisabled = () => {
8047
7809
  )
8048
7810
  }
8049
7811
  ),
8050
- /* @__PURE__ */ (0, import_jsx_runtime134.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "This feature is disabled for your site." })
7812
+ /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "This feature is disabled for your site." })
8051
7813
  ] }) }) });
8052
7814
  };
8053
7815
 
8054
7816
  // src/components/Elements/IframeViewer.tsx
8055
- var import_react24 = require("react");
8056
- var import_jsx_runtime135 = require("react/jsx-runtime");
7817
+ var import_react27 = require("react");
7818
+ var import_jsx_runtime138 = require("react/jsx-runtime");
8057
7819
  var IframeViewer = ({ html, className }) => {
8058
- const containerRef = (0, import_react24.useRef)(null);
8059
- (0, import_react24.useEffect)(() => {
7820
+ const containerRef = (0, import_react27.useRef)(null);
7821
+ (0, import_react27.useEffect)(() => {
8060
7822
  if (containerRef.current) {
8061
7823
  containerRef.current.innerHTML = "";
8062
7824
  const tempDiv = document.createElement("div");
@@ -8083,28 +7845,28 @@ var IframeViewer = ({ html, className }) => {
8083
7845
  });
8084
7846
  }
8085
7847
  }, [html]);
8086
- return /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { ref: containerRef, className: className != null ? className : "" });
7848
+ return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)("div", { ref: containerRef, className: className != null ? className : "" });
8087
7849
  };
8088
7850
 
8089
7851
  // src/components/Elements/loader.tsx
8090
- var import_jsx_runtime136 = require("react/jsx-runtime");
7852
+ var import_jsx_runtime139 = require("react/jsx-runtime");
8091
7853
  var LoaderFull = ({
8092
7854
  showInCenter = true,
8093
7855
  cssClass = null
8094
7856
  }) => {
8095
- return /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7857
+ return /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
8096
7858
  "div",
8097
7859
  {
8098
7860
  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"),
8099
- children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7861
+ children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
8100
7862
  "svg",
8101
7863
  {
8102
7864
  viewBox: "0 0 38 38",
8103
7865
  className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
8104
7866
  xmlns: "http://www.w3.org/2000/svg",
8105
- 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: [
8106
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
8107
- /* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime136.jsx)(
7867
+ children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
7868
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
7869
+ /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
8108
7870
  "animateTransform",
8109
7871
  {
8110
7872
  attributeName: "transform",
@@ -8123,17 +7885,17 @@ var LoaderFull = ({
8123
7885
  };
8124
7886
 
8125
7887
  // src/components/Elements/LocalLoader.tsx
8126
- var import_jsx_runtime137 = require("react/jsx-runtime");
7888
+ var import_jsx_runtime140 = require("react/jsx-runtime");
8127
7889
  var LocalLoader = () => {
8128
- return /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("div", { className: "flex items-center justify-center ", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7890
+ return /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { className: "flex items-center justify-center ", children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
8129
7891
  "svg",
8130
7892
  {
8131
7893
  viewBox: "0 0 38 38",
8132
7894
  className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
8133
7895
  xmlns: "http://www.w3.org/2000/svg",
8134
- 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: [
8135
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
8136
- /* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime137.jsx)(
7896
+ children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
7897
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
7898
+ /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(
8137
7899
  "animateTransform",
8138
7900
  {
8139
7901
  attributeName: "transform",
@@ -8150,9 +7912,9 @@ var LocalLoader = () => {
8150
7912
  };
8151
7913
 
8152
7914
  // src/components/Elements/MediaEmbedItem.tsx
8153
- var import_jsx_runtime138 = require("react/jsx-runtime");
7915
+ var import_jsx_runtime141 = require("react/jsx-runtime");
8154
7916
  var MediaEmbedItem = ({ alt, src }) => {
8155
- return /* @__PURE__ */ (0, import_jsx_runtime138.jsx)(
7917
+ return /* @__PURE__ */ (0, import_jsx_runtime141.jsx)(
8156
7918
  "img",
8157
7919
  {
8158
7920
  alt,
@@ -8163,10 +7925,10 @@ var MediaEmbedItem = ({ alt, src }) => {
8163
7925
  };
8164
7926
 
8165
7927
  // src/components/Elements/permission-disabled.tsx
8166
- var import_jsx_runtime139 = require("react/jsx-runtime");
7928
+ var import_jsx_runtime142 = require("react/jsx-runtime");
8167
7929
  var PermissionDisabled = () => {
8168
- 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: [
8169
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
7930
+ return /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("div", { className: "container mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime142.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: [
7931
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8170
7932
  "svg",
8171
7933
  {
8172
7934
  className: "mx-auto h-12 w-12 text-gray-400",
@@ -8174,7 +7936,7 @@ var PermissionDisabled = () => {
8174
7936
  fill: "none",
8175
7937
  viewBox: "0 0 24 24",
8176
7938
  stroke: "currentColor",
8177
- children: /* @__PURE__ */ (0, import_jsx_runtime139.jsx)(
7939
+ children: /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
8178
7940
  "path",
8179
7941
  {
8180
7942
  strokeLinecap: "round",
@@ -8185,38 +7947,38 @@ var PermissionDisabled = () => {
8185
7947
  )
8186
7948
  }
8187
7949
  ),
8188
- /* @__PURE__ */ (0, import_jsx_runtime139.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "Permission denied" })
7950
+ /* @__PURE__ */ (0, import_jsx_runtime142.jsx)("span", { className: "mt-2 block text-sm font-medium ", children: "Permission denied" })
8189
7951
  ] }) }) });
8190
7952
  };
8191
7953
 
8192
7954
  // src/components/Elements/ShowLargeText.tsx
8193
- var import_jsx_runtime140 = require("react/jsx-runtime");
7955
+ var import_jsx_runtime143 = require("react/jsx-runtime");
8194
7956
  var ShowLargeText = (props) => {
8195
- return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
7957
+ return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
8196
7958
  "div",
8197
7959
  {
8198
7960
  className: props.colSpan != null ? "sm:col-span-" + props.colSpan : "sm:col-span-1",
8199
7961
  children: [
8200
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8201
- /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
7962
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
7963
+ /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8202
7964
  ]
8203
7965
  }
8204
7966
  );
8205
7967
  };
8206
7968
 
8207
7969
  // src/components/Elements/ShowShortText.tsx
8208
- var import_jsx_runtime141 = require("react/jsx-runtime");
7970
+ var import_jsx_runtime144 = require("react/jsx-runtime");
8209
7971
  var ShowShortText = (props) => {
8210
- return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)("div", { className: "sm:col-span-1", children: [
8211
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
8212
- /* @__PURE__ */ (0, import_jsx_runtime141.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
7972
+ return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "sm:col-span-1", children: [
7973
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("dt", { className: "text-sm font-bold", children: props.label }),
7974
+ /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("dd", { className: "mt-1 text-sm", children: props.value })
8213
7975
  ] });
8214
7976
  };
8215
7977
 
8216
7978
  // src/components/Elements/SizedImage.tsx
8217
- var import_jsx_runtime142 = require("react/jsx-runtime");
7979
+ var import_jsx_runtime145 = require("react/jsx-runtime");
8218
7980
  var SizedImage = (props) => {
8219
- return /* @__PURE__ */ (0, import_jsx_runtime142.jsx)(
7981
+ return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
8220
7982
  "img",
8221
7983
  {
8222
7984
  className: props.className,
@@ -8229,42 +7991,42 @@ var SizedImage = (props) => {
8229
7991
  };
8230
7992
 
8231
7993
  // src/components/Elements/UnderConstruction.tsx
8232
- var import_jsx_runtime143 = require("react/jsx-runtime");
7994
+ var import_jsx_runtime146 = require("react/jsx-runtime");
8233
7995
  var UnderConstruction = () => {
8234
- 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: [
8235
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("p", { className: "text-4xl font-extrabold text-primary-600 sm:text-5xl", children: "recodo.io" }),
8236
- /* @__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: [
8237
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("h1", { className: "text-4xl font-extrabold tracking-tight sm:text-5xl", children: "Under Construction" }),
8238
- /* @__PURE__ */ (0, import_jsx_runtime143.jsx)("p", { className: "mt-4 text-xl ", children: "Please check back later." })
7996
+ return /* @__PURE__ */ (0, import_jsx_runtime146.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_runtime146.jsx)("div", { className: "max-w-max mx-auto", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("main", { className: "sm:flex", children: [
7997
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("p", { className: "text-4xl font-extrabold text-primary-600 sm:text-5xl", children: "recodo.io" }),
7998
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "sm:ml-6", children: /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "sm:border-l sm:border-gray-200 sm:pl-6", children: [
7999
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("h1", { className: "text-4xl font-extrabold tracking-tight sm:text-5xl", children: "Under Construction" }),
8000
+ /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("p", { className: "mt-4 text-xl ", children: "Please check back later." })
8239
8001
  ] }) })
8240
8002
  ] }) }) });
8241
8003
  };
8242
8004
 
8243
8005
  // src/components/Elements/FeaturedItemWithBannerImage.tsx
8244
- var import_jsx_runtime144 = require("react/jsx-runtime");
8006
+ var import_jsx_runtime147 = require("react/jsx-runtime");
8245
8007
  var FeaturedItemWithBannerImage = (props) => {
8246
8008
  var _a, _b, _c, _d;
8247
- return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "w-full h-full mt-15 pointer-events-auto md:pointer-events-none", onClick: () => {
8009
+ return /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "w-full h-full mt-15 pointer-events-auto md:pointer-events-none", onClick: () => {
8248
8010
  if (window.innerWidth < 700 && props.itemDetails.externalWebsiteLink) window.open(props.itemDetails.externalWebsiteLink, "_blank");
8249
8011
  }, children: [
8250
- /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)("div", { className: "hidden md:block relative", children: [
8251
- /* @__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 " }),
8252
- 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: [
8253
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "text-white text-base text-lg font-medium ml-6", children: "View Quest" }),
8254
- /* @__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" }) })
8012
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "hidden md:block relative", children: [
8013
+ /* @__PURE__ */ (0, import_jsx_runtime147.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 " }),
8014
+ props.itemDetails.externalWebsiteLink && /* @__PURE__ */ (0, import_jsx_runtime147.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_runtime147.jsx)("div", { className: "w-auto h-14 bg-primary rounded-[40px] flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "inline-flex gap-2", children: [
8015
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "text-white text-base text-lg font-medium ml-6", children: "View Quest" }),
8016
+ /* @__PURE__ */ (0, import_jsx_runtime147.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_runtime147.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" }) })
8255
8017
  ] }) }) })
8256
8018
  ] }),
8257
- ((_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: [
8258
- /* @__PURE__ */ (0, import_jsx_runtime144.jsx)("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: "Feature Quest" }),
8259
- /* @__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" })
8019
+ ((_c = props.featuredItem[0]) == null ? void 0 : _c.portraitBannerUrl) && /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "md:hidden", children: /* @__PURE__ */ (0, import_jsx_runtime147.jsxs)("div", { className: "w-full relative pt-10", children: [
8020
+ /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: "Feature Quest" }),
8021
+ /* @__PURE__ */ (0, import_jsx_runtime147.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" })
8260
8022
  ] }) })
8261
8023
  ] });
8262
8024
  };
8263
8025
 
8264
8026
  // src/components/Hero/HeroImage.tsx
8265
- var import_jsx_runtime145 = require("react/jsx-runtime");
8027
+ var import_jsx_runtime148 = require("react/jsx-runtime");
8266
8028
  var HeroImage = ({ path, cmsUrl }) => {
8267
- return /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(
8029
+ return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)(
8268
8030
  "div",
8269
8031
  {
8270
8032
  className: "w-full bg-center bg-cover hero-geo-wiki rounded-xl overflow-hidden",
@@ -8276,12 +8038,12 @@ var HeroImage = ({ path, cmsUrl }) => {
8276
8038
  };
8277
8039
 
8278
8040
  // src/components/Hero/HeroImageRightWithAppButtons.tsx
8279
- var import_react25 = require("react");
8041
+ var import_react28 = require("react");
8280
8042
 
8281
8043
  // src/components/HeadingTextBlocks/H1BodyButton.tsx
8282
8044
  var import_core6 = require("@geowiki/core");
8283
8045
  var import_html_react_parser2 = __toESM(require("html-react-parser"));
8284
- var import_jsx_runtime146 = require("react/jsx-runtime");
8046
+ var import_jsx_runtime149 = require("react/jsx-runtime");
8285
8047
  var HtmlView2 = (props) => {
8286
8048
  const options = {
8287
8049
  replace: (domNode) => {
@@ -8295,11 +8057,11 @@ var HtmlView2 = (props) => {
8295
8057
  data = data.replace(match, imageHtml);
8296
8058
  });
8297
8059
  }
8298
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("span", { children: (0, import_html_react_parser2.default)(data) });
8060
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("span", { children: (0, import_html_react_parser2.default)(data) });
8299
8061
  }
8300
8062
  }
8301
8063
  };
8302
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8064
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8303
8065
  "div",
8304
8066
  {
8305
8067
  className: props.cssClass !== void 0 && props.cssClass !== null ? props.cssClass : "m-5 ",
@@ -8319,40 +8081,40 @@ var H1BodyButton = (props) => {
8319
8081
  const modifiedText = text.replace(regex, `$1${textToAdd}`);
8320
8082
  return modifiedText;
8321
8083
  };
8322
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8084
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8323
8085
  "div",
8324
8086
  {
8325
8087
  className: "px-0 container mx-auto mt-6 lg:mt-10 flex justify-start",
8326
8088
  "data-component-name": "H1BodyButton",
8327
8089
  children: [
8328
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8329
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "w-full max-w-3xl lg:px-5", children: [
8330
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8331
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(H1Design, { children: [
8090
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8091
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "w-full max-w-3xl lg:px-5", children: [
8092
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8093
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(H1Design, { children: [
8332
8094
  props.title,
8333
8095
  " "
8334
8096
  ] }),
8335
- props.textBody && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8097
+ props.textBody && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8336
8098
  HtmlView2,
8337
8099
  {
8338
8100
  cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
8339
8101
  html: addLinksStyles(props.textBody)
8340
8102
  }
8341
8103
  ),
8342
- ((_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)(
8104
+ ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8343
8105
  import_core6.Link,
8344
8106
  {
8345
8107
  href: props.button.link,
8346
8108
  target: props.button.isNewTab ? "_blank" : "_self",
8347
8109
  rel: "noreferrer",
8348
- children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8110
+ children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8349
8111
  DesignButton,
8350
8112
  {
8351
8113
  variant: "externalLink",
8352
8114
  className: "h-auto p-0 lg:p-0",
8353
8115
  children: props.button.text
8354
8116
  }
8355
- ) : /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(DesignButton, { children: props.button.text })
8117
+ ) : /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(DesignButton, { children: props.button.text })
8356
8118
  }
8357
8119
  ) })
8358
8120
  ] })
@@ -8369,57 +8131,57 @@ var H1BodyButtonWithApp = (props) => {
8369
8131
  const modifiedText = text.replace(regex, `$1${textToAdd}`);
8370
8132
  return modifiedText;
8371
8133
  };
8372
- return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
8134
+ return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8373
8135
  "div",
8374
8136
  {
8375
8137
  className: "px-0 container mx-auto mt-2 lg:mt-10 flex justify-start",
8376
8138
  "data-component-name": "H1BodyButton",
8377
8139
  children: [
8378
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8379
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("div", { className: "max-w-3xl lg:px-5", children: [
8380
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8381
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(BigLandingTitle, { children: [
8140
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "hidden lg:block lg:w-1/4" }),
8141
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "max-w-3xl lg:px-5", children: [
8142
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
8143
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(BigLandingTitle, { children: [
8382
8144
  props.title,
8383
8145
  " "
8384
8146
  ] }),
8385
- props.textBody && /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8147
+ props.textBody && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8386
8148
  HtmlView2,
8387
8149
  {
8388
8150
  cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
8389
8151
  html: addLinksStyles(props.textBody)
8390
8152
  }
8391
8153
  ),
8392
- ((_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)(
8154
+ ((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8393
8155
  import_core6.Link,
8394
8156
  {
8395
8157
  href: props.button.link,
8396
8158
  target: props.button.isNewTab ? "_blank" : "_self",
8397
8159
  rel: "noreferrer",
8398
- children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(
8160
+ children: props.button.isNewTab ? /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8399
8161
  DesignButton,
8400
8162
  {
8401
8163
  variant: "externalLink",
8402
8164
  className: "h-auto p-0 lg:p-0",
8403
8165
  children: props.button.text
8404
8166
  }
8405
- ) : /* @__PURE__ */ (0, import_jsx_runtime146.jsx)(DesignButton, { children: props.button.text })
8167
+ ) : /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(DesignButton, { children: props.button.text })
8406
8168
  }
8407
8169
  ) }),
8408
- 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: [
8409
- /* @__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: [
8410
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("g", { clipPath: "url(#clip0_5955_146)", children: [
8411
- /* @__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" }),
8412
- /* @__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" }),
8413
- /* @__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" }),
8414
- /* @__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" }),
8415
- /* @__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" }),
8416
- /* @__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" }),
8417
- /* @__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" }),
8418
- /* @__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" })
8170
+ props.show_app_stores && /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "mt-6 gap-3 lg:gap-2 flex flex-row md:px-0", children: [
8171
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("a", { href: props.google_marketplace_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime149.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: [
8172
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("g", { clipPath: "url(#clip0_5955_146)", children: [
8173
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8174
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8175
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8176
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8177
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8178
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8179
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8180
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" })
8419
8181
  ] }),
8420
- /* @__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" }) }) })
8182
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("clipPath", { id: "clip0_5955_146", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8421
8183
  ] }) }),
8422
- /* @__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)(
8184
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("a", { href: props.apple_store_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8423
8185
  "svg",
8424
8186
  {
8425
8187
  xmlns: "http://www.w3.org/2000/svg",
@@ -8428,34 +8190,34 @@ var H1BodyButtonWithApp = (props) => {
8428
8190
  fill: "none",
8429
8191
  onClick: () => props.apple_store_link,
8430
8192
  children: [
8431
- /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)("g", { clipPath: "url(#clip0_5955_114)", children: [
8432
- /* @__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" }),
8433
- /* @__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" }),
8434
- /* @__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" }),
8435
- /* @__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" }),
8436
- /* @__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" }),
8437
- /* @__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" }),
8438
- /* @__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" }),
8439
- /* @__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" }),
8440
- /* @__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" }),
8441
- /* @__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" }),
8442
- /* @__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" }),
8443
- /* @__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" }),
8444
- /* @__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" }),
8445
- /* @__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" }),
8446
- /* @__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" }),
8447
- /* @__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" }),
8448
- /* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M94.7839 17.7988H93.3879V8.68677H94.7839V17.7988Z", fill: "white" }),
8449
- /* @__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" }),
8450
- /* @__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" }),
8451
- /* @__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" }),
8452
- /* @__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" }),
8453
- /* @__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" }),
8454
- /* @__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" }),
8455
- /* @__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" }),
8456
- /* @__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" })
8193
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("g", { clipPath: "url(#clip0_5955_114)", children: [
8194
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8195
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8196
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8197
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8198
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8199
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8200
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8201
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8202
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8203
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8204
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8205
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8206
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8207
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8208
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8209
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8210
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("path", { d: "M94.7839 17.7988H93.3879V8.68677H94.7839V17.7988Z", fill: "white" }),
8211
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8212
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8213
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8214
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8215
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8216
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8217
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" }),
8218
+ /* @__PURE__ */ (0, import_jsx_runtime149.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" })
8457
8219
  ] }),
8458
- /* @__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" }) }) })
8220
+ /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("clipPath", { id: "clip0_5955_114", children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("rect", { width: "180", height: "53", fill: "white" }) }) })
8459
8221
  ]
8460
8222
  }
8461
8223
  ) })
@@ -8467,18 +8229,18 @@ var H1BodyButtonWithApp = (props) => {
8467
8229
  };
8468
8230
 
8469
8231
  // src/components/Hero/HeroImageRightWithAppButtons.tsx
8470
- var import_jsx_runtime147 = require("react/jsx-runtime");
8232
+ var import_jsx_runtime150 = require("react/jsx-runtime");
8471
8233
  var HeroImageRightWithAppButtons = (props) => {
8472
- const [description, setDescription] = (0, import_react25.useState)(props.description);
8473
- (0, import_react25.useEffect)(() => {
8234
+ const [description, setDescription] = (0, import_react28.useState)(props.description);
8235
+ (0, import_react28.useEffect)(() => {
8474
8236
  var _a;
8475
8237
  if (typeof window !== "undefined") {
8476
8238
  const desc = window.innerWidth < 700 ? (_a = props.description) == null ? void 0 : _a.replaceAll("<br>", "") : props.description;
8477
8239
  setDescription(desc);
8478
8240
  }
8479
8241
  }, [props.description]);
8480
- 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: [
8481
- /* @__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)(
8242
+ return /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("div", { className: "lg:mt-10", children: /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("div", { className: "justify-end", children: /* @__PURE__ */ (0, import_jsx_runtime150.jsxs)("div", { className: "flex gap-5 max-md:flex-col max-md:gap-0", children: [
8243
+ /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("div", { className: "flex flex-col w-[50%] max-md:ml-0 max-md:w-full lg:pr-5", children: /* @__PURE__ */ (0, import_jsx_runtime150.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_runtime150.jsx)(
8482
8244
  H1BodyButtonWithApp,
8483
8245
  {
8484
8246
  title: props.title,
@@ -8488,7 +8250,7 @@ var HeroImageRightWithAppButtons = (props) => {
8488
8250
  apple_store_link: props.app_store_link
8489
8251
  }
8490
8252
  ) }) }),
8491
- /* @__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)(
8253
+ /* @__PURE__ */ (0, import_jsx_runtime150.jsx)("div", { className: "flex flex-col ml-5 w-[50%] max-md:ml-0 max-md:w-full", children: /* @__PURE__ */ (0, import_jsx_runtime150.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_runtime150.jsx)(
8492
8254
  ImageElement,
8493
8255
  {
8494
8256
  src: props.path,
@@ -8499,16 +8261,16 @@ var HeroImageRightWithAppButtons = (props) => {
8499
8261
  };
8500
8262
 
8501
8263
  // src/components/Panel/Horizontal.tsx
8502
- var import_jsx_runtime148 = require("react/jsx-runtime");
8264
+ var import_jsx_runtime151 = require("react/jsx-runtime");
8503
8265
  var PanelHorizontal = ({
8504
8266
  children
8505
8267
  }) => {
8506
- return /* @__PURE__ */ (0, import_jsx_runtime148.jsx)("div", { className: "panel-horizontal", children });
8268
+ return /* @__PURE__ */ (0, import_jsx_runtime151.jsx)("div", { className: "panel-horizontal", children });
8507
8269
  };
8508
8270
 
8509
8271
  // src/components/HeadingTextBlocks/H2BodyButton.tsx
8510
8272
  var import_core7 = require("@geowiki/core");
8511
- var import_jsx_runtime149 = require("react/jsx-runtime");
8273
+ var import_jsx_runtime152 = require("react/jsx-runtime");
8512
8274
  var H2BodyButton = (props) => {
8513
8275
  var _a;
8514
8276
  const isNeedParse = /<em>(.*?)<\/em>/g.test(props.title);
@@ -8518,43 +8280,43 @@ var H2BodyButton = (props) => {
8518
8280
  const modifiedText = content.replace(regex, `$1${textToAdd}`);
8519
8281
  return modifiedText;
8520
8282
  };
8521
- return /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(
8283
+ return /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)(
8522
8284
  "div",
8523
8285
  {
8524
8286
  id: props.id,
8525
8287
  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}`}`,
8526
8288
  children: [
8527
- /* @__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 }) }),
8528
- /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)("div", { className: "flex flex-col lg:w-[51%] space-y-4 lg:space-y-6", children: [
8529
- isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8289
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "flex flex-col lg:w-[14%]", children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(Body18, { children: props.tag }) }),
8290
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)("div", { className: "flex flex-col lg:w-[51%] space-y-4 lg:space-y-6", children: [
8291
+ isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
8530
8292
  HtmlView,
8531
8293
  {
8532
8294
  cssClass: "m-0 pt-2 lg:pt-0",
8533
8295
  html: parseTitle(props.title, "H2")
8534
8296
  }
8535
8297
  ),
8536
- !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime149.jsxs)(H2Design, { className: "pt-2 lg:pt-0", children: [
8298
+ !isNeedParse && /* @__PURE__ */ (0, import_jsx_runtime152.jsxs)(H2Design, { className: "pt-2 lg:pt-0", children: [
8537
8299
  props.title,
8538
8300
  " "
8539
8301
  ] }),
8540
- /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(
8302
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
8541
8303
  HtmlView,
8542
8304
  {
8543
8305
  cssClass: "m-0 text-base lg:text-lg leading-[130%] lg:mt-4",
8544
8306
  html: addLinksStyles(props.textBody)
8545
8307
  }
8546
8308
  ),
8547
- ((_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)(
8309
+ ((_a = props.button) == null ? void 0 : _a.text) && props.button.link && /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(
8548
8310
  import_core7.Link,
8549
8311
  {
8550
8312
  href: props.button.link,
8551
8313
  target: props.button.isNewTab ? "_blank" : "_self",
8552
8314
  rel: "noreferrer",
8553
- children: /* @__PURE__ */ (0, import_jsx_runtime149.jsx)(DesignButton, { children: props.button.text })
8315
+ children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(DesignButton, { children: props.button.text })
8554
8316
  }
8555
8317
  ) })
8556
8318
  ] }),
8557
- /* @__PURE__ */ (0, import_jsx_runtime149.jsx)("div", { className: "hidden lg:w-[15%] lg:inline" })
8319
+ /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("div", { className: "hidden lg:w-[15%] lg:inline" })
8558
8320
  ]
8559
8321
  }
8560
8322
  );
@@ -8636,6 +8398,7 @@ var H2BodyButton = (props) => {
8636
8398
  Carousel,
8637
8399
  CarouselContent,
8638
8400
  CarouselItem,
8401
+ CarouselItemList,
8639
8402
  CarouselNext,
8640
8403
  CarouselPrevious,
8641
8404
  ChartLineDotsIcon,