/*! 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 = '<
NVIDIA’s DRIVE Thor, for instance, offers up to 2000 TOPS of AI inference performance. It enables sensor fusion and control for advanced driver assistance and autonomous driving. Luxury car brands are experiencing growth due to increased tangible luxury offerings and rising disposable incomes. The demand for sustainable and eco-friendly transportation, like electric luxury vehicles, also drives market growth. The adoption of pre-owned luxury cars is increasing due to easy access to financing and lower entry prices. Manufacturers are investing in innovative mobility technologies, such as personal voice assistance, autonomous driving, and AI and ML, creating a positive market outlook.
While China’s dominance in EV and automotive production at large is not anything new, the movements being made in emerging economies outside of China are. The automotive industry is many things, but it is never idle; it thrives on the pulse of innovation, resilience in hard times, and mobility transformation. Every year brings with it new shifts in technology, consumer behaviour, and market dynamics, all of which shape and build automotive as a cornerstone industry of the world. The AI systems also learn about the driver’s preferences in music and temperature, making the driving experiences as enjoyable as possible.
Overlanding, a newer trend, combines off-roading with remote travel and camping, with products like mounted tents falling under this category. As per the traditional method, we used to visit the dealer and purchase vehicles from him, and the dealer used to make transactions with OEMs. However, as per the new Agency model, we will get to see that the people would directly be dealing with the OEMs and the dealer’s profit would be shared by OEMs. That will enhance in gaining the trust of society and the brand’s potential customers. Consumers thoroughly research their preferred car on their mobile phones, searching for the best offers and dealerships in their area. Therefore, websites must be easily readable and accessible on mobile devices, with clear calls to action.
Moreover, automakers and tier-suppliers are increasingly focusing on sustainable steel production to lower emissions across their supply chains. Further, Jaguar Land Rover is pioneering a closed-loop recycling process for seat foam, turning waste Blogstrove on VIN decoder importance from old vehicles into high-quality material for new ones. This innovative, circular production approach supports sustainability goals by reducing landfill waste and advancing circular economy practices in automotive manufacturing. The UK’s automotive sector offers a compelling illustration of the progress being made.
Go Way Beyond Traditional Industry Expertise: Our Unique PerspectiveThis also presents an emerging opportunity to connect the vehicle ecosystem, creating a dynamic adaptation of data for road and weather conditions, assisted by IoT-enabled devices. Car companies plan to integrate powertrain components in the next five to ten years by combining onboard chargers with batteries. Tesla already employs single inverter housings across its models, offering efficient integration of power electronics. This shift is driven by the growing need for more efficient power management in electric vehicles, resulting in smarter and more streamlined EV designs. 2025 will witness the automotive industry transitioning from Level 2 autonomy to Levels 2.5 and 3, representing a substantial evolution in automotive technology and enhancing vehicle automation and safety. Almost 40% of all autonomous vehicles sold in 2025 are predicted to have L2 ADAS features.
These advancements are driving the future of connected vehicles, which are increasingly becoming a standard feature in new cars. Modern vehicles are now equipped with a unique digital identity, making it easier to track and share data for applications like insurance, driver safety, predictive maintenance, and fleet management. Nigerian startup Revive Earth develops the Revive Kit, to convert petrol vehicles into efficient EVs.
In 2022, the automotive industry’s automotive digital marketing spending increased to $17 billion and is predicted to keep growing in 2025. Experts anticipate a rise in digital advertising spending, driven by the growing mobile and social media usage rates. Increased government focus on charging networks will be needed to support the expanding EV fleet. The autonomous vehicle sector will advance as UN regulators lift their speed limit. In the United States, the newly appointed administration has issued several executive orders that will likely have drastic impacts on both global and national automotive markets. One such order significantly impacts the future of EVs and EV infrastructure by rolling back policies that once supported their growth.
It also uses regenerative braking to capture and store energy in the car’s battery. The APH-01 incorporates flax fiber in its body shell, which reduces weight, increases impact resistance, and improves vibration damping. In addition to enhancing energy efficiency, regenerative braking systems reduce greenhouse gas emissions by recovering energy during braking to support global efforts to meet stricter emission norms. Keyvault raised USD 1 million in January 2025 to introduce smartphone-enabled car keys in the US, following the trend of incorporating smart device features into automobiles. Mercedes-Benz is also using generative AI to include conversational assistants for improving user experiences and redefining in-car interactions. The number of connected cars worldwide will likely reach 400 million by 2025 up from 237 million in 2021.
We expect to see the concept of Mobility-as-a-Service (MaaS) develop through 2025. Initial deployments focus on simpler, grid-like cities such as Phoenix in the USA, Milton Keynes in the UK, and Singapore. Soon, this will expand to more complex urban environments as vehicle access becomes increasingly prioritised over ownership among the driving masses.
This regulatory advancement, combined with growing environmental awareness, is accelerating the shift towards electric mobility. Canadian startup Aadhya Navik designs software solutions that improve safety, comfort, and traffic efficiency in autonomous driving. Its vehicle control system processes passenger comfort thresholds related to acceleration, deceleration, and jerk rate. It then adjusts driving decisions to minimize motion sickness and maintain smooth operation.
Autonomous driving will continue progressing from Level 2+ driver-assist to Level 3 conditional autonomy in geo-fenced areas. Full Level 4 and 5 autonomy remain years away due to regulatory, ethical, and technical challenges. Expect more robotaxi pilots, fleet autonomy, and advanced safety features integrated into mainstream cars. The focus will also be on cybersecurity and fail-safe systems to build consumer trust.
Automakers are responding by integrating carbon-neutral initiatives across their value chains. This includes upstream supply chains and downstream life cycle phases like recycling. Moreover, Asia-Pacific is the fastest-growing region, with a projected CAGR of 14.8%. This is fueled by increased vehicle production and sales in China, Japan, and South Korea.
Examples are bikes, scooters, and mopeds, as well as the electric versions of these vehicles. The chip shortage is proving to be costly for the industry with many auto manufacturers shutting down plants due to low supply. Increasing battery efficiency as well as EV charging infrastructure can speed up adoption. Because of this growth, it’s estimated that there are more than 40 million electric cars on the road. Espite growing inventory levels, new vehicle prices continue to rise, reaching a record average transaction price of $49,507 in December 2022. The best-selling vehicle in the US, the Ford F-Series pickup, has an average price of $66,451, placing it in the luxury category.
This facilitates the integration of Apple CarPlay, Google Android Auto, and media streaming into in-vehicle infotainment systems. UK-based startup WF Telematics offers vehicle and asset tracking solutions for businesses seeking efficient fleet management and asset monitoring. Its vehicle tracking system provides 24/7 real-time visibility, supported by self-install and engineer-fitted options, with no minimum fleet size required. With the introduction of 5G networks, advanced telematics features like real-time diagnostics, autonomous driving, and improved safety systems are becoming even more feasible.
Maximising the ROI to investors and stakeholders while remaining competitive will be priorities of the industry. The continued global expansion of various players will require a strategic focus on supply chain efficiencies and may bring transformation and consolidation in the industry. Figures from the last few years show that the EV adoption rate is still slow at a global level. However, the share of cars that are electric (hybrid and full electric) continues to rise. Also, despite the slowing adoption rate, data has shown that the number of electric and hybrid vehicles actually on the road has dramatically increased (from 26 million in 2022 to 40 million in 2023). Regardless, with the continued global slowdown of EV adoption, we can also expect original equipment manufacturers (OEMs) to follow suit, with a decrease in the level of production, especially in the West.
Autonomous vehicles are reshaping mobility, from AI‑powered perception to intelligent infrastructure and generative simulation. This report explores how breakthrough technologies are accelerating the shift toward safer, smarter, and more sustainable transportation systems worldwide. Automakers will continue to incorporate these systems into even more affordable models, making safety technologies more accessible to a broader range of consumers. By leveraging tech and sustainable practices, the automotive sector can meet the challenges of tomorrow while delivering exceptional value to consumers.
Conclusion: Navigating the Future of AutomotiveToyota unveiled its forward-thinking approach to electric vehicle design, focusing on sustainability, performance, and cutting-edge technology. Peugeot introduced groundbreaking technologies like the Hypersquare control system and steer-by-wire, marking a significant leap in electric vehicle design and user experience. These innovations represent the brand’s commitment to redefining driving dynamics in the EV era.
The startup’s platform combines augmented reality (AR), smart camera, and surround-view monitoring to illuminate the route on turns, curves, slopes as well as complex junctions. This assists the drivers in keeping lanes, prevents collisions, and enables autonomous driving options. Moreover, the solution is customizable to any car model or specific OEM requirements. Additionally, smart virtual assistants are emerging as a key HMI feature, aiding drivers and passengers in interacting with vehicles and external services. The global Automotive Human Machine Interface market, valued at USD 70.41 billion in 2022, is expected to grow significantly, reflecting these advancements in automotive technology.
It enhances safety via driver-assist features and promises to revolutionize mobility with robotaxis and freight automation. Its progress influences OEM investments, partnerships with tech firms, and consumer expectations. While full autonomy is still years away, incremental advances are reshaping vehicle capabilities and market offerings today. These material innovations are also crucial to meeting evolving regulations, particularly the EU’s stringent emission standards. For EVs specifically, weight reduction translates directly into extended range and improved battery performance.
By optimizing driving routes, connected cars help reduce emissions, contributing to a greener future. Using data from IoT technology, drivers receive real-time route suggestions to avoid traffic jams and ease congestion, ensuring faster, stress-free travel. From supply chain optimization and manufacturing to personalized driving experiences and smart routing, advanced AI systems and real-time data analysis enable it all. By 2027, the global automotive AI market is expected to grow from its 2022 valuation of USD 2.3 billion to USD 7.0 billion, with a compound annual growth rate (CAGR) of 24.1%.
EV sales are going to increase aggressively in 2025, providing a bright spot in the automotive industry. Governments are implementing innovative policies to encourage sales without increasing costs or benefiting high-income households. Car dealerships are no exception, as recent auto trends reveal that customers prefer to experience a car or dealership before purchasing. Top car brands and dealerships are embracing VR as part of their dealership photography strategies to improve the customer experience. The shortages have forced manufacturers to delay product launches and reduce outputs, among other issues. Asia, home to key production hubs, remains at the epicentre of attempts to address this crisis, with nations like Taiwan investing heavily in scaling chip production.
]]>The evolution of self-driving and connected cars is simplifying driver-vehicle interaction. Human-machine interfaces (HMIs), including voice-based and haptic feedback systems, are expanding control over various car functions. Moreover, V2X communication systems allow vehicles to interact with each other and infrastructure, improving traffic flow and reducing accidents. These innovations collectively propel the industry towards safer, more efficient transportation. Consequently, the global autonomous vehicle market size is projected to reach USD 448.6 billion by 2035, growing at a CAGR of 22.2%. For this in-depth research on the Top Automotive Industry Trends and startups, we analyzed a sample of 4859 innovative automotive startups & scaleups worldwide.
One of the most significant shifts in the automotive industry is the widespread adoption of electric vehicles (EVs). The automotive industry leads in technological innovation that will reshape vehicle design, construction, and user experience in 2025. Emerging automotive industry trends include the increased adoption of electric vehicles (EVs), advanced semiconductors, and the growing focus on vehicle cybersecurity.
Canadian startup Aadhya Navik designs software solutions that improve safety, comfort, and traffic efficiency in autonomous driving. Its vehicle control system processes passenger comfort thresholds related to acceleration, deceleration, and jerk rate. It then adjusts driving decisions to minimize motion sickness and maintain smooth operation.
Its RC ONE driverless vehicle combines proprietary software and hardware with automotive-grade components to achieve low-speed autonomous operation. US-based startup TeraDAR designs its 4D imaging sensor that enhances sensor fusion by offering the Terahertz wavelength for vehicle perception. Connectivity also adds momentum, with 5G and V2X semiconductors enabling real-time data exchange and secure over-the-air updates. Also, regulatory frameworks such as ISO and Europe’s mandate for emergency braking systems encourage mission-critical chip integration across new vehicles. ADAS adoption enables lane-keeping, adaptive cruise control, and emergency braking to rely on AI-powered processors and sensor fusion chips. Additionally, CARNIQ Technologies supports the automotive sector with threat analysis, cybersecurity management, and secure system development.
By 2025, nearly all new vehicles are expected to feature advanced connectivity options, integrating aspects of digital life directly into driving experiences. Such advancements align with global trends favoring autonomous fleet deployment in urban areas, positioning automakers to meet future demand for self-driving capabilities. While there are a lot of opportunities ahead for the industry, there will be plenty of challenges like cost pressures, growing competition, and globalization.
From electrification to IoT connectivity, these shifts are changing the way cars are manufactured, sold, repaired, and driven. Shared micromobility vehicles are becoming a popular mode of transportation in cities where the pollution from cars and traffic congestion is particularly evident. Chip shortages have been causing myriad changes to trends that affect the automotive trends that are not all positive.
As a result, vehicles become even more connected with each other and the infrastructure and provide drivers with more advanced opportunities. The future of automotive industry trends suggests that the automotive parts market will grow aggressively due to a growing demand for replacement parts and an increase in vehicle production. The segment’s sales will rise in the first six months of fiscal 2025, while the industry’s revenue will increase at the same pace to $33.8 billion. According to Globe News Wire, the entire market will grow at a CAGR of 5.5% from 2025 to 2033, logging USD 984 billion. Automakers and technology companies are forming partnerships due to vehicles’ constantly evolving tech requirements.
Trend 2: The Rise of Software-Defined Vehicles (SDVs) – Cars as ComputersAlso, applications extend from adaptive cruise control, lane-keeping, and traffic jam assistance to robotaxis and driverless trucking. Advanced cameras paired with computer vision enable vehicles to classify road users, read signs, and recognize traffic signals, directly supporting ADAS and autonomous navigation. This ensures cybersecurity and reliability for engine control, powertrain management, and other mission-critical automotive applications. Silicon carbide (SiC) semiconductors improve energy efficiency in high-voltage EV systems by reducing losses and enhancing thermal management. Moreover, Asia-Pacific leads the automotive semiconductor market with a 45% global share. In Europe, the EU’s Chips Act aims to raise the bloc’s share of global chip production from under 10% to about 20% by 2030.
XTrude models the physics of FDM processes to optimize parameters like flow rate and extrusion temperature to ensure large-scale 3D printing. Automakers are responding by integrating carbon-neutral initiatives across their value chains. This includes upstream supply chains and downstream life cycle phases like recycling. Companies like Nvidia innovate in AI-powered chips for AVs, partnering with automakers like Toyota, Tesla, and Aurora Innovation to enhance autonomous capabilities. Automakers are investing in cybersecurity technologies such as hardware security modules (HSMs), AI-based intrusion detection systems, and secure over-the-air (OTA) updates to address these challenges.
OEMs are advancing and navigating regulatory challenges to introduce and test L3 and L4 automation, setting the background for augmented adoption of autonomous vehicles. Additionally, smart virtual assistants are emerging as a key HMI feature, aiding drivers and passengers in interacting with vehicles and external services. The global Automotive Human Machine Interface market, valued at USD 70.41 billion in 2022, is expected to grow significantly, reflecting these advancements in automotive technology. These solutions decrease fleet wait times and cut pollution from petrol or diesel vehicles. Modern vehicles are now equipped with a unique digital identity, making it easier to track and share data for applications like insurance, driver safety, predictive maintenance, and fleet management.
More than half of pickup owners purchase off-road parts and engage in outdoor activities with their vehicles. Overlanding, a newer trend, combines off-roading with remote travel and camping, with products like mounted tents falling under this category. As per the traditional method, we used to visit the dealer and purchase vehicles from him, and the dealer used to make transactions with OEMs. However, as per the new Agency model, we will get to see that the people would directly be dealing with the OEMs and the dealer’s profit would be shared by OEMs. That will enhance in gaining the trust of society and the brand’s potential customers. Consumers thoroughly research their preferred car on their mobile phones, searching for the best offers and dealerships in their area.
The AI in Automotive industry in 2026 is evolving as AI, autonomous technologies, and software-defined vehicles reshape global mobility systems. This AI in Automotive Market Report examines the trends and technologies driving vehicle intelligence, operational efficiency, safety advancement, and data-driven mobility innovation. Semiconductor chips are at the heart of almost every automotive trend, from connected technologies to autonomous driving and EVs. Advanced systems that power, control, and optimize automobiles are increasingly being built around tiny chips. Semiconductors ensure energy efficiency, consistent power distribution, and power the battery systems in EVs.
Specific components like silicon carbide (SiC) and gallium nitride (GaN) power devices are expected to see growth, offering up to 60% improved efficiency over traditional silicon components. Looking ahead, JLR’s focus on carbon-neutral manufacturing and environmentally responsible practices sets a powerful example for the industry. Jaguar Land Rover’s “Reimagine” strategy has cemented its position as a sustainability leader. This article highlights the company’s strides in electrification, material innovation, and circular economy practices. Notable achievements in 2024 include significant progress in reducing emissions and advancing transparent ESG reporting. Also, IoT sensors such as LiDAR and radar expand perception by generating environmental data.
Moreover, car connectivity transforms the driving experience by integrating with real-time systems and smart gadgets. These advancements guide the automotive sector toward a more intelligent, secure, and sustainable future. It includes journey replays, geofencing, and driver behavior monitoring to enhance fleet efficiency and safety. The startup also offers Leap EasyTrack, a vehicle tracking solution that allows for quick and easy self-installation, making it simple to transfer between vehicles without downtime. Indian startup Starkenn develops AI-powered ADAS to enhance vehicle safety and reduce road accidents.
Lastly, MARV.Automotive is a configurable and extensible data management platform that reliably transmits data from the vehicle to the cloud. The US-based startup Launch Mobility develops a platform for a range of shared mobility solutions. The platform LM Mission ControlTM offers free-floating or station-based car sharing, advanced shuttle services, shared dockless scooters, keyless rental programs, and peer-to-peer shared mobility. Further, their drivers use out-of-the-box or white-labeled apps to manage reservations or remotely access vehicles.
Its product range includes an electric modular chassis, the standard autonomous shuttle pod, and pods for other applications. The need for high-performance processors is also growing as a result of software-defined vehicles (SDVs), which rely on semiconductors for ongoing updates and subscription-based services. The global automotive semiconductor market is projected to grow from USD 53.57 billion in 2025 to USD 86.81 billion by 2033, with a CAGR of 6.22%. Join us today and access AMS’s wealth of global news, insights, intelligence and content, and to make valuable connections with your peers from across the automotive industry. Volkswagen is using digital twin technology at its Wolfsburg plant to simulate and optimise production processes for the Tayron SUV.
The drive towards electric and autonomous vehicles is further bolstered by progress in machine learning and IoT. Luxury car brands are experiencing growth due to increased tangible luxury offerings and rising disposable incomes. The demand for sustainable and eco-friendly transportation, like electric luxury vehicles, also drives market growth. The adoption of pre-owned luxury cars is increasing due to easy access to financing and lower entry prices. Manufacturers are investing in innovative mobility technologies, such as personal voice assistance, autonomous driving, and AI and ML, creating a positive market outlook.
Mercedes-Benz is also using generative AI to include conversational assistants for improving user experiences and redefining in-car interactions. Usage-based insurance (UBI) models use driving behavior data to provide customized premiums and find original Audi equipment by VIN are gaining popularity. From 2024 to 2029, the insurance telematics industry is projected to grow at a CAGR of 17.6%.
Owing to these advancements, the global SDV market is set to reach USD 3.3 trillion by 2034, growing at 31.2% annually. BMW’s Neue Klasse illustrates this shift with four superbrains that reduce wiring by 600 meters and reduce vehicle weight. This centralization allows faster product cycles, OTA updates, and cross-domain features. Digital platforms enable smooth access and allow users to book, swap, and unlock vehicles through mobile apps. For example, Hyundai partners with Revv in India to expand subscription offerings through a mobile-first platform. AI and ML processors support object recognition, path planning, and decision-making.
Automotive Manufacturing Solutions (AMS) is the essential resource for automotive manufacturing professionals and suppliers globally. We invite you to revisit these top stories, share your perspectives, and stay tuned for more in-depth coverage of the trends shaping the automotive world. As net-zero targets become the norm, the reliance on renewable energy is only set to grow. Exciting developments in energy storage and green hydrogen technologies promise to redefine production processes further. The answer lies in education, infrastructure, and trust-building—slow but steady wins the race.
Autonomous tech will likely be bundled with subscription services, reshaping mobility economics. From electric vehicles zipping past gas guzzlers to cars that update themselves like your smartphone, the industry is in the middle of a revolution. Did you know that EVs are projected to make up nearly 20% of global vehicle sales in 2026? That’s no longer a distant future — it’s happening now, and it’s transforming everything from manufacturing floors to your driveway. The current trends in the automotive industry seen in previous years will remain in 2025 and are likely to become automotive future trends. We hope this blog helps you understand the upcoming automotive industry trends in 2025.
The US market was worth $14 billion in 2021 and is expected to grow at a CAGR of 10.7% to reach more than $31 billion by 2028. Tesla reportedly rewrote the software it uses in its vehicles so they could run on a different type of chip. They’re so important that one analyst said, “semiconductors have moved ahead of oil as the world’s key commodity input for growth”. However, the demand for parts is also being diminished by the increasing quality of newly manufactured vehicle parts. In addition, the ecommerce automotive aftermarket market is worth an estimated $85.28 billion.
Issues such as liability in the event of an accident, cybersecurity measures to prevent hacking, and how to deal with AVs in mixed-traffic environments (with human drivers) will need to be addressed. One critical challenge in transitioning to electric mobility is the availability and accessibility of charging infrastructure. By 2025, significant investments in fast-charging networks will be essential for EV adoption to reach mass-market penetration. Advanced Driver Assistance Systems (ADAS) and autonomous driving technologies continue to evolve, bringing unprecedented changes to vehicle safety and functionality.
Modernized and upgraded vehicles with much more technology allow a thunder growth for the markets providing parts of the vehicles. The demand is highest for vehicles under four years old, which have the latest technologies but are less expensive than new cars. This includes pre-owned electric and hybrid vehicles, and dealerships now offer certified pre-owned cars that look and function like new ones at a lower cost.
The number of connected cars worldwide will likely reach 400 million by 2025 up from 237 million in 2021. The startup also offers META, a compact shuttle for urban mobility; and SPACE for passenger transportation. These vehicles use a re-assembly factory model, which allows upgrades and updates to extend their lifecycle. Moreover, lightweight and bio-based materials are used to reduce vehicle weight and improve fuel efficiency, which aligns with sustainability goals. These pods use AI and machine learning algorithms for real-time perception and adaptive decision-making. The startup’s technology allows these pods to adapt across industries, enhancing efficiency and safety in transporting people and goods.
The global automotive blockchain market is experiencing significant growth — it is projected to reach USD 6.11 billion by 2032. Connected vehicles are fostering new business models centered on shared mobility, offering an alternative to traditional vehicle ownership. This shift supports mobility-as-a-service (MaaS), reducing the number of idle vehicles and addressing urban transportation needs without adding more cars. The increasing adoption of EVs globally drives the optimization of energy usage and enhances features like regenerative braking systems through sensor fusion technologies. To accommodate the rising demand for EVs and autonomous vehicles, major automakers such as BMW, Hyundai, and Stellantis are investing in EV battery plants and semiconductor-related facilities.
The software integrates a one-shot multitask network capable of performing 2D detection, semantic segmentation, and monocular depth estimation. It processes these tasks in real time at over 120 frames per second on consumer-grade graphics processing units (GPUs). Indian startup General Intelligence creates self-driving intelligence software that supports software-defined vehicles in adapting to diverse driving environments.
]]>With 2024 now firmly in the rearview mirror, let us dive into how those trends have developed into 2025 and what that means for middle-market organisations for the year ahead. In addition, it offers insurance-approved vehicle tracking systems with Thatcham S5 and S7 certification to meet insurer requirements and offers nationwide installation with priority police response. Consumer demand for eco-friendly products is rising, with 80% of US consumers concerned about the environmental impact of their purchases in April 2024, up from 68% in 2023. North America led the AV market in 2024 with over 40% revenue share, while Asia-Pacific is the fastest-growing region, with an expected CAGR of 35% from 2024 to 2033. Its early fusion approach integrates LiDAR and radar data, while neural networks infer road elements and topology to create accurate high-definition maps.
The US-based startup Procon Analytics leverages big data to offer a solution for automotive finance. The solution captures millions of data points in real time and analyzes them to enable lenders to instantly assess and reduce risk. This allows Buy Here Pay Here (BHPH) dealers to expand their businesses and extend credit to high-risk customers.
This process enables us to identify the most impactful and innovative trends in the automotive industry. Volvo Cars has announced plans to adopt large aluminium castings for its next-generation electric vehicles, aiming to simplify production and enhance sustainability. Meanwhile, Toyota is reported to be cautiously evaluating the technology, balancing its benefits against potential risks. Sustainability has evolved from a competitive advantage to an existential necessity for the automotive industry.
Users discover the nearest Beam scooter on the app and park it in visible public spots after the ride. Further, the micro-mobility platform offers a sustainable alternative to short-distance rides and helps regulate traffic flow in cities. German startup ChargeX offers a modular EV charging solution that converts parking spaces into how plate lookup supports safer purchases charging stations. The startup’s platform, Aqueduct, is easy to install, has 4 charging modules with up to 22kW, provides monthly reports, and uses a Typ2 charging cable. The solution recognizes the power requirements of every car and automatically controls the charging speed for each vehicle.
It enables systematic results in cybersecurity, functional safety, and process conformance. In addition, the startup strengthens automotive cybersecurity with features such as real-time intrusion detection and automated containment protocols. It is also integrated into fleet management dashboards and security operations centers (SOC). By securing these systems, cybersecurity prevents hijacking of steering or braking functions, protects sensitive driver data, and shields automakers from costly recalls and reputational harm.
In Latin America, much like other regions, the electrified vehicle fleet is still only a small share of the total vehicle fleet; however, that share is growing. The fleet of light-duty EVs has grown in the last four years by more than 14 times with a very significant, 17-times increase in the fleet of plug-in hybrid vehicles (PHEVs). Brazil is leading the way by a large margin, followed by Mexico, Costa Rica, Colombia and Chile, respectively. This Electric Vehicles Market Report 2026 examines industry growth, investment flows, patent activity, and global hubs shaping the EV ecosystem. It highlights workforce trends, leading investors, and key technologies driving adoption across vehicles, batteries, charging, and software. Several leading OEMs have already announced plans to adopt the chipset for their automotive solutions, including BYD, Nuro, XPENG, Volvo and Zeekr.
In the US, the AV market is expected to expand, rising from USD 22.6 billion in 2024 to USD 222.8 billion by 2033, with a CAGR of 28.92% starting in 2025. Regulatory frameworks like UNECE WP.29, effective from last year, mandate stringent cybersecurity measures to drive compliance-related investments. Moreover, Avvenire has a strategic agreement with Daymak International Inc., Canada’s leading LEV distributor. Daymak will assemble Avvenire’s vehicles and distribute them through its network of over 200 dealers in 25 countries. Further, as part of larger decarbonization efforts, the Intergovernmental Panel on Climate Change (IPCC) emphasizes the contribution of EVs to the reduction of greenhouse gas emissions. Europe is projected to reach a 20.4% market share, while the US is likely to reach 11.2%.
Cybersecurity protects these connected systems, while regenerative braking and sustainable manufacturing practices reduce the environmental impact. EVs drive the shift to greener mobility and it is aided by advancements in semiconductors for smarter and efficient vehicles. OEMs are investing billions in EV platforms, battery R&D, and charging infrastructure partnerships. Legacy brands like Ford, GM, and Volkswagen are launching dedicated EV lines, while startups like Rivian and Lucid push luxury and performance boundaries.
IoT creates more opportunities for manufacturers to market to consumers even after they’ve made a purchase. Consistent brand messaging across all channels, including in-car infotainment systems and websites, can help foster long-term customer relationships, promoting brand loyalty and advocacy. Fuel-cell electric vehicles will emerge worldwide in 2025 due to their faster recharge, extended range, and zero emissions. Major car, truck, and SUV manufacturers are investing in fuel-cell electric vehicle development, with the support of countries like China, Germany, Japan, South Korea, and the United States. The EU’s Green Deal and its accompanying “Fit for 55” initiative aim to cut carbon emissions drastically by 2030, piling new expectations on manufacturers to reduce their environmental impact. Adding to the challenge, measures such as stricter Euro 7 tailpipe standards and updated rules on battery recycling demand deeper innovation within supply chains and operations.
While fully autonomous vehicles (AVs) are not yet standard on the roads, significant advancements are being made in 2025 toward realizing the vision of driverless cars. Companies like Tesla, Waymo, and others are working tirelessly to refine the technology, which includes machine learning, computer vision, and lidar (light detection and ranging) systems. The US-based startup Apex AI enables automotive companies to implement complex AI solutions. Apex.OS runs on automotive electronic control units (ECUs) and offers robust, reliable, and secure APIs to develop autonomous mobility solutions. ApexAutonomy offers modules to build 3D perception, localization, and control to enable autonomous vehicles.
This approach could significantly reduce waste and contribute to a more sustainable automotive industry. Leading companies such as Volkswagen, General Motors, and Volvo have committed to producing zero-emission vehicles and achieving carbon-neutral operations by mid-century. In line with this, automakers focus on sustainability in their manufacturing processes, energy sourcing, and material selection. While some regions already allow limited AV testing and deployment, 2025 will likely see a more transparent legal framework surrounding autonomous driving technology. This regulatory clarity will pave the way for broader AV adoption in cities, particularly in controlled environments like urban areas or designated autonomous vehicle lanes. Additionally, infrastructure developments like Toyota‘s new battery plant in North Carolina underscore the industry’s dedication to scaling EV output.
Waymo highlights this in its robotaxi fleet, which processes multimodal data to complete over 250K paid rides weekly with high reliability. Tesla’s Full Self-Driving Computer processes high-rate image input, handling camera streams of up to approximately 2.5 billion pixels per second through its camera serial interface. Its image-signal processor manages approximately 1 billion pixels per second from high dynamic range (HDR) sensor inputs.
The final trend, and one which has been subject to a lot of attention (and hype), is driverless transportation. Its electronic control unit (ECU) platform combines AUTOSAR software modules with customizable hardware. It manages functions such as steer-by-wire, brake-by-wire, engine control, and ADAS. At the same time, governments and companies view subscriptions as a pathway to scale EV adoption without heavy upfront investments.
The growing shared mobility trend also looms as more people are using shared transportation methods instead of owning cars. The efficiency of electric power fused with the reliability of traditional engines has contributed to the rise of hybrid vehicles. Hybrid vehicles present the perfect compromise of lower emissions and enhanced fuel economy without the need for charging.
Data Privacy Concerns and Ethical Use of Vehicle DataIn 2024, hybrids saw a YoY growth of almost 19%, which is expected to grow to over 23% by 2025. Italian startup Moi combines thermosetting composite materials and 3D printing to manufacture high-performance parts for the automotive industry. Moi uses continuous fiber manufacturing (CFM) technology, robotic intelligence, and digital fabrication to deposit fibers. As a result, the solution is easily scalable for producing composites for panels, frames, and interior components. The startup also serves other industries, such as aerospace, construction, and biomedical. Additionally, blockchain is instrumental in verifying the supply chain of automotive parts, ensuring that materials and components are sourced from legal and trustworthy suppliers.
This is not just a European problem with Volkswagen and Stellantis, as Honda and Nissan merge, and Ford and General Motors struggle. Global economic slowdowns and fierce competition from Chinese manufacturers have slowed the growth of EVs. In 2025, the automotive industry’s digital marketing spending is predicted to keep growing. This rise in digital advertising spending is being steered by the growing usage of social media. Dealerships need to integrate strategic frameworks to capture potential buyers across different stages in the process with the use of social media marketing, click-to-call conversions, and messaging apps. UK-based startup Distributed Additive Manufacturing (DAM) offers 3D printing services including design, building, and finishing of parts.
Due to these advancements, the global automotive IoT market is anticipated to reach USD 56 billion by 2026 at a CAGR of 19% during the period from 2021 to 2026. It also uses regenerative braking to capture and store energy in the car’s battery. The APH-01 incorporates flax fiber in its body shell, which reduces weight, increases impact resistance, and improves vibration damping. In addition to enhancing energy efficiency, regenerative braking systems reduce greenhouse gas emissions by recovering energy during braking to support global efforts to meet stricter emission norms. The automotive regenerative braking market is expected to reach USD 13.83 billion by 2029, growing at a CAGR of 15.8%. Keyvault raised USD 1 million in January 2025 to introduce smartphone-enabled car keys in the US, following the trend of incorporating smart device features into automobiles.
BOS Semiconductors focuses on high-performance, energy-efficient AI solutions to drive innovation in autonomous driving and enhance in-cabin experiences. US-based startup Avvenire develops LEVs for efficient and eco-friendly urban transportation. Its products include the Leggera, an all-electric vehicle for on-road and off-road use, and the Spiritus, a three-wheel electric car with optional autonomous driving, Wi-Fi connectivity, and solar panels. Younger buyers often prefer subscription models or shared mobility over ownership.
It’s clear that a select subset of today’s consumers are willing to pay for high-end automobiles. Power say that sales of cars worth more than $100k were outselling lower-priced cars 3 to 1 in the first quarter of 2022. Instead, they get power from a fuel-cell stack that’s fed hydrogen and oxygen to create electricity through a chemical reaction. According to a study completed by INRIX Transportation, Honolulu, New Orleans, and Nashville are the three US cities that stand to gain the most from micromobility vehicles. The market for micromobility sat at $40 billion in 2020 and is expected to grow to $195 billion by 2030.
However, there are yet to be more autonomous vehicles on the road due to the technological and safety challenges that must be overcome. Driverless cars have sometimes struggled with unexpected incidents on the road and in poor weather conditions. The future trends in the automobile industry suggest that 2025 can be the milestone year for connected cars. The expansion will stem from the speedy spread of data that can be capitalized upon to lower expenses, streamline research and development, enhance products and services, and restrict emissions.
]]>Get in touch to easily and exhaustively scout relevant technologies & startups that matter to you. Operating from Germany and the US, EcoG is a startup offering an IoT-based operating system and platform for EV charging. The startup provides manufacturers with tools that make the development and maintenance of EV charging infrastructure simple, fast, and scalable.
Moreover, redundancy across sensor types improves resilience in poor weather or low visibility. Waymo highlights this in its robotaxi fleet, which processes multimodal data to complete over 250K paid rides weekly with high reliability. Tesla’s Full Self-Driving Computer processes high-rate image input, handling camera streams of up to approximately 2.5 billion pixels per second through its camera serial interface.
Partnerships between telecom providers and automakers, like Targa Telematics’ collaboration with Renault, are enhancing connectivity solutions, particularly for fleet management. Miniaturization trends in automotive electronics enable the integration of multiple sensors into compact systems to improve vehicle performance while reducing costs. US-based startup Aeluma develops semiconductor technology for mobile devices, AI, AR/VR, autonomous systems, and other applications.
These tools equip dealerships to handle inquiries efficiently, thus freeing time for other important tasks. They further assist with management, maintenance, and repair appointments, as well as streamlining operations. Voice search assistants help optimize interfaces for advertisements and voice search queries. For the eighth time, we asked managers and decision-makers in the automotive industry which trends and developments they are currently focusing on.
Toyota continues to emphasize hybrids as a critical part of its electrification strategy. Let’s have a closer look at the top automotive trends poised to dominate the landscape in 2025. Supplemented by the categorisation of our experts, a clear picture emerges of where the industry stands – and where it should develop in order to remain fit for the future. Automakers are also adopting hyper-personalized features to offer customized experiences through infotainment systems, user profiles, and real-time navigation updates. Many of these vehicles will feature over-the-air (OTA) upgrades and V2X communication. Xaba’s proprietary process and AI-driven large-scale 3D printer enable sustainable materials, such as fibers, fiber-reinforced polymers, and metals, to create functional car chassis.
The industry itself, however, has remained relatively stable over the last decade.
Data Privacy Concerns and Ethical Use of Vehicle DataIts vehicle control system processes passenger comfort thresholds related to acceleration, deceleration, and jerk rate. It then adjusts driving decisions to minimize motion sickness and maintain smooth operation. The global automotive sensor fusion market is projected to reach USD 3.3 billion by 2030 at a 42.4% CAGR. The market reflects its role in meeting strict safety rules and consumer demand for smarter vehicles. AI, additive manufacturing, the Internet of Things, and 5G have become sources of product innovation and manufacturing efficiency, which in turn has led to revolutionary changes in customer experience.
Additionally, Cube Intelligence offers ride-hailing and valet parking services for AVs, as well as smart parking management systems. The automotive manufacturing sector is entering 2025 amidst seismic shifts driven by electrification, digital transformation, and the growing mandate for sustainability. Recent developments highlight how manufacturers are leveraging advanced technologies and evolving their strategies to meet these challenges.
Predictive maintenance powered by AI minimizes machine failures, while IoT networks provide detailed insights into factory operations. These practices not only meet regulatory demands but also resonate with consumers increasingly drawn to environmentally responsible brands. Toyota’s North Carolina battery plant exemplifies this commitment, with operations fully powered by renewables. Recycling initiatives, such as reusing EV batteries, further emphasize the industry’s shift toward circular manufacturing.
More than 12% of consumers who financed a new car in June of 2022 had a monthly payment of $1,000 or more. It’s clear that a select subset of today’s consumers are willing to pay for high-end automobiles. Power say that sales of cars worth more than $100k were outselling lower-priced cars 3 to 1 in the first quarter of 2022.
Over-the-Air (OTA) Updates and Personalized Driving ExperiencesFrench startup Airnity provides a cellular connectivity platform for the automotive industry to enhance connected car operations. THINKey operates through a secure architecture using enclaves in the phone, vehicle, and cloud, adhering to the car connectivity consortium’s digital key standard. Additionally, the startup offers infotainment solutions with plug-and-play SDKs and certification-ready apps for phone mirroring and multimedia features. This facilitates the integration of Apple CarPlay, Google Android Auto, and media streaming into in-vehicle infotainment systems. UK-based startup WF Telematics offers vehicle and asset tracking solutions for businesses seeking efficient fleet management and asset monitoring.
Most car buyers now consider a vehicle’s environmental impact before purchasing, with many willing to pay a premium of over £2,000 for greener emissions. In the Electric Vehicle Market, 2025 Will Be the Year of More – More Models, More Incentives, More Discounting, More Advertising, and More Sales Muscle. People are shifting to EVs because of their design and their being environmentally friendly. 50% of buyers are willing to opt for EVs, so businesses should surely focus on marketing electric vehicles to make their brands more broader.
Below, you get to meet 20 out of these 4859 promising startups & scaleups as well as the solutions they develop. These 20 automotive companies are hand-picked based on criteria such as founding year, location, funding raised & more. As battery technology and charging infrastructure progress, EVs lead the push toward sustainability. Sensor fusion that combines information from various sources improves safety and autonomy by enabling accurate decision-making. Indian startup ThinkSeed develops middleware solutions that enhance smartphone connectivity to vehicles for secure access and infotainment.
Despite these hurdles, the integration of sustainable materials is expected to accelerate as regulatory frameworks tighten and consumer demand for environmentally responsible products grows. ABB is investing in advanced software that simulates automotive painting processes, cutting costs by up to 30%. The simulations enhance precision and minimise waste in this energy-intensive stage of manufacturing.
Manufacturers that successfully integrate these elements into their strategies will not only navigate the challenges of today but also position themselves as leaders in the future of mobility. Nearshoring is becoming increasingly prevalent, particularly in North America, where manufacturers are shifting operations closer to key markets to mitigate supply chain risks and reduce logistical costs. In the UK, auto production surpassed one million units in 2023, marking a significant recovery. However, with the cessation of certain models, there are concerns about a potential production dip in 2024. New EV launches slated for 2025 are expected to reinvigorate the market, underscoring the importance of product innovation in sustaining growth.
They provide various features such as remote diagnostics, vehicle health reports, 4G LTE Wi-Fi hotspots, turn-by-turn directions, and warnings of car health issues. The technology has already processed over a billion customer requests and is set to grow in 2025 with predictive intelligence and maintenance technology. North American and European automakers offer consumers the option to buy vehicles online without visiting dealerships. With a computer or smartphone, buyers can choose desired features, secure financing, and even take virtual walk-around and test drives. In 2025, more dealerships are expected to offer online sales, vehicle inspection, and home delivery. Solid-state batteries, which promise to offer higher energy density and improved safety over traditional lithium-ion batteries, are on the horizon.
Owing to these advancements, the global SDV market is set to reach USD 3.3 trillion by 2034, growing at 31.2% annually. Also, GPS and V2X connectivity improve fleet distribution and service reliability. Telematics and IoT sensors monitor vehicle condition and enable predictive maintenance. For instance, Planet42 extends access to underbanked consumers in South Africa and Mexico. Additionally, the startup offers features such as platooning algorithms for safe and efficient vehicle grouping. It also provides lane-change algorithms that ensure comfortable lateral movement and personalized passenger comfort profiles refined with each journey.
Sustainability is a major driver reshaping vehicle design, manufacturing, and lifecycle management. Governments worldwide are imposing stricter emissions standards and incentivizing zero-emission vehicles (ZEVs). This pushes automakers to invest heavily in electric drivetrains, recycled materials, and circular economy practices.
Avvenire focuses on sustainable mobility to contribute to a cleaner environment and meet the demand for green transportation. With zero emissions, low noise, and a range of up to 400 km, FALAK offers a sustainable urban mobility solution. The startup emphasizes comfort with electric doors, extended safety features, and panoramic views from all seats. Advances in solid-state batteries promise higher energy density and faster charging times, while the expansion of ultra-fast chargers addresses key barriers to EV adoption.
Project portfolio management (PPM) has developed significantly over the past few years and is expected to evolve even faster in… Learn why it matters more than organic traffic and how to improve your rankings and visibility. Here’s how TikTok unboxings and gaming are driving one of 2025’s top retail trends. Data from the past 10 years shows the sale of luxury vehicles making a steep climb in 2022.
These sensors measure distances, identify obstructions, and capture crucial traffic and road condition data. When paired with high-resolution cameras, these tools allow self-driving cars to identify objects, lane markers, and even pedestrians with unprecedented precision. While full autonomy is still on the horizon, advanced driver assistance systems (ADAS) are already transforming how we drive. In 2025, the focus will be enhancing ADAS features, such as adaptive cruise control, lane-keeping assistance, automatic emergency braking, and more.
Road safety, regulatory mandates, autonomous vehicle adoption, and smart city development drive this innovation. The World Health Organization links 1.36 million annual deaths to road accidents. The US National Highway Traffic Safety Administration (NHTSA) estimates that V2X addresses up to 80% of crashes involving non-impaired drivers. Moreover, economic efficiency improves adoption, as autonomous vehicles reduce transport costs by up to 40% and maximize logistics utilization.
Also, IoT sensors such as LiDAR and radar expand perception by generating environmental data. For instance, Audi and BMW vehicles exchanged sensor data, including camera feeds, during 5G-V2X Direct demonstrations in Berlin. This data alerted drivers to pedestrians and cyclists before they became visible. Dedicated short-range communication (DSRC) based on IEEE 802.11p facilitates direct vehicle-to-vehicle and vehicle-to-infrastructure communication.
Prices are expected to decrease as supply-chain issues improve, and sales continue to soften. However, interest rates may remain high as the Federal Reserve works to lower inflation. In October 2022, the delivery lead time for chips decreased by six days to 25.5 weeks, the most significant drop since 2016.
Artificial intelligence (AI), the Internet of Things (IoT), blockchain, and advanced semiconductors allow autonomous driving, predictive maintenance, and secure connectivity. These technologies enhance safety, efficiency, and user experience across vehicles. 2025 is no exception—automotive manufacturers are expected to continue implementing more and more advanced safety features in their vehicles.
By leveraging tech and sustainable practices, the automotive sector can meet the challenges of tomorrow while delivering exceptional value to consumers. This digital transformation enhances scalability, a key driver in the competitive automotive sector. Companies like history reports for rebuilt title cars Huawei are allocating significant resources to developing EVs with cutting-edge ADAS and autonomous features. These technologies aim to reduce accidents and provide a safer driving experience. As we look ahead to 2025, these trends highlight the challenges and opportunities that manufacturers face.
]]>Discover trends, forecasts, and global developments shaping the future of mobility. These systems will become increasingly sophisticated, moving toward semi-autonomous driving capabilities and improving the overall driving experience. Companies like Toyota and Hyundai are investing in hydrogen fuel cell technology.
Motoreto strengthens supply chain resilience in the auto industry and drives nearshoring by aligning distribution, procurement, and sales with regional market needs. The startup enables dealerships, fleet managers, and manufacturers to manage inventory strategically. It also supports this process by integrating buybacks, residual value calculations, and automated stock analysis. The automotive industry is one of the most severely affected by supply chain disruptions.
It integrates electric drivetrains, transforming existing vehicles into sustainable and cost-effective alternatives to new EVs. The kit maintains original vehicle features to ensure a seamless transition and familiar driving experience. Indian startup Starkenn develops AI-powered ADAS to enhance vehicle safety and reduce road accidents. Its product suite includes a collision warning system, Starkenn Safe which uses radar to detect obstacles and alert drivers of potential collisions.
Many enterprises are moving ahead to create autonomous vehicles with all the multi-faceted benefits. To meet these new requirements and realize this long-term vision, approaches are required to push against the status quo. To understand AI’s impact on the automotive industry, it is important to consider the ongoing shifts across the automotive landscape, especially the transition toward software-defined vehicles. Modern vehicles have transitioned from distributed architecture to a centralized, high-performance computing model. This transformation has further streamlined the vehicle architecture, facilitating over-the-air software updates, more efficient management, and lowering overall complexity. EloyMessage broadcasts fixed or dynamic visual and audio messages directly into vehicles, reducing driver distraction with patented technology.
Hydrogen-powered vehicles produce only water vapor as a byproduct, making them a strong contender for sectors that are harder to electrify, such as long-haul trucking and commercial transportation. This move highlights the industry’s broader trend of building resilient supply chains to safeguard against geopolitical and economic uncertainties. Global supply chain disruptions over recent years have prompted manufacturers to rethink strategies.
Make sure you stand out from your peers by focusing on every intricate detail through marketing and staying at the top of buyers’ minds. The future of automotive industry trends suggests that the automotive parts market will grow aggressively due to a growing demand for replacement parts and an increase in vehicle production. The segment’s sales will rise in the first six months of fiscal 2025, while the industry’s revenue will increase at the same pace to $33.8 billion.
While the market for cars valued below $80k is expected to remain flat through 2031, the luxury car market is predicted to grow at up to 14% CAGR. The chip shortage is one-factor holding cars back from getting to the dealership lots. But, there are other various supply chain issues and factory closures that have led to low inventory, too. After demand started coming back, there simply wasn’t an adequate supply of chips, and the auto industry has been feeling the effects ever since. The parts industry is benefiting from the ever-increasing average age of vehicles on the road.
The strong focus on technological advancements in the automotive sphere has also meant that cyber security is becoming a larger concern in a historically unconcerned industry. Threats like supply chain attacks, data breaches, ransomware, and state-sponsored intrusions are on the rise. Of course, the danger does not stop with vehicles as smart infrastructure is also at risk, potentially jeopardising safety and operational reliability. By 2025, V2X technology is expected to significantly create more innovative transportation networks and advance autonomous driving capabilities. Looking ahead, there is no doubt that the automotive industry is on the brink of a paradigm shift driven by unprecedented technological advancements and a commitment to sustainability.
Also, digital twin epicVIN powered auction car research technology builds virtual replicas of supply chains to simulate disruptions and optimize performance. The USMCA requires 75% of motor industry components to be produced in North America. And the US Inflation Reduction Act ties USD 7500 EV subsidies to regional sourcing. Cost efficiency strengthens the case, with Mexico offering a 35% landed-cost edge over China in 2022.
Sensor fusion that combines information from various sources improves safety and autonomy by enabling accurate decision-making. Indian startup ThinkSeed develops middleware solutions that enhance smartphone connectivity to vehicles for secure access and infotainment. Its product, THINKey, transforms smartphones into digital keys that allow users to lock, unlock, and start their vehicles. The integration of 5G networks is accelerating advancements in vehicle-to-infrastructure (V2I) and vehicle-to-vehicle (V2V) communication, supporting autonomous driving functionalities. The startup offers tools for real-time calibration health checks for deployed fleets to reduce time-to-market and operational risks.
In these regions, shared mobility options like vans, minibuses, and two- and three-wheelers are more common and often electrified due to their affordability. In India, for example, electric car sales rose by 70%, driven by government incentives and new models, though future growth may be impacted if it sees subsidy reductions. The automotive manufacturing industry is evolving rapidly as manufacturers respond to technological advancements, consumer preferences, and regulatory changes. Several leading OEMs have already announced plans to adopt the chipset for their automotive solutions, including BYD, Nuro, XPENG, Volvo and Zeekr. Contact us today to make critical data-driven decisions, prompting accelerated business expansion and breakthrough performance. With customers becoming more demanding, rules and regulations are becoming stricter, and competition is stronger and faster.
Waymo highlights this in its robotaxi fleet, which processes multimodal data to complete over 250K paid rides weekly with high reliability. Tesla’s Full Self-Driving Computer processes high-rate image input, handling camera streams of up to approximately 2.5 billion pixels per second through its camera serial interface. Its image-signal processor manages approximately 1 billion pixels per second from high dynamic range (HDR) sensor inputs. The system combines this data with inputs from multiple cameras and sensors to enable AI-driven perception and decision-making in near-real-time driving scenarios.
It combines compound semiconductor nanomaterials with scalable silicon manufacturing for mass-market microelectronics. This approach ensures our reports provide reliable, actionable insights into the automotive innovation ecosystem while highlighting startups driving technological advancements in the industry. However, an SSAB survey reveals that cost and investment challenges remain significant barriers to widespread adoption. Despite these hurdles, the integration of sustainable materials is expected to accelerate as regulatory frameworks tighten and consumer demand for environmentally responsible products grows. ABB is investing in advanced software that simulates automotive painting processes, cutting costs by up to 30%. The simulations enhance precision and minimise waste in this energy-intensive stage of manufacturing.
UK-based startup Electric Car Converts changes classic Land Rovers into EVs by replacing combustion engines with modern electric motors and battery packs. Ultra-fast charging infrastructure minimizes downtime by offering hundreds of kilometers of range in just minutes. For example, BYD demonstrated a 1000 kW charging system that is capable of adding about 400 km of range in five minutes to its Han L and Tang L models under ideal conditions. Solid-state batteries increase energy density, shorten charging times, and give EVs longer ranges and greater convenience.
Batteries are the heart of any electric vehicle, and improvements in battery technology will continue to shape the future of EVs. Companies focus on increasing energy density to improve range and reduce charging times. The trends shaping automotive manufacturing in 2025 emphasize innovation, sustainability, and connectivity. As electric vehicles become mainstream, digitalization reshapes production, and mobility services redefine car ownership, the industry is set to transform how vehicles are manufactured and used.
The Starkenn Brake Safe, a collision mitigation system features automatic emergency braking in critical scenarios. AI-powered semiconductors drive transformation in autonomous driving systems by enabling real-time communication with road infrastructure and enhancing safety features such as emergency braking systems. Tesla’s relentless drive to expand its global gigafactory network has been a defining feature of 2024.
Information technology has become a crucial part of the recent trends in the automobile industry as priorities change over time. The automotive industry stands at a thrilling crossroads, where innovation meets complexity and opportunity rides alongside challenge. The industry will continue to experience disruptions from geopolitical headwinds to regulatory and legislative developments, data security and economic challenges. Maximising the ROI to investors and stakeholders while remaining competitive will be priorities of the industry.
Internet of Things (IoT) and real-time monitoring solutions improve shipment tracking, warehouse oversight, and production visibility. In addition, it offers charging solutions for e-bikes, including wallboxes and mass-charging systems for hotels and public spaces, thereby broadening access to sustainable transport. Czech Republic-based startup IONT tech manufactures EV charging stations that support home, business, and public use.
Front-facing LiDAR scans the road to detect objects, track pedestrians, and respond to traffic to enhance safety. The startup uses automotive sensors and compute platforms to offer a scalable solution for cars to enable large-scale fleet learning. German startup SafeAD develops a vision-first perception and scene-understanding pipeline for autonomous driving. The charging infrastructure is more vulnerable as a result of the quick uptake of EVs, which hackers may attack to obtain customer information or interfere with services.
EloySignals utilizes AI to optimize traffic flow, advising drivers on stopping or proceeding, and prioritizing emergency vehicles and vulnerable road users. India-based startup DriveTech-AI builds solutions centered around optimizing the vehicle testing process through smart solutions. Its suite of platforms and solutions allows automotive OEMs to accelerate testing data analysis and enhance automation and team collaboration. For example, its StellarAi data intelligence platform offers templates to quickly identify engineering variables, trends, and vulnerabilities. AI technologies like machine learning, deep learning, and computer vision are advancing robotic automation.
The US National Highway Traffic Safety Administration (NHTSA) estimates that V2X addresses up to 80% of crashes involving non-impaired drivers. Moreover, economic efficiency improves adoption, as autonomous vehicles reduce transport costs by up to 40% and maximize logistics utilization. Swedish startup Intended Future utilizes data-driven design benchmarking tools for the automotive industry. Probably the most important trend in the automotive industry is the worldwide shift to electric vehicles (EVs).
The autonomous vehicle (AV) market is on an impressive growth trajectory, expected to surge from a market value of $1,921.1 billion in 2023 to a staggering $13,632.4 billion by 2030, with a CAGR of 32.3%. A major driver of this growth is the increasing focus on commercial applications, such as logistics and ride-sharing services. Advances in AI, sensor technology, and connectivity are also playing a key role in improving the safety and adoption of autonomous vehicles. The global automotive semiconductor market is expected to grow at a rate of 8.1% between 2023 and 2030. This growth is driven by the increasing adoption of electronic control units (ECUs) in modern vehicles and the rising implementation of advanced safety systems.
EVs typically use 2-3 times more semiconductor content than internal combustion engine models, and in powertrain-specific components, that multiplier is possibly higher. Demand is rising, especially for power electronics, battery management systems, and more energy-efficient chips. Also, MotionSafe protects the auto industry by securing vehicle data, supporting supply chains, and ensuring a safe transition to connected mobility. South African startup Motomatix applies AI and custom software solutions to strengthen supply chain resilience in the automotive repair sector.
Consumer trends in the automotive industry highlight that short videos are more effective in converting leads into customers. Dealerships can take advantage of different video formats, like how-to videos, car highlights, and customer testimonials. With more and more customers prioritizing environmental sustainability, the focus should be on promoting environmentally conscious manufacturing processes along with eco-friendly cars like electric vehicles. The truck’s design removes the internal combustion engine, advancing commercial vehicle safety standards, and protecting pedestrians and other road users. Volta Trucks also offers leasing or purchasing options, and integrates services like maintenance, charging infrastructure, and training through its truck-as-a-service model. This simplifies the transition to electric vehicles for fleets, reducing environmental impact and promoting safer urban transport.
Telematics adoption in logistics and transportation industries is driven by features such as real-time tracking, driver behavior analysis, and fuel consumption reduction. Join us today and access AMS’s wealth of global news, insights, intelligence and content, and to make valuable connections with your peers from across the automotive industry. Volkswagen is using digital twin technology at its Wolfsburg plant to simulate and optimise production processes for the Tayron SUV. This ensures precise planning, reduces downtime, and enhances efficiency in assembly operations. This decision also highlights a broader trend toward diversification in battery production hubs. With the Middle East emerging as a significant player in the EV supply chain, manufacturers must adapt their strategies to seize these new opportunities.
Jaguar Land Rover’s REALCAR project established a closed-loop recycling system that reclaims over 50K tonnes of aluminum scrap. The project avoids more than 500K tonnes of CO2 emissions by reducing the need for primary aluminum. Another instance is that of Michelin, which made a road-approved car tire with 45% sustainable materials. While the past two years have been a challenge for most auto manufacturers, high-end luxury brands have experienced unexpected success.
A 5G connection transmits data to a remote control station, which allows operators to monitor and intervene when needed. As the industry advances, 2025 will be a defining year in the automotive manufacturing sector. The convergence of AI-driven production systems, the scaling of EV capabilities, and the adoption of sustainable practices will reshape the competitive landscape. Manufacturers that successfully integrate these elements into their strategies will not only navigate the challenges of today but also position themselves as leaders in the future of mobility.
Automotive industry trends refer to changes in patterns within the automotive sector that influence vehicle design, production, marketing, and usage. Technological advancements, changes in consumer preferences, regulatory changes, and global economic conditions drive these trends. The automotive industry is highly dynamic, and trends are subject to change over time. Monitoring and understanding these trends is crucial for automakers, suppliers, and other stakeholders to stay competitive. Due to the pandemic, the automotive sector is undoubtedly facing one of the most challenging periods and a massive slowdown for the last couple of years. This calls for a thorough analysis of recent trends in the automotive industry, So this blog brings you some of the significant car market trends in 2025 that you must know.
However, used electric powertrain vehicles are still few and far between, with the Society of Motor Manufacturers and Traders, in the UK, suggesting EVs make up 2.7% of the total used car market. These solutions decrease fleet wait times and cut pollution from petrol or diesel vehicles. Hungarian startup V2ROADS offers a range of products and services tailored to the V2X ecosystem. They provide V2X applications, services, and communication stacks specifically designed for on-board units (OBUs) and road-side units (RSUs). Further, its V2X-cloud system implementation guarantees uninterrupted connectivity between vehicles and infrastructure. Finally, its V2AP (V2X Integration Platform) is a server-side software to amplify V2X services to elevate road safety and efficiency.
A simple yet impactful example would be the replacement of vehicle manuals with voice-activated AI assistants. The AI system answers the driver’s query by cross-referencing data from the car’s diagnostics. It instantly generates a detailed explanation of the issue along with potential solutions. These tools equip dealerships to handle inquiries efficiently, thus freeing time for other important tasks. They further assist with management, maintenance, and repair appointments, as well as streamlining operations. Voice search assistants help optimize interfaces for advertisements and voice search queries.
]]>In 2025, the focus will be enhancing ADAS features, such as adaptive cruise control, lane-keeping assistance, automatic emergency braking, and more. While some regions already allow limited AV testing and deployment, 2025 will likely see a more transparent legal framework surrounding autonomous driving technology. This regulatory clarity will pave the way for broader AV adoption in cities, particularly in controlled environments like urban areas or designated autonomous vehicle lanes. As autonomous vehicles become more mainstream, governments and regulatory bodies will need to create new laws to ensure their safe deployment.
Moving further east, Thailand’s electric car sales quadrupled, aided by subsidies and Chinese carmaker investments, positioning the country as a potential EV manufacturing hub. Autonomous vehicles are reshaping mobility, from AI‑powered perception to intelligent infrastructure and generative simulation. This report explores how breakthrough technologies are accelerating the shift toward safer, smarter, and more sustainable transportation systems worldwide. Automakers will continue to incorporate these systems into even more affordable models, making safety technologies more accessible to a broader range of consumers. By leveraging tech and sustainable practices, the automotive sector can meet the challenges of tomorrow while delivering exceptional value to consumers.
It is also integrated into fleet management dashboards and security operations centers (SOC). US-based startup MotionSafe provides AI-powered cybersecurity solutions that protect connected vehicles from data breaches and cyber threats. By securing these systems, cybersecurity prevents hijacking of steering or braking functions, protects sensitive driver data, and shields automakers from costly recalls and reputational harm.
The sensor integrates chip-level innovations that reduce power consumption, simplify hardware complexity, and enable performance through a modular architecture. This design ensures durability, compact packaging, and flexible vehicle integration. Chinese startup Chipv offers automotive semiconductors that combine computing capabilities with motor control and power management.
Automotive industry trends refer to changes in patterns within the automotive sector that influence vehicle design, production, marketing, and usage. Technological advancements, changes in consumer preferences, regulatory changes, and global economic conditions drive these trends. The automotive industry is highly dynamic, and trends are subject to change over time. Monitoring and understanding these trends is crucial for automakers, suppliers, and other stakeholders to stay competitive. Due to the pandemic, the automotive sector is undoubtedly facing one of the most challenging periods and a massive slowdown for the last couple of years. This calls for a thorough analysis of recent trends in the automotive industry, So this blog brings you some of the significant car market trends in 2025 that you must know.
The future trends in the automobile industry predict a roller-coaster ride for players. In 2025, the automotive industry will face global headwinds such as the energy crisis, slower global demand, and ongoing supply-chain issues. Despite these challenges, global new-vehicle sales are projected to remain flat, with new-car sales increasing. Sales of electric vehicles (EVs) are expected to grow, although governments may restructure their incentive programs. The automotive industry is transforming, fueled by evolving consumer demands, rapid technological advancements, and the urgency of addressing climate change. In 2025, the future of mobility will take a new shape in ways that promise smarter, more efficient, and more sustainable vehicles.
EVs typically use 2-3 times more semiconductor content than internal combustion engine models, and in powertrain-specific components, that multiplier is possibly higher. Demand is rising, especially for power electronics, battery management systems, and more energy-efficient chips. Also, MotionSafe protects the auto industry by securing vehicle data, supporting supply chains, and ensuring a safe transition to connected mobility. South African startup Motomatix applies AI and custom software solutions to strengthen supply chain resilience in the automotive repair sector.
Advances in solid-state batteries promise higher energy density and faster charging times, while the expansion of ultra-fast chargers addresses key barriers to EV adoption. With the growing popularity of bidirectional charging (V2G) technology, EVs now contribute energy to the grid to improve stability. By focusing on digital transformation, the company aims to integrate predictive analytics and process automation, creating production systems that are adaptable and resilient. These examples point to AI enabling real-time decision-making and predictive maintenance, while improving quality control and minimising downtime, marking the technology ‘a no-brainer’ for production in 2025. Toyota unveiled its forward-thinking approach to electric vehicle design, focusing on sustainability, performance, and cutting-edge technology.
Additionally, interest rates for used vehicle loans are higher than those for new cars. It is anticipated that used-vehicle sales will not return to pre-pandemic levels of around 40 million units per year until 2025, similar to new-vehicle sales. Connected cars are vehicles that use wireless means to connect to the Internet of Things. They offer a safe, comfortable, and convenient multimedia experience with on-demand features that allow users to browse the web while in their vehicle. They provide various features such as remote diagnostics, vehicle health reports, 4G LTE Wi-Fi hotspots, turn-by-turn directions, and warnings of car health issues.
This also presents an emerging opportunity to connect the vehicle ecosystem, creating a dynamic adaptation of data for road and weather conditions, assisted by IoT-enabled devices. Car companies plan to integrate powertrain components in the next five to ten years by combining onboard chargers with batteries. Tesla already employs single inverter housings across its models, offering efficient integration of power electronics.
The rise of such technologies reflects consumer demand for vehicles that are not just transportation tools but extensions of their digital ecosystems. Connected cars enable real-time navigation updates, Lexus LS as an executive sedan choice remote diagnostics, and seamless smartphone integration. They also support smart city initiatives by offering data for traffic management and logistics automation. Established in 2007, SG Analytics is a Great Place to Work® (GPTW) certified company with a team of over 1200 employees and a presence across the U.S.A., the UK, Switzerland, Poland, and India.
Waymo highlights this in its robotaxi fleet, which processes multimodal data to complete over 250K paid rides weekly with high reliability. Tesla’s Full Self-Driving Computer processes high-rate image input, handling camera streams of up to approximately 2.5 billion pixels per second through its camera serial interface. Its image-signal processor manages approximately 1 billion pixels per second from high dynamic range (HDR) sensor inputs. The system combines this data with inputs from multiple cameras and sensors to enable AI-driven perception and decision-making in near-real-time driving scenarios.
THINKey operates through a secure architecture using enclaves in the phone, vehicle, and cloud, adhering to the car connectivity consortium’s digital key standard. Additionally, the startup offers infotainment solutions with plug-and-play SDKs and certification-ready apps for phone mirroring and multimedia features. This facilitates the integration of Apple CarPlay, Google Android Auto, and media streaming into in-vehicle infotainment systems.
Sales for BEV and PHEV in Europe increased by 137% in 2020 compared with the previous year (despite a 20% year-over-year decrease in the total car market). In this world where we are shifting to EVs, individuals usually prefer to shift to smaller vehicles which are much more affordable and environmentally friendly. They are much more convenient to use in these congested cities and parking these vehicles is much easier. Younger generations, especially Genz or millennials prefer these vehicles as they are much more attractive.
Its vehicle control system processes passenger comfort thresholds related to acceleration, deceleration, and jerk rate. It then adjusts driving decisions to minimize motion sickness and maintain smooth operation. The global automotive sensor fusion market is projected to reach USD 3.3 billion by 2030 at a 42.4% CAGR.
Its early fusion approach integrates LiDAR and radar data, while neural networks infer road elements and topology to create accurate high-definition maps. Continuous change detection triggers automatic cloud updates to ensure up-to-date navigation information. South Korean startup BOS Semiconductors builds Eagle-N, an AI accelerator for in-vehicle infotainment (IVI) and ADAS.
]]>