/*! elementor - v3.27.0 - 03-02-2025 */
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({
/***/ "../assets/dev/js/utils/react.js":
/*!***************************************!*\
!*** ../assets/dev/js/utils/react.js ***!
\***************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
var ReactDOM = _interopRequireWildcard(__webpack_require__(/*! react-dom */ "react-dom"));
var _client = __webpack_require__(/*! react-dom/client */ "../node_modules/react-dom/client.js");
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
/**
* Support conditional rendering of a React App to the DOM, based on the React version.
* We use `createRoot` when available, but fallback to `ReactDOM.render` for older versions.
*
* @param { React.ReactElement } app The app to render.
* @param { HTMLElement } domElement The DOM element to render the app into.
*
* @return {{ unmount: () => void }} The unmount function.
*/
function render(app, domElement) {
var unmountFunction;
try {
var root = (0, _client.createRoot)(domElement);
root.render(app);
unmountFunction = function unmountFunction() {
root.unmount();
};
} catch (e) {
// eslint-disable-next-line react/no-deprecated
ReactDOM.render(app, domElement);
unmountFunction = function unmountFunction() {
// eslint-disable-next-line react/no-deprecated
ReactDOM.unmountComponentAtNode(domElement);
};
}
return {
unmount: unmountFunction
};
}
var _default = exports["default"] = {
render: render
};
/***/ }),
/***/ "../modules/home/assets/js/components/addons-section.js":
/*!**************************************************************!*\
!*** ../modules/home/assets/js/components/addons-section.js ***!
\**************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js"));
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List"));
var _Link = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Link */ "@elementor/ui/Link"));
var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button"));
var _Card = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Card */ "@elementor/ui/Card"));
var _CardActions = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardActions */ "@elementor/ui/CardActions"));
var _CardContent = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardContent */ "@elementor/ui/CardContent"));
var _CardMedia = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardMedia */ "@elementor/ui/CardMedia"));
var Addons = function Addons(_ref) {
var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref));
var domain = props.adminUrl.replace('wp-admin/', '');
var addonsArray = props.addonsData.repeater;
var cardsPerRow = 3 === addonsArray.length ? 3 : 2;
return /*#__PURE__*/_react.default.createElement(_ui.Paper, {
elevation: 0,
sx: {
p: 3,
display: 'flex',
flexDirection: 'column',
gap: 2
}
}, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "h6"
}, props.addonsData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "body2",
color: "text.secondary"
}, props.addonsData.header.description)), /*#__PURE__*/_react.default.createElement(_List.default, {
sx: {
display: 'grid',
gridTemplateColumns: {
md: "repeat(".concat(cardsPerRow, ", 1fr)"),
xs: 'repeat(1, 1fr)'
},
gap: 2
}
}, addonsArray.map(function (item) {
var linkTarget = item.hasOwnProperty('target') ? item.target : '_blank';
return /*#__PURE__*/_react.default.createElement(_Card.default, {
key: item.title,
elevation: 0,
sx: {
display: 'flex',
border: 1,
borderRadius: 1,
borderColor: 'action.focus'
}
}, /*#__PURE__*/_react.default.createElement(_CardContent.default, {
sx: {
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
gap: 3,
p: 3
}
}, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_CardMedia.default, {
image: item.image,
sx: {
height: '58px',
width: '58px',
mb: 2
}
}), /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "subtitle2"
}, item.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "body2",
color: "text.secondary"
}, item.description))), /*#__PURE__*/_react.default.createElement(_CardActions.default, {
sx: {
p: 0
}
}, /*#__PURE__*/_react.default.createElement(_Button.default, {
variant: "outlined",
size: "small",
color: "promotion",
href: item.url,
target: linkTarget
}, item.button_label))));
})), /*#__PURE__*/_react.default.createElement(_Link.default, {
variant: "body2",
color: "info.main",
underline: "none",
href: "".concat(domain).concat(props.addonsData.footer.file_path)
}, props.addonsData.footer.label));
};
var _default = exports["default"] = Addons;
Addons.propTypes = {
addonsData: PropTypes.object.isRequired,
adminUrl: PropTypes.string.isRequired
};
/***/ }),
/***/ "../modules/home/assets/js/components/create-new-page-dialog.js":
/*!**********************************************************************!*\
!*** ../modules/home/assets/js/components/create-new-page-dialog.js ***!
\**********************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"];
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js"));
var _DialogHeader = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogHeader */ "@elementor/ui/DialogHeader"));
var _DialogHeaderGroup = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogHeaderGroup */ "@elementor/ui/DialogHeaderGroup"));
var _DialogTitle = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogTitle */ "@elementor/ui/DialogTitle"));
var _DialogContent = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogContent */ "@elementor/ui/DialogContent"));
var _DialogContentText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogContentText */ "@elementor/ui/DialogContentText"));
var _TextField = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/TextField */ "@elementor/ui/TextField"));
var _DialogActions = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogActions */ "@elementor/ui/DialogActions"));
var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button"));
var _Dialog = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Dialog */ "@elementor/ui/Dialog"));
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
var CreateNewPageDialog = function CreateNewPageDialog(_ref) {
var url = _ref.url,
isOpen = _ref.isOpen,
closedDialogCallback = _ref.closedDialogCallback;
var _React$useState = _react.default.useState(false),
_React$useState2 = (0, _slicedToArray2.default)(_React$useState, 2),
open = _React$useState2[0],
setOpen = _React$useState2[1];
var _React$useState3 = _react.default.useState(''),
_React$useState4 = (0, _slicedToArray2.default)(_React$useState3, 2),
pageName = _React$useState4[0],
setPageName = _React$useState4[1];
(0, _react.useEffect)(function () {
setOpen(isOpen);
}, [isOpen]);
var handleDialogClose = function handleDialogClose() {
setOpen(false);
closedDialogCallback();
};
var handleChange = function handleChange(event) {
var urlParams = new URLSearchParams();
urlParams.append('post_data[post_title]', event.target.value);
setPageName(urlParams.toString());
};
return /*#__PURE__*/_react.default.createElement(_Dialog.default, {
open: open,
onClose: handleDialogClose,
maxWidth: "xs",
width: "xs",
fullWidth: true
}, /*#__PURE__*/_react.default.createElement(_DialogHeader.default, null, /*#__PURE__*/_react.default.createElement(_DialogHeaderGroup.default, null, /*#__PURE__*/_react.default.createElement(_DialogTitle.default, null, __('Name your page', 'elementor')))), /*#__PURE__*/_react.default.createElement(_DialogContent.default, {
dividers: true
}, /*#__PURE__*/_react.default.createElement(_DialogContentText.default, {
sx: {
mb: 2
}
}, __('To proceed, please name your first page,', 'elementor'), /*#__PURE__*/_react.default.createElement("br", null), __('or rename it later.', 'elementor')), /*#__PURE__*/_react.default.createElement(_TextField.default, {
onChange: handleChange,
fullWidth: true,
placeholder: __('New Page', 'elementor')
})), /*#__PURE__*/_react.default.createElement(_DialogActions.default, null, /*#__PURE__*/_react.default.createElement(_Button.default, {
onClick: handleDialogClose,
color: "secondary"
}, __('Cancel', 'elementor')), /*#__PURE__*/_react.default.createElement(_Button.default, {
variant: "contained",
href: pageName ? url + '&' + pageName : url,
target: "_blank"
}, __('Save', 'elementor'))));
};
var _default = exports["default"] = CreateNewPageDialog;
CreateNewPageDialog.propTypes = {
url: PropTypes.string.isRequired,
isOpen: PropTypes.bool.isRequired,
closedDialogCallback: PropTypes.func.isRequired
};
/***/ }),
/***/ "../modules/home/assets/js/components/external-links-section.js":
/*!**********************************************************************!*\
!*** ../modules/home/assets/js/components/external-links-section.js ***!
\**********************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js"));
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List"));
var _ListItemButton = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemButton */ "@elementor/ui/ListItemButton"));
var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText"));
var _Divider = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Divider */ "@elementor/ui/Divider"));
var ExternalLinksSection = function ExternalLinksSection(_ref) {
var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref));
return /*#__PURE__*/_react.default.createElement(_ui.Paper, {
elevation: 0,
sx: {
px: 3
}
}, /*#__PURE__*/_react.default.createElement(_List.default, null, props.externalLinksData.map(function (item, index) {
return /*#__PURE__*/_react.default.createElement(_ui.Box, {
key: item.label
}, /*#__PURE__*/_react.default.createElement(_ListItemButton.default, {
href: item.url,
target: "_blank",
sx: {
'&:hover': {
backgroundColor: 'initial'
},
gap: 2,
px: 0,
py: 2
}
}, /*#__PURE__*/_react.default.createElement(_ui.Box, {
component: "img",
src: item.image,
sx: {
width: '38px'
}
}), /*#__PURE__*/_react.default.createElement(_ListItemText.default, {
sx: {
color: 'text.secondary'
},
primary: item.label
})), index < props.externalLinksData.length - 1 && /*#__PURE__*/_react.default.createElement(_Divider.default, null));
})));
};
var _default = exports["default"] = ExternalLinksSection;
ExternalLinksSection.propTypes = {
externalLinksData: PropTypes.array.isRequired
};
/***/ }),
/***/ "../modules/home/assets/js/components/get-started-list-item.js":
/*!*********************************************************************!*\
!*** ../modules/home/assets/js/components/get-started-list-item.js ***!
\*********************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js"));
var _ListItem = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItem */ "@elementor/ui/ListItem"));
var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText"));
var _Link = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Link */ "@elementor/ui/Link"));
var _Box = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Box */ "@elementor/ui/Box"));
var _createNewPageDialog = _interopRequireDefault(__webpack_require__(/*! ./create-new-page-dialog */ "../modules/home/assets/js/components/create-new-page-dialog.js"));
var GetStartedListItem = function GetStartedListItem(_ref) {
var item = _ref.item,
image = _ref.image,
adminUrl = _ref.adminUrl;
var url = item.is_relative_url ? adminUrl + item.url : item.url;
var _React$useState = _react.default.useState(false),
_React$useState2 = (0, _slicedToArray2.default)(_React$useState, 2),
isOpen = _React$useState2[0],
openDialog = _React$useState2[1];
var handleLinkClick = function handleLinkClick(event) {
if (!item.new_page) {
return;
}
event.preventDefault();
openDialog(true);
};
return /*#__PURE__*/_react.default.createElement(_ListItem.default, {
alignItems: "flex-start",
sx: {
gap: 1,
p: 0,
maxWidth: '150px'
}
}, /*#__PURE__*/_react.default.createElement(_Box.default, {
component: "img",
src: image
}), /*#__PURE__*/_react.default.createElement(_Box.default, null, /*#__PURE__*/_react.default.createElement(_ListItemText.default, {
primary: item.title,
primaryTypographyProps: {
variant: 'subtitle1'
},
sx: {
my: 0
}
}), /*#__PURE__*/_react.default.createElement(_Link.default, {
variant: "body2",
color: item.title_small_color ? item.title_small_color : 'text.tertiary',
underline: "hover",
href: url,
target: "_blank",
onClick: handleLinkClick
}, item.title_small)), item.new_page && /*#__PURE__*/_react.default.createElement(_createNewPageDialog.default, {
url: url,
isOpen: isOpen,
closedDialogCallback: function closedDialogCallback() {
return openDialog(false);
}
}));
};
var _default = exports["default"] = GetStartedListItem;
GetStartedListItem.propTypes = {
item: PropTypes.shape({
title: PropTypes.string.isRequired,
title_small: PropTypes.string.isRequired,
url: PropTypes.string.isRequired,
new_page: PropTypes.bool,
is_relative_url: PropTypes.bool,
title_small_color: PropTypes.string
}).isRequired,
adminUrl: PropTypes.string.isRequired,
image: PropTypes.string
};
/***/ }),
/***/ "../modules/home/assets/js/components/get-started-section.js":
/*!*******************************************************************!*\
!*** ../modules/home/assets/js/components/get-started-section.js ***!
\*******************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js"));
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List"));
var _getStartedListItem = _interopRequireDefault(__webpack_require__(/*! ./get-started-list-item */ "../modules/home/assets/js/components/get-started-list-item.js"));
var GetStarted = function GetStarted(_ref) {
var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref));
return /*#__PURE__*/_react.default.createElement(_ui.Paper, {
elevation: 0,
sx: {
p: 3,
display: 'flex',
flexDirection: 'column',
gap: 2
}
}, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "h6"
}, props.getStartedData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "body2",
color: "text.secondary"
}, props.getStartedData.header.description)), /*#__PURE__*/_react.default.createElement(_List.default, {
sx: {
display: 'grid',
gridTemplateColumns: {
md: 'repeat(4, 1fr)',
xs: 'repeat(2, 1fr)'
},
columnGap: {
md: 9,
xs: 7
},
rowGap: 3
}
}, props.getStartedData.repeater.map(function (item) {
return /*#__PURE__*/_react.default.createElement(_getStartedListItem.default, {
key: item.title,
item: item,
image: item.image,
adminUrl: props.adminUrl
});
})));
};
var _default = exports["default"] = GetStarted;
GetStarted.propTypes = {
getStartedData: PropTypes.object.isRequired,
adminUrl: PropTypes.string.isRequired
};
/***/ }),
/***/ "../modules/home/assets/js/components/home-screen.js":
/*!***********************************************************!*\
!*** ../modules/home/assets/js/components/home-screen.js ***!
\***********************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _topSection = _interopRequireDefault(__webpack_require__(/*! ./top-section */ "../modules/home/assets/js/components/top-section.js"));
var _sidebarPromotion = _interopRequireDefault(__webpack_require__(/*! ./sidebar-promotion */ "../modules/home/assets/js/components/sidebar-promotion.js"));
var _addonsSection = _interopRequireDefault(__webpack_require__(/*! ./addons-section */ "../modules/home/assets/js/components/addons-section.js"));
var _externalLinksSection = _interopRequireDefault(__webpack_require__(/*! ./external-links-section */ "../modules/home/assets/js/components/external-links-section.js"));
var _getStartedSection = _interopRequireDefault(__webpack_require__(/*! ./get-started-section */ "../modules/home/assets/js/components/get-started-section.js"));
var HomeScreen = function HomeScreen(props) {
var hasSidebarUpgrade = props.homeScreenData.hasOwnProperty('sidebar_upgrade');
return /*#__PURE__*/ /* Box wrapper around the Container is needed to neutralize wp-content area left-padding */_react.default.createElement(_ui.Box, {
sx: {
pr: 1
}
}, /*#__PURE__*/_react.default.createElement(_ui.Container, {
disableGutters: true,
maxWidth: "lg",
sx: {
display: 'flex',
flexDirection: 'column',
gap: {
xs: 1,
md: 3
},
pt: {
xs: 2,
md: 6
},
pb: 2
}
}, /*#__PURE__*/_react.default.createElement(_topSection.default, {
topData: props.homeScreenData.top_with_licences,
createNewPageUrl: props.homeScreenData.create_new_page_url
}), /*#__PURE__*/_react.default.createElement(_ui.Box, {
sx: {
display: 'flex',
flexDirection: {
xs: 'column',
sm: 'row'
},
justifyContent: 'space-between',
gap: 3
}
}, /*#__PURE__*/_react.default.createElement(_ui.Stack, {
sx: {
flex: 1,
gap: 3
}
}, /*#__PURE__*/_react.default.createElement(_getStartedSection.default, {
getStartedData: props.homeScreenData.get_started,
adminUrl: props.adminUrl
}), /*#__PURE__*/_react.default.createElement(_addonsSection.default, {
addonsData: props.homeScreenData.add_ons,
adminUrl: props.adminUrl
})), /*#__PURE__*/_react.default.createElement(_ui.Container, {
maxWidth: "xs",
disableGutters: true,
sx: {
width: {
sm: '305px'
},
display: 'flex',
flexDirection: 'column',
gap: 3
}
}, hasSidebarUpgrade && /*#__PURE__*/_react.default.createElement(_sidebarPromotion.default, {
sideData: props.homeScreenData.sidebar_upgrade
}), /*#__PURE__*/_react.default.createElement(_externalLinksSection.default, {
externalLinksData: props.homeScreenData.external_links
})))));
};
HomeScreen.propTypes = {
homeScreenData: PropTypes.object,
adminUrl: PropTypes.string
};
var _default = exports["default"] = HomeScreen;
/***/ }),
/***/ "../modules/home/assets/js/components/sidebar-promotion.js":
/*!*****************************************************************!*\
!*** ../modules/home/assets/js/components/sidebar-promotion.js ***!
\*****************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js"));
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button"));
var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List"));
var _ListItem = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItem */ "@elementor/ui/ListItem"));
var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText"));
var _sideBarCheckIcon = _interopRequireDefault(__webpack_require__(/*! ../icons/side-bar-check-icon */ "../modules/home/assets/js/icons/side-bar-check-icon.js"));
var SideBarPromotion = function SideBarPromotion(_ref) {
var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref));
return /*#__PURE__*/_react.default.createElement(_ui.Paper, {
elevation: 0,
sx: {
p: 3
}
}, /*#__PURE__*/_react.default.createElement(_ui.Stack, {
gap: 1.5,
sx: {
alignItems: 'center',
textAlign: 'center',
pb: 4
}
}, /*#__PURE__*/_react.default.createElement(_ui.Box, {
component: "img",
src: props.sideData.header.image
}), /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "h6"
}, props.sideData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, {
variant: "body2",
color: "text.secondary"
}, props.sideData.header.description)), /*#__PURE__*/_react.default.createElement(_Button.default, {
variant: "contained",
size: "medium",
color: "promotion",
href: props.sideData.cta.url,
startIcon: /*#__PURE__*/_react.default.createElement(_ui.Box, {
component: "img",
src: props.sideData.cta.image,
sx: {
width: '16px'
}
}),
target: "_blank",
sx: {
maxWidth: 'fit-content'
}
}, props.sideData.cta.label)), /*#__PURE__*/_react.default.createElement(_List.default, {
sx: {
p: 0
}
}, props.sideData.repeater.map(function (item, index) {
return /*#__PURE__*/_react.default.createElement(_ListItem.default, {
key: index,
sx: {
p: 0,
gap: 1
}
}, /*#__PURE__*/_react.default.createElement(_sideBarCheckIcon.default, null), /*#__PURE__*/_react.default.createElement(_ListItemText.default, {
primaryTypographyProps: {
variant: 'body2'
},
primary: item.title
}));
})));
};
var _default = exports["default"] = SideBarPromotion;
SideBarPromotion.propTypes = {
sideData: PropTypes.object.isRequired
};
/***/ }),
/***/ "../modules/home/assets/js/components/top-section.js":
/*!***********************************************************!*\
!*** ../modules/home/assets/js/components/top-section.js ***!
\***********************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
/* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js");
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js"));
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
var _Typography = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Typography */ "@elementor/ui/Typography"));
var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button"));
var _youtubeIcon = _interopRequireDefault(__webpack_require__(/*! ../icons/youtube-icon */ "../modules/home/assets/js/icons/youtube-icon.js"));
var TopSection = function TopSection(_ref) {
var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref));
return /*#__PURE__*/_react.default.createElement(_ui.Paper, {
elevation: 0,
sx: {
display: 'flex',
flexDirection: {
xs: 'column',
sm: 'row'
},
justifyContent: 'space-between',
py: {
xs: 3,
md: 3
},
px: {
xs: 3,
md: 4
},
gap: {
xs: 2,
sm: 3,
lg: 22
}
}
}, /*#__PURE__*/_react.default.createElement(_ui.Stack, {
gap: 3,
justifyContent: "center"
}, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_Typography.default, {
variant: "h6"
}, props.topData.title), /*#__PURE__*/_react.default.createElement(_Typography.default, {
variant: "body2",
color: "secondary"
}, props.topData.description)), /*#__PURE__*/_react.default.createElement(_ui.Box, {
sx: {
display: 'flex',
gap: 1
}
}, /*#__PURE__*/_react.default.createElement(_Button.default, {
variant: "contained",
size: "small",
href: props.createNewPageUrl,
target: "_blank"
}, props.topData.button_create_page_title), /*#__PURE__*/_react.default.createElement(_Button.default, {
variant: "outlined",
color: "secondary",
size: "small",
startIcon: /*#__PURE__*/_react.default.createElement(_youtubeIcon.default, null),
href: props.topData.button_watch_url,
target: "_blank"
}, props.topData.button_watch_title))), /*#__PURE__*/_react.default.createElement(_ui.Box, {
component: "iframe",
src: "https://www.youtube.com/embed/".concat(props.topData.youtube_embed_id),
title: "YouTube video player",
frameBorder: "0",
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
allowFullScreen: true,
sx: {
aspectRatio: '16/9',
borderRadius: 1,
display: 'flex',
width: '100%',
maxWidth: '365px'
}
}));
};
TopSection.propTypes = {
topData: PropTypes.object.isRequired,
createNewPageUrl: PropTypes.string.isRequired
};
var _default = exports["default"] = TopSection;
/***/ }),
/***/ "../modules/home/assets/js/icons/side-bar-check-icon.js":
/*!**************************************************************!*\
!*** ../modules/home/assets/js/icons/side-bar-check-icon.js ***!
\**************************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
var SideBarCheckIcon = function SideBarCheckIcon(props) {
return /*#__PURE__*/React.createElement(_ui.SvgIcon, (0, _extends2.default)({
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9.09013 3.69078C10.273 3.2008 11.5409 2.94861 12.8213 2.94861C14.1017 2.94861 15.3695 3.2008 16.5525 3.69078C17.7354 4.18077 18.8102 4.89895 19.7156 5.80432C20.621 6.70969 21.3391 7.78452 21.8291 8.96744C22.3191 10.1504 22.5713 11.4182 22.5713 12.6986C22.5713 13.979 22.3191 15.2468 21.8291 16.4298C21.3391 17.6127 20.621 18.6875 19.7156 19.5929C18.8102 20.4983 17.7354 21.2165 16.5525 21.7064C15.3695 22.1964 14.1017 22.4486 12.8213 22.4486C11.5409 22.4486 10.2731 22.1964 9.09013 21.7064C7.9072 21.2165 6.83237 20.4983 5.927 19.5929C5.02163 18.6875 4.30345 17.6127 3.81346 16.4298C3.32348 15.2468 3.07129 13.979 3.07129 12.6986C3.07129 11.4182 3.32348 10.1504 3.81346 8.96744C4.30345 7.78452 5.02163 6.70969 5.927 5.80432C6.83237 4.89895 7.9072 4.18077 9.09013 3.69078ZM12.8213 4.44861C11.7379 4.44861 10.6651 4.662 9.66415 5.0766C8.66321 5.4912 7.75374 6.09889 6.98766 6.86498C6.22157 7.63106 5.61388 8.54053 5.19928 9.54147C4.78468 10.5424 4.57129 11.6152 4.57129 12.6986C4.57129 13.782 4.78468 14.8548 5.19928 15.8557C5.61388 16.8567 6.22157 17.7662 6.98766 18.5322C7.75374 19.2983 8.66322 19.906 9.66415 20.3206C10.6651 20.7352 11.7379 20.9486 12.8213 20.9486C13.9047 20.9486 14.9775 20.7352 15.9784 20.3206C16.9794 19.906 17.8888 19.2983 18.6549 18.5322C19.421 17.7662 20.0287 16.8567 20.4433 15.8557C20.8579 14.8548 21.0713 13.782 21.0713 12.6986C21.0713 11.6152 20.8579 10.5424 20.4433 9.54147C20.0287 8.54053 19.421 7.63106 18.6549 6.86498C17.8888 6.09889 16.9794 5.4912 15.9784 5.0766C14.9775 4.662 13.9047 4.44861 12.8213 4.44861Z",
fill: "#93003F"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M17.3213 9.69424C17.6142 9.98713 17.6142 10.462 17.3213 10.7549L12.3732 15.703C12.0803 15.9959 11.6054 15.9959 11.3125 15.703L8.83851 13.2289C8.54562 12.936 8.54562 12.4612 8.83851 12.1683C9.1314 11.8754 9.60628 11.8754 9.89917 12.1683L11.8429 14.112L16.2606 9.69424C16.5535 9.40135 17.0284 9.40135 17.3213 9.69424Z",
fill: "#93003F"
}));
};
var _default = exports["default"] = SideBarCheckIcon;
/***/ }),
/***/ "../modules/home/assets/js/icons/youtube-icon.js":
/*!*******************************************************!*\
!*** ../modules/home/assets/js/icons/youtube-icon.js ***!
\*******************************************************/
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
"use strict";
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js");
var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js");
Object.defineProperty(exports, "__esModule", ({
value: true
}));
exports["default"] = void 0;
var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js"));
var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui");
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
var YoutubeIcon = function YoutubeIcon(props) {
return /*#__PURE__*/React.createElement(_ui.SvgIcon, (0, _extends2.default)({
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 5.75C5.20507 5.75 3.75 7.20507 3.75 9V15C3.75 16.7949 5.20507 18.25 7 18.25H17C18.7949 18.25 20.25 16.7949 20.25 15V9C20.25 7.20507 18.7949 5.75 17 5.75H7ZM2.25 9C2.25 6.37665 4.37665 4.25 7 4.25H17C19.6234 4.25 21.75 6.37665 21.75 9V15C21.75 17.6234 19.6234 19.75 17 19.75H7C4.37665 19.75 2.25 17.6234 2.25 15V9ZM9.63048 8.34735C9.86561 8.21422 10.1542 8.21786 10.3859 8.35688L15.3859 11.3569C15.6118 11.4924 15.75 11.7366 15.75 12C15.75 12.2634 15.6118 12.5076 15.3859 12.6431L10.3859 15.6431C10.1542 15.7821 9.86561 15.7858 9.63048 15.6526C9.39534 15.5195 9.25 15.2702 9.25 15V9C9.25 8.7298 9.39534 8.48048 9.63048 8.34735ZM10.75 10.3246V13.6754L13.5423 12L10.75 10.3246Z"
}));
};
var _default = exports["default"] = YoutubeIcon;
/***/ }),
/***/ "../node_modules/object-assign/index.js":
/*!**********************************************!*\
!*** ../node_modules/object-assign/index.js ***!
\**********************************************/
/***/ ((module) => {
"use strict";
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/
/* eslint-disable no-unused-vars */
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
var hasOwnProperty = Object.prototype.hasOwnProperty;
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
function toObject(val) {
if (val === null || val === undefined) {
throw new TypeError('Object.assign cannot be called with null or undefined');
}
return Object(val);
}
function shouldUseNative() {
try {
if (!Object.assign) {
return false;
}
// Detect buggy property enumeration order in older V8 versions.
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
test1[5] = 'de';
if (Object.getOwnPropertyNames(test1)[0] === '5') {
return false;
}
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
var test2 = {};
for (var i = 0; i < 10; i++) {
test2['_' + String.fromCharCode(i)] = i;
}
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
return test2[n];
});
if (order2.join('') !== '0123456789') {
return false;
}
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
var test3 = {};
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
test3[letter] = letter;
});
if (Object.keys(Object.assign({}, test3)).join('') !==
'abcdefghijklmnopqrst') {
return false;
}
return true;
} catch (err) {
// We don't expect any of the above to throw, but better to be safe.
return false;
}
}
module.exports = shouldUseNative() ? Object.assign : function (target, source) {
var from;
var to = toObject(target);
var symbols;
for (var s = 1; s < arguments.length; s++) {
from = Object(arguments[s]);
for (var key in from) {
if (hasOwnProperty.call(from, key)) {
to[key] = from[key];
}
}
if (getOwnPropertySymbols) {
symbols = getOwnPropertySymbols(from);
for (var i = 0; i < symbols.length; i++) {
if (propIsEnumerable.call(from, symbols[i])) {
to[symbols[i]] = from[symbols[i]];
}
}
}
}
return to;
};
/***/ }),
/***/ "../node_modules/prop-types/checkPropTypes.js":
/*!****************************************************!*\
!*** ../node_modules/prop-types/checkPropTypes.js ***!
\****************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
"use strict";
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var printWarning = function() {};
if (true) {
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js");
var loggedTypeFailures = {};
var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js");
printWarning = function(text) {
var message = 'Warning: ' + text;
if (typeof console !== 'undefined') {
console.error(message);
}
try {
// --- Welcome to debugging React ---
// This error was thrown as a convenience so that you can use this stack
// to find the callsite that caused this warning to fire.
throw new Error(message);
} catch (x) { /**/ }
};
}
/**
* Assert that the values match with the type specs.
* Error messages are memorized and will only be shown once.
*
* @param {object} typeSpecs Map of name to a ReactPropType
* @param {object} values Runtime values that need to be type-checked
* @param {string} location e.g. "prop", "context", "child context"
* @param {string} componentName Name of the component for error messages.
* @param {?Function} getStack Returns the component stack.
* @private
*/
function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
if (true) {
for (var typeSpecName in typeSpecs) {
if (has(typeSpecs, typeSpecName)) {
var error;
// Prop type validation may throw. In case they do, we don't want to
// fail the render phase where it didn't fail before. So we log it.
// After these have been cleaned up, we'll let them throw.
try {
// This is intentionally an invariant that gets caught. It's the same
// behavior as without this statement except with a better message.
if (typeof typeSpecs[typeSpecName] !== 'function') {
var err = Error(
(componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' +
'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.'
);
err.name = 'Invariant Violation';
throw err;
}
error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
} catch (ex) {
error = ex;
}
if (error && !(error instanceof Error)) {
printWarning(
(componentName || 'React class') + ': type specification of ' +
location + ' `' + typeSpecName + '` is invalid; the type checker ' +
'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
'You may have forgotten to pass an argument to the type checker ' +
'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
'shape all require an argument).'
);
}
if (error instanceof Error && !(error.message in loggedTypeFailures)) {
// Only monitor this failure once because there tends to be a lot of the
// same error.
loggedTypeFailures[error.message] = true;
var stack = getStack ? getStack() : '';
printWarning(
'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
);
}
}
}
}
}
/**
* Resets warning cache when testing.
*
* @private
*/
checkPropTypes.resetWarningCache = function() {
if (true) {
loggedTypeFailures = {};
}
}
module.exports = checkPropTypes;
/***/ }),
/***/ "../node_modules/prop-types/factoryWithTypeCheckers.js":
/*!*************************************************************!*\
!*** ../node_modules/prop-types/factoryWithTypeCheckers.js ***!
\*************************************************************/
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
"use strict";
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var ReactIs = __webpack_require__(/*! react-is */ "../node_modules/prop-types/node_modules/react-is/index.js");
var assign = __webpack_require__(/*! object-assign */ "../node_modules/object-assign/index.js");
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js");
var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js");
var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ "../node_modules/prop-types/checkPropTypes.js");
var printWarning = function() {};
if (true) {
printWarning = function(text) {
var message = 'Warning: ' + text;
if (typeof console !== 'undefined') {
console.error(message);
}
try {
// --- Welcome to debugging React ---
// This error was thrown as a convenience so that you can use this stack
// to find the callsite that caused this warning to fire.
throw new Error(message);
} catch (x) {}
};
}
function emptyFunctionThatReturnsNull() {
return null;
}
module.exports = function(isValidElement, throwOnDirectAccess) {
/* global Symbol */
var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.
/**
* Returns the iterator method function contained on the iterable object.
*
* Be sure to invoke the function with the iterable as context:
*
* var iteratorFn = getIteratorFn(myIterable);
* if (iteratorFn) {
* var iterator = iteratorFn.call(myIterable);
* ...
* }
*
* @param {?object} maybeIterable
* @return {?function}
*/
function getIteratorFn(maybeIterable) {
var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
if (typeof iteratorFn === 'function') {
return iteratorFn;
}
}
/**
* Collection of methods that allow declaration and validation of props that are
* supplied to React components. Example usage:
*
* var Props = require('ReactPropTypes');
* var MyArticle = React.createClass({
* propTypes: {
* // An optional string prop named "description".
* description: Props.string,
*
* // A required enum prop named "category".
* category: Props.oneOf(['News','Photos']).isRequired,
*
* // A prop named "dialog" that requires an instance of Dialog.
* dialog: Props.instanceOf(Dialog).isRequired
* },
* render: function() { ... }
* });
*
* A more formal specification of how these methods are used:
*
* type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
* decl := ReactPropTypes.{type}(.isRequired)?
*
* Each and every declaration produces a function with the same signature. This
* allows the creation of custom validation functions. For example:
*
* var MyLink = React.createClass({
* propTypes: {
* // An optional string or URI prop named "href".
* href: function(props, propName, componentName) {
* var propValue = props[propName];
* if (propValue != null && typeof propValue !== 'string' &&
* !(propValue instanceof URI)) {
* return new Error(
* 'Expected a string or an URI for ' + propName + ' in ' +
* componentName
* );
* }
* }
* },
* render: function() {...}
* });
*
* @internal
*/
var ANONYMOUS = '<
Содержимое
Are you tired of being restricted by GamStop and its limitations? Look no further! We’ve got you covered with our list of non-GamStop casinos that offer a more flexible and exciting gaming experience.
At [Your Website], we understand the importance of having a choice when it comes to online casinos. That’s why we’ve curated a list of top-notch non-GamStop casinos that cater to your needs and preferences. From a wide range of games to generous bonuses and promotions, these casinos are sure to provide you with an unforgettable gaming experience.
So, what are you waiting for? Take a look at our list of non-GamStop casinos and start playing today! Remember, with us, you’re not limited by GamStop’s restrictions. You’re free to explore and enjoy the best online casinos have to offer.
Here are some of the top non-GamStop casinos you can trust:
1. Casino X – A popular choice among online gamblers, Casino X offers a wide range of games, including slots, table games, and live dealer options. With a generous welcome bonus and regular promotions, you’ll be spoiled for choice.
2. Casino Y – If you’re looking for a more exclusive gaming experience, Casino Y is the perfect choice. With a focus on high-stakes games and exclusive bonuses, you’ll feel like a VIP.
3. Casino Z – For a more laid-back gaming experience, Casino Z is the way to go. With a focus on slots and casual games, you’ll be able to relax and have fun without breaking the bank.
And many more! Our list of non-GamStop casinos is constantly updated to ensure you have access to the best and most reliable online casinos. So, what are you waiting for? Start playing today and experience the thrill of online gaming without the restrictions of GamStop.
Remember, with us, you’re not limited by GamStop’s restrictions. You’re free to explore and enjoy the best online casinos have to offer. So, take a look at our list of non-GamStop casinos and start playing today!
If you’re looking for a new online casino experience, you may have come across the term “non-GamStop casinos.” But what does it mean, and how does it differ from traditional online casinos?
A non-GamStop casino is a type of online casino that is not registered with the UK Gambling Commission’s GamStop self-exclusion scheme. This means that players can access these casinos without being restricted by GamStop’s self-exclusion program.
Non-GamStop casinos are often preferred by players who want to maintain their online gaming freedom. These casinos are not bound by the same regulations as GamStop-registered casinos, which can be beneficial for players who want to try new games or explore different gaming options.
It’s essential to note that non-GamStop casinos are not necessarily inferior to GamStop-registered casinos. In fact, many non-GamStop casinos offer a wide range of games, generous bonuses, and excellent customer service.
So, how do you find a non-GamStop casino that meets your needs? Look for casinos that are licensed by reputable gaming authorities, such as the Malta Gaming Authority or the Curacao Gaming Commission. These licenses ensure that the casino operates fairly and securely.
Additionally, check the casino’s game selection, bonus offers, and customer support. A good non-GamStop casino should offer a variety of games, including slots, table games, and live dealer games. They should also provide competitive bonuses, such as welcome bonuses, free spins, and loyalty programs.
Finally, make sure to read reviews and check the casino’s reputation before signing up. A good non-GamStop casino should have a positive reputation and be transparent about their operations.
In non gamstop uk casinos with paypal conclusion, non-GamStop casinos offer a unique online gaming experience that is not bound by the same regulations as GamStop-registered casinos. By choosing a reputable non-GamStop casino, you can enjoy a wide range of games, generous bonuses, and excellent customer service. Remember to always do your research and read reviews before signing up to ensure a safe and enjoyable gaming experience.
One of the most significant advantages of playing at non-GamStop casinos is the freedom to choose from a wide range of games and providers. Unlike traditional casinos, which are often limited by strict regulations and licensing requirements, non-GamStop casinos can offer a much broader selection of games, including slots, table games, and live dealer options. This means that players can enjoy a more diverse and exciting gaming experience, with more opportunities to win big.
Non-GamStop casinos often offer more generous and flexible bonus structures, allowing players to take advantage of a wider range of promotions and bonuses. This can include welcome bonuses, reload bonuses, and loyalty rewards, giving players more opportunities to boost their bankrolls and increase their chances of winning. Additionally, non-GamStop casinos may offer more flexible wagering requirements, allowing players to use their bonuses more effectively.
Another significant benefit of playing at non-GamStop casinos is the ability to play with a wider range of currencies. This can be particularly useful for players who prefer to use alternative currencies, such as cryptocurrencies, or for those who need to make deposits in a specific currency. Non-GamStop casinos often offer more flexible payment options, allowing players to deposit and withdraw funds in a variety of ways, including credit cards, e-wallets, and cryptocurrencies.
In conclusion, playing at non-GamStop casinos can offer a more exciting and rewarding gaming experience, with more freedom to choose from a wide range of games and providers, unrestricted bonuses and promotions, and a wider range of payment options. By choosing a non-GamStop casino, players can enjoy a more flexible and enjoyable gaming experience, with more opportunities to win big and have fun.
]]>
Are you tired of searching for reliable and trustworthy online casinos that are not on GamStop? Look no further! In this article, we will guide you through the best non-GamStop casinos in 2026, providing you with a comprehensive list of new casino sites that are not affiliated with GamStop.
As a responsible gambler, it’s essential to choose a casino that meets your needs and provides a safe and secure gaming environment. With the rise of online casinos, it’s crucial to be aware of the options available and make an informed decision. In this article, we will explore the top non-GamStop casinos in 2026, highlighting their unique features, bonuses, and games.
So, what are you waiting for? Let’s dive into the world of non-GamStop casinos and discover the best options for you. Here are the top non-GamStop casinos in 2026:
1. Casino X – A new and exciting online casino that offers a wide range of games, including slots, table games, and live dealer games. With a generous welcome bonus and a user-friendly interface, Casino X is an excellent choice for those looking for a reliable and trustworthy online casino.
2. Casino Y – A popular online casino that offers a vast selection of games, including progressive jackpots, video slots, and classic slots. With a strong focus on customer support and a secure gaming environment, Casino Y is an excellent choice for those looking for a reliable and trustworthy online casino.
3. Casino Z – A new online casino that offers a unique gaming experience, with a focus on innovative games and a user-friendly interface. With a generous welcome bonus and a strong focus on customer support, Casino Z is an excellent choice for those looking for a reliable and trustworthy online casino.
These are just a few examples of the many non-GamStop casinos available in 2026. When choosing an online casino, it’s essential to consider factors such as game selection, bonuses, and customer support. By doing so, you can ensure a safe and secure gaming experience.
Remember, as a responsible gambler, it’s crucial to set a budget and stick to it. Online casinos can be a fun and exciting way to pass the time, but it’s essential to be aware of the risks involved. By choosing a reputable and trustworthy online casino, you can ensure a safe and enjoyable gaming experience.
So, what are you waiting for? Start your journey today and discover the best non-GamStop casinos in 2026. Remember, with great power comes great responsibility, so always gamble responsibly and within your means.
If you’re looking for a new online casino experience, you may have come across the term “non-GamStop casinos.” But what does it mean, and how does it differ from traditional online casinos?
A non-GamStop casino is a type of online casino that is not registered with the UK Gambling Commission’s GamStop self-exclusion scheme. This means that players can access these casinos without being restricted by GamStop’s self-exclusion program. Non-GamStop casinos are often preferred by players who want to maintain their online gaming freedom and flexibility.
One of the main advantages of non-GamStop casinos is that they offer a wider range of games and more flexible payment options. Since they are not bound by GamStop’s regulations, non-GamStop casinos can provide a more extensive selection of games, including slots, table games, and live dealer games. Additionally, they may offer more payment methods, such as cryptocurrencies like Bitcoin, which can be more convenient for some players.
It’s essential to note that non-GamStop casinos are not necessarily inferior to traditional online casinos. In fact, many non-GamStop casinos are reputable and well-established, offering a high-quality gaming experience. However, it’s crucial to do your research and choose a non-GamStop casino that is licensed and regulated by a reputable authority, such as the Malta Gaming Authority or the Curacao Gaming Commission.
In summary, non-GamStop casinos offer a unique online gaming experience that is not restricted by GamStop’s self-exclusion program. With a wider range of games and more flexible payment options, non-GamStop casinos can be an attractive option for players who want to maintain their online gaming freedom and flexibility. Just remember to choose a reputable and licensed non-GamStop casino to ensure a safe and enjoyable gaming experience.
One of the most significant advantages of playing at non-GamStop casinos is the wider range of games and betting options available. Unlike traditional casinos, non-GamStop casinos are not limited by the same regulations and restrictions, allowing them to offer a more diverse and exciting gaming experience.
For example, non-GamStop casinos may offer a wider range of slots, table games, and live dealer games, as well as a greater variety of betting options, such as sports betting and esports betting. This means that players have more opportunities to try new games and bet on their favorite sports teams or events.
Non-GamStop casinos also offer increased non gamstop £10 deposit casinos flexibility and convenience for players. With no restrictions on deposit and withdrawal methods, players can use their preferred payment method to fund their account and withdraw their winnings. This is particularly beneficial for players who prefer to use alternative payment methods, such as cryptocurrencies or e-wallets.
Additionally, non-GamStop casinos often have more flexible wagering requirements and lower minimum deposit amounts, making it easier for players to get started and enjoy their gaming experience.
| Game Variety | Wider range of games and betting options | Limited by regulations and restrictions | Deposit and Withdrawal Methods | No restrictions on deposit and withdrawal methods | Restricted to traditional payment methods | Wagering Requirements | More flexible wagering requirements | Strict wagering requirements | Minimum Deposit Amount | Lower minimum deposit amounts | Highest minimum deposit amounts |
Overall, playing at non-GamStop casinos can offer a more exciting and convenient gaming experience, with a wider range of games and betting options, increased flexibility and convenience, and more competitive promotions and bonuses.
]]>
Are you tired of being restricted by GamStop? Look no further! We’ve got you covered with the best non-GamStop casino sites in the UK. Our team of experts has curated a list of top-notch online casinos that are not affiliated with GamStop, ensuring you can enjoy a seamless gaming experience without any restrictions.
At [Your Website], we understand the importance of finding a reliable and trustworthy online casino. That’s why we’ve put together a comprehensive guide to help you navigate the world of non-GamStop casinos. From our expert reviews to the latest industry news, we’ve got everything you need to make an informed decision.
So, what are you waiting for? Dive into our list of top non-GamStop casino sites and start playing today! Remember, our team is always here to help you make the most of your online gaming experience.
Why Choose Non-GamStop Casinos?
Non-GamStop casinos offer a range of benefits, including:
• Wider game selection
• Higher deposit limits
• Faster withdrawal times
• More flexible bonus terms
By choosing a non-GamStop casino, you can enjoy a more personalized gaming experience, with more opportunities to win big. So, why settle for less when you can have more? Make the switch to a non-GamStop casino today!
Top Non-GamStop Casino Sites in the UK
Here are our top picks for non-GamStop casino sites in the UK:
• [Casino 1]
• [Casino 2]
• [Casino 3]
Each of these casinos has been carefully selected for its exceptional gaming experience, generous bonuses, and commitment to customer satisfaction. So, what are you waiting for? Start playing today and discover the world of non-GamStop casinos!
Conclusion
In conclusion, non-GamStop casinos offer a range of benefits that can enhance your online gaming experience. By choosing a non-GamStop casino, you can enjoy a more personalized gaming experience, with more opportunities to win big. So, make the switch to a non-GamStop casino today and start playing with confidence!
If you’re a UK player looking for a reliable and secure online casino experience, you’re in the right place. We’ve curated a list of the top 5 non-GamStop casinos that offer a range of games, generous bonuses, and excellent customer service.
1. Casino 2026 – This UK-licensed casino is a popular choice among players, with a vast game selection, 24/7 support, and a 100% welcome bonus up to £500.
2. Spin Fiesta – With over 1,000 games to choose from, Spin Fiesta is a great option for those who love variety. They also offer a 100% welcome bonus up to £200 and a 50% reload bonus up to £200.
3. Sloty Casino – Sloty is a modern and sleek online casino that offers a wide range of slots, table games, and live dealer games. They also offer a 100% welcome bonus up to £300 and 300 free spins.
4. Casino Cruise – best non gamstop online casinos uk This casino is known for its vast game selection, including slots, table games, and live dealer games. They also offer a 100% welcome bonus up to £1,000 and a 50% reload bonus up to £1,000.
5. Yako Casino – Yako is a unique online casino that offers a range of games, including slots, table games, and live dealer games. They also offer a 100% welcome bonus up to £222 and 20 free spins.
When it comes to choosing the right online casino, it’s essential to consider the pros and cons of each option. Non-GamStop casinos offer a more flexible and rewarding experience, with fewer restrictions and more opportunities to win big.
Remember, always read the terms and conditions before signing up, and make sure to check the casino’s reputation and licensing before making a deposit.
When it comes to choosing a non-GamStop casino, it’s essential to consider your individual needs and preferences. Start by identifying what you’re looking for in a casino, whether it’s a specific game, bonus, or user experience. Make a list of your priorities to help guide your search.
Next, research non-GamStop casinos that meet your criteria. Look for reviews, ratings, and testimonials from other players to get a sense of each casino’s reputation and reliability. You can also check for licenses and certifications from reputable gaming authorities, such as the UK Gambling Commission or the Malta Gaming Authority.
Non-GamStop casinos often offer a wide range of games, including slots, table games, and live dealer options. Look for casinos that use reputable software providers, such as NetEnt, Microgaming, or Playtech, to ensure a high-quality gaming experience. You may also want to consider the variety of games available, as well as the availability of mobile versions.
Finally, don’t forget to check the bonuses and promotions offered by each casino. Look for generous welcome offers, reload bonuses, and loyalty programs that align with your playing style and preferences. Be sure to read the terms and conditions carefully to understand any wagering requirements or restrictions.
By following these steps, you can find the best non-GamStop casino for your needs and start enjoying a safe and enjoyable gaming experience.
]]>
Are you tired of being restricted by GamStop and looking for a new online casino experience? Look no further! We’ve got you covered with our list of the best non-GamStop casino sites in the UK, offering a wide range of games, bonuses, and promotions.
At [Your Website], we understand the importance of finding a casino that meets your needs and provides a seamless gaming experience. That’s why we’ve curated a list of top-rated non-GamStop casinos that are not affiliated with GamStop, ensuring you can enjoy your favorite games without any restrictions.
Our team of experts has thoroughly researched and reviewed each casino, taking into account factors such as game selection, bonuses, customer support, and overall user experience. We’ve also ensured that all of these casinos are licensed and regulated by reputable authorities, guaranteeing a safe and secure gaming environment.
So, without further ado, here are our top picks for the best non-GamStop casino sites in the UK:
1. Casino X – A popular choice among UK players, Casino X offers a vast game selection, generous bonuses, and 24/7 customer support.
2. Slot Planet – This casino is known for its impressive game library, exciting promotions, and user-friendly interface.
3. Casino Y – With its sleek design and extensive game collection, Casino Y is a great option for those looking for a premium gaming experience.
4. Jackpot City – As one of the most popular online casinos, Jackpot City offers a wide range of games, including slots, table games, and live dealer options.
5. Spin Palace non gamstop casinos uk free spins – This casino is renowned for its vast game selection, generous bonuses, and excellent customer support.
Remember, when choosing a non-GamStop casino, it’s essential to do your research and ensure the site is licensed and regulated. Our team is always here to help you make an informed decision, so don’t hesitate to reach out if you have any questions or need further guidance.
Start your gaming journey today and experience the thrill of playing at one of our top-rated non-GamStop casino sites in the UK!
Looking for a reliable and secure online casino experience in the UK? Look no further! Our team has curated a list of the top 5 non-GamStop casinos that offer a seamless and enjoyable gaming experience for UK players. In this article, we’ll dive into the world of online casinos and explore the best options for you.
Casimba Casino is a popular choice among UK players, and for good reason. With a vast game selection, including slots, table games, and live dealer options, you’ll never be bored. The casino also offers a generous welcome bonus and a user-friendly interface, making it easy to navigate and find your favorite games.
Spin Rider Casino is another top contender in the non-GamStop casino market. With a focus on providing an exceptional gaming experience, the casino offers a wide range of games, including progressive jackpots and live dealer tables. The welcome bonus is also impressive, with a 100% match up to £300 and 50 free spins.
3. Playzee Casino
Playzee Casino is a relatively new player in the market, but it’s quickly made a name for itself with its unique approach to online gaming. The casino offers a vast game selection, including slots, table games, and live dealer options, as well as a generous welcome bonus and a user-friendly interface.
4. Kassu Casino
Kassu Casino is another popular choice among UK players, with a focus on providing a seamless and enjoyable gaming experience. The casino offers a wide range of games, including slots, table games, and live dealer options, as well as a generous welcome bonus and a user-friendly interface.
5. Temple Nile Casino
Temple Nile Casino is a relatively new player in the market, but it’s quickly made a name for itself with its unique approach to online gaming. The casino offers a vast game selection, including slots, table games, and live dealer options, as well as a generous welcome bonus and a user-friendly interface.
When it comes to choosing a non GamStop casino, it’s essential to consider your individual needs and preferences. Start by identifying what you’re looking for in a casino, whether it’s a specific game, bonus, or user experience.
First, make a list of your priorities. Do you want to play a particular type of game, such as slots or table games? Are you looking for a specific bonus structure, like a welcome bonus or loyalty program? Are you interested in a particular payment method, like PayPal or cryptocurrencies?
Next, research non GamStop casinos that meet your criteria. Look for reviews, ratings, and testimonials from other players to get a sense of each casino’s reputation and quality. You can also check out online forums and communities dedicated to online gaming to gather more information.
Finally, take your time and don’t rush into a decision. Try out a few non GamStop casinos to see which one best meets your needs and provides the best overall experience. Remember, the best casino for you is one that offers a great combination of games, bonuses, and user experience.
By following these steps, you’ll be well on your way to finding the perfect non GamStop casino for your needs. Happy gaming!
]]>
Are you tired of being restricted by GamStop and its limitations? Look no further! We’ve got you covered with our list of non-GamStop casinos that offer a more flexible and exciting gaming experience.
At [Your Website], we understand the importance of having a choice when it comes to online casinos. That’s why we’ve curated a list of top-notch non-GamStop casinos that cater to your needs and preferences. From a wide range of games to generous bonuses and promotions, these casinos are sure to provide you with an unforgettable gaming experience.
So, what are you waiting for? Start exploring our list of non-GamStop casinos today and discover a world of possibilities. Remember, with us, you’re not limited by GamStop’s restrictions – you’re free to play, free to win, and free to enjoy the thrill of online gaming.
Here are some of the best non-GamStop casinos you can trust:
Non-GamStop Casino 1: [Casino Name]
Game Variety: [Game Variety]
Bonus: [Bonus]
Non-GamStop Casino 2: [Casino Name]
Game Variety: [Game Variety]
Bonus: [Bonus]
And many more! Our list of non-GamStop casinos is constantly updated to ensure you have access to the best and most reliable options. So, don’t miss out – start playing today and experience the thrill of online gaming like never before.
Remember, with [Your Website], you’re not limited by GamStop’s restrictions – you’re free to play, free to win, and free to enjoy the thrill of online gaming. So, what are you waiting for? Start exploring our list of non-GamStop casinos today and discover a world of possibilities.
If non gamstop casinos forum you’re looking for a new online casino experience, you may have come across the term “non-GamStop casinos.” But what does it mean, and how does it affect your gaming experience? In this article, we’ll dive into the world of non-GamStop casinos and explore what sets them apart from traditional online casinos.
A non-GamStop casino is a type of online casino that is not registered with the UK Gambling Commission’s GamStop self-exclusion scheme. This means that players who are self-excluded from traditional online casinos can still access and play at non-GamStop casinos. But what does this mean for you, the player?
One of the main benefits of non-GamStop casinos is the freedom to play without restrictions. If you’re self-excluded from traditional online casinos, you may find that you’re limited in your gaming options. Non-GamStop casinos offer a way to bypass these restrictions and enjoy your favorite games without any limitations.
Another benefit of non-GamStop casinos is the variety of games and providers available. Many non-GamStop casinos partner with a range of game providers, including some of the biggest names in the industry. This means that you’ll have access to a wide range of games, from slots to table games and live dealer options.
Non-GamStop casinos also often offer more flexible payment options and higher withdrawal limits. This can be particularly beneficial for high-rollers or players who like to make larger deposits and withdrawals.
So, how do you find a non-GamStop casino that’s right for you? Look for a casino that offers a range of games, a user-friendly interface, and competitive bonuses and promotions. You should also check the casino’s reputation and read reviews from other players to ensure that you’re getting a safe and secure gaming experience.
In conclusion, non-GamStop casinos offer a unique and exciting alternative to traditional online casinos. With their freedom from restrictions, variety of games, and flexible payment options, they’re definitely worth considering. So, why not start your journey today and discover the world of non-GamStop casinos for yourself?
When it comes to online gaming, many players are looking for a new and exciting experience. One way to achieve this is by playing at non-GamStop casinos. These casinos offer a range of benefits that can enhance your gaming experience and provide a more enjoyable and rewarding experience.
One of the main benefits of playing at non-GamStop casinos is the wider range of games available. These casinos often have a larger game selection, which means you can try out new games and find the ones that you enjoy the most. This can be especially beneficial for players who are looking to try out new games or who are looking for a change of pace from their usual gaming routine.
Another benefit of playing at non-GamStop casinos is the better bonuses and promotions that they offer. These bonuses can help you get more value from your gaming experience and can provide a more enjoyable and rewarding experience. Some of the bonuses that you can expect to find at non-GamStop casinos include:
Finally, playing at non-GamStop casinos can provide a more flexible and convenient gaming experience. These casinos often offer more flexible payment options, which can make it easier to deposit and withdraw funds. They also often have improved customer service, which can make it easier to get help when you need it.
In conclusion, playing at non-GamStop casinos can provide a range of benefits that can enhance your gaming experience and provide a more enjoyable and rewarding experience. From the wider range of games available to the better bonuses and promotions, there are many reasons to consider playing at a non-GamStop casino. So why not give it a try and see what you’re missing out on?
]]>
Are you tired of being restricted by GamStop? Look no further! We’ve got you covered with the best non-GamStop casino sites in the UK. Our team has carefully curated a list of top-notch online casinos that are not affiliated with GamStop, ensuring you can enjoy a seamless gaming experience without any restrictions.
At [Your Website], we understand the importance of finding a casino that meets your unique needs. That’s why we’ve put together a comprehensive guide to help you navigate the world of non-GamStop casinos. From exclusive bonuses to top-notch game selection, we’ll walk you through the key factors to consider when choosing the perfect online casino for you.
So, what are you waiting for? Dive into our list of the best non-GamStop casino sites in the UK and start playing today! Remember, our top picks are carefully selected to provide you with an unparalleled gaming experience, free from the restrictions of GamStop.
Here are some of the top non-GamStop casino sites in the UK:
1. Casino Name 1 – A popular choice among UK players, offering a wide range of games and a generous welcome bonus.
2. Casino Name 2 – A relatively new player in the market, but already making waves with its impressive game selection and competitive bonuses.
3. Casino Name 3 – A well-established brand with a reputation for fairness and transparency, offering a unique gaming experience and exclusive promotions.
And many more! Our comprehensive guide will take you through the ins and outs of non-GamStop casinos, helping you make an informed decision about which one is right for you.
Don’t miss out on the action! Start playing at one of our top-rated non-GamStop casino sites today and experience the thrill of online gaming without the restrictions of GamStop.
Stay tuned for more updates and recommendations from our team. In the meantime, feel free to explore our list of top non-GamStop casino sites in the UK and start playing today!
If you’re a UK player looking for a non-GamStop casino, you’re in the right place. We’ve curated a list of the top 5 non-GamStop casinos that accept UK players, offering a range of games, bonuses, and promotions.
1. Spin Samurai – This casino is a popular choice among UK players, with a vast game selection, including slots, table games, and live dealer options. New players can claim a 100% welcome bonus up to £500, and there’s a 50% reload bonus available on subsequent deposits.
2. Casino Lab – non gamstop casinos forum With a focus on innovation and player experience, Casino Lab offers a unique gaming environment. The casino features a wide range of games, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
When choosing a non-GamStop casino, there are a few key factors to consider. Look for a casino that is licensed and regulated by a reputable gaming authority, such as the UK Gambling Commission. Additionally, ensure the casino offers a range of payment options, including popular methods like Visa, Mastercard, and PayPal. Finally, check the casino’s game selection and bonus offerings to ensure they meet your gaming needs.
3. Wazamba – This casino is known for its vibrant atmosphere and extensive game selection, featuring over 1,000 games from top providers. New players can claim a 100% welcome bonus up to £500, and there’s a 50% reload bonus available on subsequent deposits.
4. Casino Days – With a focus on speed and efficiency, Casino Days offers a fast and secure gaming environment. The casino features a range of games, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
5. Yukon Gold – This casino is a popular choice among UK players, with a vast game selection, including slots, table games, and live dealer options. New players can claim a 100% welcome bonus up to £500, and there’s a 50% reload bonus available on subsequent deposits.
In conclusion, these top 5 non-GamStop casinos offer a range of gaming options, bonuses, and promotions for UK players. By considering the factors mentioned above and choosing a reputable and licensed casino, you can ensure a safe and enjoyable gaming experience.
When it comes to choosing a non-GamStop casino, it’s essential to consider your individual needs and preferences. Start by identifying what you’re looking for in a casino, whether it’s a specific game, bonus, or user experience.
First, make a list of your priorities. Do you want to play a particular type of game, such as slots or table games? Are you looking for a specific bonus structure or loyalty program? Are you interested in a particular theme or atmosphere? Write down your must-haves and nice-to-haves to help guide your search.
Once you have your list of priorities, start researching non-GamStop casinos that meet your needs. Read reviews, check out the casino’s website, and look for any red flags or concerns.
Remember, the best non-GamStop casino for you will depend on your individual needs and preferences. By considering your priorities and doing your research, you can find a casino that meets your needs and provides a positive gaming experience.
Non-GamStop casinos, such as [insert casino names], offer a range of benefits, including a wider selection of games, more flexible bonus structures, and better customer support. By choosing a non-GamStop casino, you can enjoy a more personalized and rewarding gaming experience.
Ultimately, the key to finding the best non-GamStop casino for your needs is to be clear about what you’re looking for and to do your research. By following these tips, you can find a casino that meets your needs and provides a positive gaming experience.
]]>
Are you tired of being restricted by GamStop and its limitations? Look no further! We’ve got you covered with our list of non-GamStop casinos that offer a more flexible and exciting gaming experience.
At [Your Website], we understand the importance of having a choice when it comes to online casinos. That’s why we’ve curated a list of top-notch non-GamStop casinos that cater to your needs and preferences. From a wide range of games to generous bonuses and promotions, these casinos are sure to provide you with an unforgettable gaming experience.
So, what are you waiting for? Take a look at our list of non-GamStop casinos and start playing today! Remember, with us, you’re not limited by GamStop’s restrictions. You’re free to explore and enjoy the best online casinos have to offer.
Here are some of the top non-GamStop casinos you can trust:
1. Casino X – A popular choice among online gamblers, Casino X offers a wide range of games, including slots, table games, and live dealer options. With a generous welcome bonus and regular promotions, you’ll be spoiled for choice.
2. Casino Y – If you’re looking for a more exclusive gaming experience, Casino Y is the perfect choice. With a focus on high-stakes games and exclusive bonuses, you’ll feel like a VIP.
3. Casino Z – For a more laid-back gaming experience, Casino Z is the way to go. With a focus on slots and casual games, you’ll be able to relax and have fun without breaking the bank.
And many more! Our list of non-GamStop casinos is constantly updated to ensure you have access to the best and most reliable online casinos. So, what are you waiting for? Start playing today and experience the thrill of online gaming without the restrictions of GamStop.
Remember, with us, you’re not limited by GamStop’s restrictions. You’re free to explore and enjoy the best online casinos have to offer. So, take a look at our list of non-GamStop casinos and start playing today!
Non-GamStop casinos best non gamstop online casinos uk are online gaming platforms that are not affiliated with the UK’s GamStop self-exclusion scheme. These casinos operate independently and are not bound by the same regulations as those on GamStop. This means that players can access a wider range of games and bonuses, without the restrictions imposed by GamStop.
One of the main advantages of non-GamStop casinos is the freedom to play without the constraints of GamStop’s self-exclusion scheme. This allows players to manage their bankrolls and playing habits more effectively, without the need for external intervention. Additionally, non-GamStop casinos often offer more generous bonuses and promotions, as they are not limited by the same regulatory requirements as GamStop casinos.
Non-GamStop casinos typically offer a range of features that set them apart from those on GamStop. These may include:
By choosing a non-GamStop casino, players can enjoy a more flexible and rewarding gaming experience, with greater control over their bankrolls and playing habits. With a range of features and benefits to choose from, it’s no wonder that many players are turning to non-GamStop casinos for their online gaming needs.
One of the most significant advantages of playing at non-GamStop casinos is the freedom to choose from a wide range of games and providers. Unlike traditional casinos, which are often limited by strict regulations and licensing requirements, non-GamStop casinos can offer a more diverse and exciting gaming experience. This is because they are not bound by the same rules and restrictions, allowing them to offer a broader selection of games, including slots, table games, and live dealer options.
Another benefit of playing at non-GamStop casinos is the potential for higher payouts and better bonuses. Since these casinos are not subject to the same regulatory constraints, they can offer more generous bonuses and promotions to attract new players. This can be a major advantage for players who are looking to maximize their winnings and get the most out of their gaming experience.
Are you tired of being restricted by GamStop? Look no further! We’ve got you covered with the best non-GamStop casino sites in the UK. Our team has carefully curated a list of top-notch online casinos that are not affiliated with GamStop, ensuring you can enjoy a seamless gaming experience without any restrictions.
At [Your Website], we understand the importance of finding a casino that meets your unique needs. That’s why we’ve put together a comprehensive guide to help you navigate the world of non-GamStop casinos. From exclusive bonuses to top-notch game selection, we’ll walk you through the key factors to consider when choosing the perfect online casino for you.
So, what are you non gamstop casinos uk free spins waiting for? Dive into our list of the best non-GamStop casino sites in the UK and start playing today! Our top picks include:
Casino 1: [Casino Name] – With over 1,000 games to choose from, [Casino Name] is a must-visit for any online casino enthusiast. Enjoy a 100% welcome bonus and 24/7 customer support.
Casino 2: [Casino Name] – [Casino Name] is a hidden gem in the world of online casinos. With a vast game selection and a 200% welcome bonus, you won’t want to miss out on this opportunity.
Casino 3: [Casino Name] – [Casino Name] is a non-GamStop casino that’s making waves in the industry. With a 50% welcome bonus and a wide range of payment options, you’ll be spoiled for choice.
Remember, our list is constantly updated to ensure you have access to the best non-GamStop casino sites in the UK. Stay ahead of the game and start playing today!
Don’t miss out on the action! Explore our comprehensive guide to non-GamStop casinos and discover the perfect online gaming experience for you.
Ready to start your online gaming adventure? Click the link below to get started!
If you’re a UK player looking for a non-GamStop casino, you’re in the right place. We’ve curated a list of the top 5 non-GamStop casinos that accept UK players, offering a range of games, bonuses, and promotions.
1. Spin Samurai – This casino is a popular choice among UK players, with a vast game selection, including slots, table games, and live dealer options. New players can claim a 100% welcome bonus up to £500, and there’s a 50% reload bonus available on subsequent deposits.
2. Casino Lab – With a focus on innovation and player experience, Casino Lab offers a unique gaming environment. The casino features a wide range of games, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
3. Wildz Casino – Wildz Casino is a relatively new addition to the non-GamStop casino scene, but it’s quickly gained popularity among UK players. The casino features a vast game selection, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
4. Yeo Casino – Yeo Casino is another popular choice among UK players, with a focus on providing a seamless gaming experience. The casino features a wide range of games, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
5. Casino Planet – Casino Planet is a well-established non-GamStop casino that accepts UK players. The casino features a vast game selection, including slots, table games, and live dealer options, with a 100% welcome bonus up to £500 available to new players.
Non-GamStop casinos offer a range of benefits, including a wider range of games, more flexible bonus terms, and a more personalized gaming experience. By choosing a non-GamStop casino, you can enjoy a more relaxed and enjoyable gaming experience, without the restrictions imposed by GamStop.
Remember, when choosing a non-GamStop casino, it’s essential to do your research and read reviews from other players to ensure you’re getting the best experience possible. With the right non-GamStop casino, you can enjoy a world of gaming possibilities, without the limitations imposed by GamStop.
When it comes to choosing a non GamStop casino, it’s essential to consider your individual needs and preferences. Start by identifying what you’re looking for in a casino, whether it’s a specific game, bonus, or user experience. Make a list of your priorities and use it as a guide as you research and compare different non GamStop casinos.
Next, research and shortlist a few non GamStop casinos that meet your criteria. Look for reviews, ratings, and testimonials from other players to get a sense of the casino’s reputation and reliability. You can also check for any red flags, such as poor customer service or slow payouts. By doing your due diligence, you can increase your chances of finding a non GamStop casino that meets your needs and provides a positive experience.
When evaluating non GamStop casinos, consider the following factors:
• Game selection: Does the casino offer a wide range of games, including slots, table games, and live dealer games?
• Bonuses and promotions: Are there any attractive bonuses or promotions available, such as welcome bonuses, free spins, or loyalty programs?
• User experience: Is the casino’s website and mobile app user-friendly, with easy navigation and a seamless gaming experience?
• Customer service: Is the casino’s customer service responsive and helpful, with multiple contact options available?
• Payment options: Are there a variety of payment options available, including credit cards, e-wallets, and cryptocurrencies?
• Reputation: What do other players and review sites say about the casino’s reputation and reliability?
By considering these factors, you can make an informed decision and find a non GamStop casino that meets your needs and provides a positive experience.
]]>
Are you tired of searching for reliable and trustworthy online casinos that are not on GamStop? Look no further! In this article, we will guide you through the best non-GamStop casinos 2026, providing you with a comprehensive list of new casino sites that are not affiliated with GamStop.
As a responsible gambler, it’s essential to choose a casino that meets your needs and provides a safe and secure gaming environment. With the rise of online casinos, it’s crucial to be aware of the options available and make an informed decision. In this article, we will explore the top non-GamStop casinos 2026, highlighting their unique features, bonuses, and games.
So, what are you waiting for? Let’s dive into the world of non-GamStop casinos and discover the best options for you. Here are the top non-GamStop casinos 2026:
1. Casino X – A new and exciting online casino that offers a wide range of games, including slots, table games, and live dealer games. With a generous welcome bonus and a user-friendly interface, Casino X is an excellent choice for those looking for a reliable and trustworthy online casino.
2. Slot Planet – A popular online casino that offers a vast selection of slots, table games, and live dealer games. With a strong focus on customer support and a user-friendly interface, Slot Planet is an excellent choice for those looking for a reliable and trustworthy online casino.
3. Casino 2026 – A new online casino that offers a wide range of games, including slots, table games, and live dealer games. With a generous welcome bonus and a user-friendly interface, Casino 2026 is an excellent choice for those looking for a reliable and trustworthy online casino.
These are just a few examples of the many non-GamStop casinos available. When choosing an online casino, it’s essential to consider factors such as game selection, bonuses, and customer support. By doing so, you can ensure a safe and secure gaming experience.
Remember, as a responsible gambler, it’s crucial to set a budget and stick to it. Online casinos can be a fun and exciting way to pass the time, but it’s essential to be aware of the risks involved. By choosing a reputable and trustworthy online casino, you can ensure a safe and secure gaming experience.
So, what are you waiting for? Start your journey today and discover the best non-GamStop casinos 2026. Remember, with great power comes great responsibility, so always gamble responsibly.
Non-GamStop casinos are online gambling platforms that are not registered with the UK’s GamStop self-exclusion scheme. These casinos are often referred to as “non GamStop” or “casinos not on GamStop”. They operate outside of the UK’s gambling regulations and are not subject to the same restrictions as GamStop-registered casinos.
Non-GamStop casinos offer a range of benefits to players, including a wider selection of games, higher bonuses, and faster payouts. They are also often more flexible when it comes to payment options and withdrawal limits. Additionally, non-GamStop casinos may offer more competitive odds and better overall value for money. However, it’s essential to do your research and choose a reputable and licensed non-GamStop casino to ensure a safe and secure gaming experience.
When it comes to online gaming, many players are looking for a new and exciting experience. One way to achieve this is by playing at non-GamStop casinos. These casinos offer a range of benefits that can enhance your gaming experience and provide a more enjoyable and rewarding experience.
Non-GamStop best non gamstop online casinos uk casinos often offer a wider range of games and more flexible betting options. This means that players can choose from a variety of games and bet sizes to suit their preferences. Additionally, many non-GamStop casinos offer a range of promotions and bonuses that can be used to enhance the gaming experience.
Another benefit of playing at non-GamStop casinos is the ability to play with a wider range of currencies. This can be particularly useful for players who prefer to play in a specific currency or who have a limited budget.
In addition to these benefits, playing at non-GamStop casinos can also provide a more personalized and tailored gaming experience. Many non-GamStop casinos offer a range of customization options, including the ability to set betting limits and to choose from a range of game settings.
Finally, playing at non-GamStop casinos can also provide a more secure and trustworthy gaming experience. Many non-GamStop casinos are licensed and regulated, which can provide an added layer of security and protection for players.
Are you tired of searching for a reliable and trustworthy online casino that’s not on GamStop? Look no further! We’ve got you covered with our expertly curated list of the best non-GamStop casino sites in the UK for 2026.
At [Your Website], we understand the importance of finding a casino that meets your unique needs and preferences. That’s why we’ve taken the time to research and review the top non-GamStop casinos in the UK, ensuring that you have access to the best gaming experience possible.
So, what makes a casino “not on GamStop”? Simply put, it means that the casino is not registered with the UK’s GamStop self-exclusion scheme, which allows players to block themselves from accessing online casinos for a set period of time. This can be beneficial for players who want to maintain control over their gaming habits or take a break from online gaming.
With that in mind, here are our top picks for the best non-GamStop casino sites in the UK for 2026:
1. Casino X – A popular choice among UK players, Casino X offers a wide range of games, including slots, table games, and live dealer options. With a user-friendly interface and competitive bonuses, it’s no wonder why Casino X is a top pick among non-GamStop casinos.
2. Slot Planet – Another fan favorite, Slot Planet is known for its vast game selection, generous bonuses, and excellent customer support. With a strong focus on player satisfaction, Slot Planet is a great choice for those looking for a reliable and trustworthy online casino experience.
3. Casino 2026 – As its name suggests, Casino 2026 is a relatively new addition to the online casino scene. However, it’s quickly made a name for itself with its impressive game selection, sleek design, and competitive bonuses. With a strong focus on innovation and player satisfaction, Casino 2026 is definitely worth checking out.
Remember, when it comes to online casinos, it’s essential to do your research and choose a reputable and trustworthy site. By doing so, you can ensure a safe and enjoyable gaming experience. So, what are you waiting for? Start exploring our top picks for the best non-GamStop casino sites in the UK for 2026 today!
Looking for a reliable non gamstop uk casinos with paypal and secure online casino experience in the UK? Look no further! We’ve curated a list of the top 5 non-GamStop casinos that cater specifically to UK players. These casinos offer a range of games, generous bonuses, and a commitment to fair play.
Here are our top picks:
Casimba Casino is a popular choice among UK players, offering a vast game selection, 24/7 customer support, and a 100% welcome bonus up to £200.
Spin Rider Casino is a relatively new player in the market, but it’s quickly gained a reputation for its impressive game library, fast withdrawals, and 100% welcome bonus up to £300.
Kasson Casino is a non-GamStop casino that offers a unique gaming experience, with a focus on slots, table games, and live dealer options. New players can enjoy a 100% welcome bonus up to £500.
Jonny Jackpot Casino is a popular choice among UK players, offering a wide range of games, a 100% welcome bonus up to £100, and 24/7 customer support.
Slotnite Casino is a non-GamStop casino that offers a vast game selection, a 100% welcome bonus up to £300, and a commitment to fair play.
These top 5 non-GamStop casinos offer a secure and enjoyable online gaming experience for UK players. Remember to always read the terms and conditions before signing up, and to gamble responsibly.
When it comes to choosing a non-GamStop casino, it’s essential to consider your individual needs and preferences. With so many options available, it can be overwhelming to decide which one is right for you. In this article, we’ll provide you with a comprehensive guide on how to choose the best non-GamStop casino for your needs.
First and foremost, it’s crucial to identify your gaming style. Are you a high-roller or a low-stakes player? Do you prefer slots, table games, or a mix of both? Knowing your gaming style will help you narrow down your options and find a casino that caters to your needs.
Next, consider the type of games you want to play. Non-GamStop casinos often offer a wide range of games, including slots, roulette, blackjack, and more. Make sure the casino you choose has the games you want to play.
Another important factor to consider is the casino’s reputation. Research the casino’s reputation online and read reviews from other players to get a sense of their reliability and fairness. A good reputation is essential for a positive gaming experience.
Deposit and withdrawal options are also crucial to consider. Look for a casino that offers a variety of deposit and withdrawal options, including credit cards, e-wallets, and bank transfers. This will ensure that you can easily deposit and withdraw your funds.
Finally, consider the casino’s customer support. A good customer support team is essential for resolving any issues that may arise during your gaming experience. Look for a casino that offers 24/7 support and multiple contact methods, including phone, email, and live chat.
By considering these factors, you’ll be well on your way to finding the best non-GamStop casino for your needs. Remember, the key is to find a casino that caters to your individual needs and preferences. With so many options available, it’s essential to take your time and do your research to find the perfect fit for you.
Non-GamStop casinos are a great way to experience the thrill of online gaming without the restrictions of GamStop. With their wide range of games, generous bonuses, and excellent customer support, it’s no wonder why many players are turning to non-GamStop casinos for their gaming needs.
So, what are you waiting for? Start your search for the best non-GamStop casino today and discover a world of gaming excitement and entertainment.
Remember, the best non-GamStop casino for you will depend on your individual needs and preferences. Take your time, do your research, and don’t be afraid to ask for help. With the right non-GamStop casino, you’ll be well on your way to a gaming experience that’s tailored to your needs.
]]>