您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

6088 行
206 KiB

  1. module.exports =
  2. /******/ (function(modules) { // webpackBootstrap
  3. /******/ // The module cache
  4. /******/ var installedModules = require('../../../ssr-module-cache.js');
  5. /******/
  6. /******/ // The require function
  7. /******/ function __webpack_require__(moduleId) {
  8. /******/
  9. /******/ // Check if module is in cache
  10. /******/ if(installedModules[moduleId]) {
  11. /******/ return installedModules[moduleId].exports;
  12. /******/ }
  13. /******/ // Create a new module (and put it into the cache)
  14. /******/ var module = installedModules[moduleId] = {
  15. /******/ i: moduleId,
  16. /******/ l: false,
  17. /******/ exports: {}
  18. /******/ };
  19. /******/
  20. /******/ // Execute the module function
  21. /******/ var threw = true;
  22. /******/ try {
  23. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  24. /******/ threw = false;
  25. /******/ } finally {
  26. /******/ if(threw) delete installedModules[moduleId];
  27. /******/ }
  28. /******/
  29. /******/ // Flag the module as loaded
  30. /******/ module.l = true;
  31. /******/
  32. /******/ // Return the exports of the module
  33. /******/ return module.exports;
  34. /******/ }
  35. /******/
  36. /******/
  37. /******/ // expose the modules object (__webpack_modules__)
  38. /******/ __webpack_require__.m = modules;
  39. /******/
  40. /******/ // expose the module cache
  41. /******/ __webpack_require__.c = installedModules;
  42. /******/
  43. /******/ // define getter function for harmony exports
  44. /******/ __webpack_require__.d = function(exports, name, getter) {
  45. /******/ if(!__webpack_require__.o(exports, name)) {
  46. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  47. /******/ }
  48. /******/ };
  49. /******/
  50. /******/ // define __esModule on exports
  51. /******/ __webpack_require__.r = function(exports) {
  52. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  53. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  54. /******/ }
  55. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  56. /******/ };
  57. /******/
  58. /******/ // create a fake namespace object
  59. /******/ // mode & 1: value is a module id, require it
  60. /******/ // mode & 2: merge all properties of value into the ns
  61. /******/ // mode & 4: return value when already ns object
  62. /******/ // mode & 8|1: behave like require
  63. /******/ __webpack_require__.t = function(value, mode) {
  64. /******/ if(mode & 1) value = __webpack_require__(value);
  65. /******/ if(mode & 8) return value;
  66. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  67. /******/ var ns = Object.create(null);
  68. /******/ __webpack_require__.r(ns);
  69. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  70. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  71. /******/ return ns;
  72. /******/ };
  73. /******/
  74. /******/ // getDefaultExport function for compatibility with non-harmony modules
  75. /******/ __webpack_require__.n = function(module) {
  76. /******/ var getter = module && module.__esModule ?
  77. /******/ function getDefault() { return module['default']; } :
  78. /******/ function getModuleExports() { return module; };
  79. /******/ __webpack_require__.d(getter, 'a', getter);
  80. /******/ return getter;
  81. /******/ };
  82. /******/
  83. /******/ // Object.prototype.hasOwnProperty.call
  84. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  85. /******/
  86. /******/ // __webpack_public_path__
  87. /******/ __webpack_require__.p = "";
  88. /******/
  89. /******/
  90. /******/ // Load entry module and return exports
  91. /******/ return __webpack_require__(__webpack_require__.s = 5);
  92. /******/ })
  93. /************************************************************************/
  94. /******/ ({
  95. /***/ "+7RK":
  96. /***/ (function(module, exports) {
  97. module.exports = "/_next/static/images/7-8746fe7ff9082035acdbce19eeba960d.jpg";
  98. /***/ }),
  99. /***/ "+dZB":
  100. /***/ (function(module, exports) {
  101. module.exports = "/_next/static/images/4-636c200fc5d2d77a2ca18388ae4de000.jpg";
  102. /***/ }),
  103. /***/ "/jkW":
  104. /***/ (function(module, exports, __webpack_require__) {
  105. "use strict";
  106. Object.defineProperty(exports, "__esModule", {
  107. value: true
  108. }); // Identify /[param]/ in route string
  109. const TEST_ROUTE = /\/\[[^/]+?\](?=\/|$)/;
  110. function isDynamicRoute(route) {
  111. return TEST_ROUTE.test(route);
  112. }
  113. exports.isDynamicRoute = isDynamicRoute;
  114. /***/ }),
  115. /***/ "0Bsm":
  116. /***/ (function(module, exports, __webpack_require__) {
  117. "use strict";
  118. var _interopRequireDefault = __webpack_require__("AroE");
  119. exports.__esModule = true;
  120. exports.default = withRouter;
  121. var _react = _interopRequireDefault(__webpack_require__("cDcd"));
  122. var _router = __webpack_require__("nOHt");
  123. function withRouter(ComposedComponent) {
  124. function WithRouterWrapper(props) {
  125. return _react.default.createElement(ComposedComponent, Object.assign({
  126. router: (0, _router.useRouter)()
  127. }, props));
  128. }
  129. WithRouterWrapper.getInitialProps = ComposedComponent.getInitialProps // This is needed to allow checking for custom getInitialProps in _app
  130. ;
  131. WithRouterWrapper.origGetInitialProps = ComposedComponent.origGetInitialProps;
  132. if (false) { var name; }
  133. return WithRouterWrapper;
  134. }
  135. /***/ }),
  136. /***/ "0G1C":
  137. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  138. "use strict";
  139. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  140. var nextjs_material_kit = __webpack_require__("eDSW");
  141. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/tooltipsStyle.js
  142. const tooltipsStyle = {
  143. tooltip: {
  144. padding: "10px 15px",
  145. minWidth: "130px",
  146. color: "#555555",
  147. lineHeight: "1.7em",
  148. background: "#FFFFFF",
  149. border: "none",
  150. borderRadius: "3px",
  151. boxShadow: "0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2)",
  152. maxWidth: "200px",
  153. textAlign: "center",
  154. fontFamily: '"Helvetica Neue",Helvetica,Arial,sans-serif',
  155. fontSize: "0.875em",
  156. fontStyle: "normal",
  157. fontWeight: "400",
  158. textShadow: "none",
  159. textTransform: "none",
  160. letterSpacing: "normal",
  161. wordBreak: "normal",
  162. wordSpacing: "normal",
  163. wordWrap: "normal",
  164. whiteSpace: "normal",
  165. lineBreak: "auto"
  166. }
  167. };
  168. /* harmony default export */ var nextjs_material_kit_tooltipsStyle = (tooltipsStyle);
  169. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/headerLinksStyle.js
  170. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  171. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  172. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  173. const headerLinksStyle = theme => _objectSpread({
  174. list: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  175. fontSize: "14px",
  176. margin: 0,
  177. paddingLeft: "0",
  178. listStyle: "none",
  179. paddingTop: "0",
  180. paddingBottom: "0",
  181. color: "inherit"
  182. }),
  183. listItem: {
  184. float: "left",
  185. color: "inherit",
  186. position: "relative",
  187. display: "block",
  188. width: "auto",
  189. margin: "0",
  190. padding: "0",
  191. [theme.breakpoints.down("sm")]: {
  192. width: "100%",
  193. "&:after": {
  194. width: "calc(100% - 30px)",
  195. content: '""',
  196. display: "block",
  197. height: "1px",
  198. marginLeft: "15px",
  199. backgroundColor: "#e5e5e5"
  200. }
  201. }
  202. },
  203. listItemText: {
  204. padding: "0 !important"
  205. },
  206. navLink: {
  207. color: "inherit",
  208. position: "relative",
  209. padding: "0.9375rem",
  210. fontWeight: "400",
  211. fontSize: "12px",
  212. textTransform: "uppercase",
  213. borderRadius: "3px",
  214. lineHeight: "20px",
  215. textDecoration: "none",
  216. margin: "0px",
  217. display: "inline-flex",
  218. "&:hover,&:focus": {
  219. color: "inherit",
  220. background: "rgba(200, 200, 200, 0.2)"
  221. },
  222. [theme.breakpoints.down("sm")]: {
  223. width: "calc(100% - 30px)",
  224. marginLeft: "15px",
  225. marginBottom: "8px",
  226. marginTop: "8px",
  227. textAlign: "left",
  228. "& > span:first-child": {
  229. justifyContent: "flex-start"
  230. }
  231. }
  232. },
  233. notificationNavLink: {
  234. [theme.breakpoints.down("md")]: {
  235. top: "0",
  236. margin: "5px 15px"
  237. },
  238. color: "#FFF",
  239. padding: "0.9375rem",
  240. fontWeight: "400",
  241. fontSize: "12px",
  242. textTransform: "uppercase",
  243. lineHeight: "20px",
  244. textDecoration: "none",
  245. margin: "0px",
  246. display: "inline-flex",
  247. top: "4px"
  248. },
  249. registerNavLink: {
  250. [theme.breakpoints.down("md")]: {
  251. top: "0",
  252. margin: "5px 15px"
  253. },
  254. top: "3px",
  255. position: "relative",
  256. fontWeight: "400",
  257. fontSize: "12px",
  258. textTransform: "uppercase",
  259. lineHeight: "20px",
  260. textDecoration: "none",
  261. margin: "0px",
  262. display: "inline-flex"
  263. },
  264. navLinkActive: {
  265. color: "inherit",
  266. backgroundColor: "rgba(255, 255, 255, 0.1)"
  267. },
  268. icons: {
  269. width: "20px",
  270. height: "20px",
  271. marginRight: "3px"
  272. },
  273. socialIcons: {
  274. position: "relative",
  275. fontSize: "20px !important",
  276. marginRight: "4px"
  277. },
  278. dropdownLink: {
  279. "&,&:hover,&:focus": {
  280. color: "inherit",
  281. textDecoration: "none",
  282. display: "block",
  283. padding: "10px 20px"
  284. }
  285. }
  286. }, nextjs_material_kit_tooltipsStyle, {
  287. marginRight5: {
  288. marginRight: "5px"
  289. }
  290. });
  291. /* harmony default export */ var components_headerLinksStyle = __webpack_exports__["a"] = (headerLinksStyle);
  292. /***/ }),
  293. /***/ "0LMq":
  294. /***/ (function(module, exports) {
  295. module.exports = require("@material-ui/core/List");
  296. /***/ }),
  297. /***/ "1kN1":
  298. /***/ (function(module, exports) {
  299. module.exports = "/_next/static/images/pim-a8e6cb6809bd451b25ffc8000dcfbfc6.jpg";
  300. /***/ }),
  301. /***/ "2kat":
  302. /***/ (function(module, exports) {
  303. module.exports = require("@material-ui/icons");
  304. /***/ }),
  305. /***/ "2wdC":
  306. /***/ (function(module, exports) {
  307. module.exports = "/_next/static/images/8-6c09644b3a9baa03017154162f1a5cbc.jpg";
  308. /***/ }),
  309. /***/ "31Yn":
  310. /***/ (function(module, exports) {
  311. module.exports = require("@material-ui/core/ClickAwayListener");
  312. /***/ }),
  313. /***/ "3REV":
  314. /***/ (function(module, exports) {
  315. module.exports = require("@material-ui/icons/LocalGroceryStore");
  316. /***/ }),
  317. /***/ "4151":
  318. /***/ (function(module, exports) {
  319. module.exports = require("@material-ui/core/AppBar");
  320. /***/ }),
  321. /***/ "4D1s":
  322. /***/ (function(module, exports) {
  323. module.exports = require("@material-ui/icons/Menu");
  324. /***/ }),
  325. /***/ "4esR":
  326. /***/ (function(module, exports) {
  327. module.exports = "/_next/static/images/bpr-34fa6e685790feabeab3abfa08a16b69.jpg";
  328. /***/ }),
  329. /***/ 5:
  330. /***/ (function(module, exports, __webpack_require__) {
  331. module.exports = __webpack_require__("CH2o");
  332. /***/ }),
  333. /***/ "5LSk":
  334. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  335. "use strict";
  336. // EXPORTS
  337. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CardFooter; });
  338. // EXTERNAL MODULE: external "react"
  339. var external_react_ = __webpack_require__("cDcd");
  340. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  341. // EXTERNAL MODULE: external "classnames"
  342. var external_classnames_ = __webpack_require__("K2gz");
  343. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  344. // EXTERNAL MODULE: external "@material-ui/core/styles"
  345. var styles_ = __webpack_require__("9Pu4");
  346. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardFooterStyle.js
  347. const cardFooterStyle = {
  348. cardFooter: {
  349. display: "flex",
  350. alignItems: "center",
  351. backgroundColor: "transparent",
  352. padding: "0.9375rem 1.875rem"
  353. }
  354. };
  355. /* harmony default export */ var components_cardFooterStyle = (cardFooterStyle);
  356. // CONCATENATED MODULE: ./components/Card/CardFooter.js
  357. var __jsx = external_react_default.a.createElement;
  358. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  359. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  360. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  361. // nodejs library that concatenates classes
  362. // nodejs library to set properties for components
  363. // @material-ui/core components
  364. // @material-ui/icons
  365. // core components
  366. const useStyles = Object(styles_["makeStyles"])(components_cardFooterStyle);
  367. function CardFooter(props) {
  368. const classes = useStyles();
  369. const {
  370. className,
  371. children
  372. } = props,
  373. rest = _objectWithoutProperties(props, ["className", "children"]);
  374. const cardFooterClasses = external_classnames_default()({
  375. [classes.cardFooter]: true,
  376. [className]: className !== undefined
  377. });
  378. return __jsx("div", _extends({
  379. className: cardFooterClasses
  380. }, rest), children);
  381. }
  382. /***/ }),
  383. /***/ "7KCV":
  384. /***/ (function(module, exports, __webpack_require__) {
  385. var _typeof = __webpack_require__("C+bE");
  386. function _getRequireWildcardCache() {
  387. if (typeof WeakMap !== "function") return null;
  388. var cache = new WeakMap();
  389. _getRequireWildcardCache = function _getRequireWildcardCache() {
  390. return cache;
  391. };
  392. return cache;
  393. }
  394. function _interopRequireWildcard(obj) {
  395. if (obj && obj.__esModule) {
  396. return obj;
  397. }
  398. if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") {
  399. return {
  400. "default": obj
  401. };
  402. }
  403. var cache = _getRequireWildcardCache();
  404. if (cache && cache.has(obj)) {
  405. return cache.get(obj);
  406. }
  407. var newObj = {};
  408. var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
  409. for (var key in obj) {
  410. if (Object.prototype.hasOwnProperty.call(obj, key)) {
  411. var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
  412. if (desc && (desc.get || desc.set)) {
  413. Object.defineProperty(newObj, key, desc);
  414. } else {
  415. newObj[key] = obj[key];
  416. }
  417. }
  418. }
  419. newObj["default"] = obj;
  420. if (cache) {
  421. cache.set(obj, newObj);
  422. }
  423. return newObj;
  424. }
  425. module.exports = _interopRequireWildcard;
  426. /***/ }),
  427. /***/ "7WNa":
  428. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  429. "use strict";
  430. /* harmony import */ var assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("eDSW");
  431. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  432. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  433. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  434. const notificationsStyles = {
  435. section: {
  436. backgroundColor: "#FFFFFF",
  437. display: "block",
  438. width: "100%",
  439. position: "relative",
  440. padding: "0"
  441. },
  442. title: _objectSpread({}, assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* title */ "v"], {
  443. marginTop: "30px",
  444. minHeight: "32px",
  445. textDecoration: "none"
  446. }),
  447. container: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* container */ "c"]
  448. };
  449. /* harmony default export */ __webpack_exports__["a"] = (notificationsStyles);
  450. /***/ }),
  451. /***/ "7vM9":
  452. /***/ (function(module, exports) {
  453. module.exports = require("@material-ui/core/Icon");
  454. /***/ }),
  455. /***/ "8//M":
  456. /***/ (function(module, exports) {
  457. module.exports = require("@material-ui/core/styles/makeStyles");
  458. /***/ }),
  459. /***/ "8x5e":
  460. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  461. "use strict";
  462. // EXPORTS
  463. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Header; });
  464. // EXTERNAL MODULE: external "react"
  465. var external_react_ = __webpack_require__("cDcd");
  466. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  467. // EXTERNAL MODULE: ./node_modules/next/link.js
  468. var next_link = __webpack_require__("YFqc");
  469. var link_default = /*#__PURE__*/__webpack_require__.n(next_link);
  470. // EXTERNAL MODULE: external "classnames"
  471. var external_classnames_ = __webpack_require__("K2gz");
  472. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  473. // EXTERNAL MODULE: external "@material-ui/core/styles"
  474. var styles_ = __webpack_require__("9Pu4");
  475. // EXTERNAL MODULE: external "@material-ui/core/AppBar"
  476. var AppBar_ = __webpack_require__("4151");
  477. var AppBar_default = /*#__PURE__*/__webpack_require__.n(AppBar_);
  478. // EXTERNAL MODULE: external "@material-ui/core/Toolbar"
  479. var Toolbar_ = __webpack_require__("Ms0O");
  480. var Toolbar_default = /*#__PURE__*/__webpack_require__.n(Toolbar_);
  481. // EXTERNAL MODULE: external "@material-ui/core/IconButton"
  482. var IconButton_ = __webpack_require__("EmCc");
  483. var IconButton_default = /*#__PURE__*/__webpack_require__.n(IconButton_);
  484. // EXTERNAL MODULE: external "@material-ui/core/Button"
  485. var Button_ = __webpack_require__("Wh1t");
  486. var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
  487. // EXTERNAL MODULE: external "@material-ui/core/Hidden"
  488. var Hidden_ = __webpack_require__("Y8uC");
  489. var Hidden_default = /*#__PURE__*/__webpack_require__.n(Hidden_);
  490. // EXTERNAL MODULE: external "@material-ui/core/Drawer"
  491. var Drawer_ = __webpack_require__("Q01v");
  492. var Drawer_default = /*#__PURE__*/__webpack_require__.n(Drawer_);
  493. // EXTERNAL MODULE: external "@material-ui/icons/Menu"
  494. var Menu_ = __webpack_require__("4D1s");
  495. var Menu_default = /*#__PURE__*/__webpack_require__.n(Menu_);
  496. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  497. var nextjs_material_kit = __webpack_require__("eDSW");
  498. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/headerStyle.js
  499. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  500. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  501. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  502. const headerStyle = {
  503. appBar: {
  504. display: "flex",
  505. border: "0",
  506. borderRadius: "3px",
  507. padding: "0.625rem 0",
  508. marginBottom: "20px",
  509. color: "#555",
  510. width: "100%",
  511. backgroundColor: "#fff",
  512. boxShadow: "0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15)",
  513. transition: "all 150ms ease 0s",
  514. alignItems: "center",
  515. flexFlow: "row nowrap",
  516. justifyContent: "flex-start",
  517. position: "relative",
  518. zIndex: "unset"
  519. },
  520. absolute: {
  521. position: "absolute",
  522. zIndex: "1100"
  523. },
  524. fixed: {
  525. position: "fixed",
  526. zIndex: "1100"
  527. },
  528. container: _objectSpread({}, nextjs_material_kit["c" /* container */], {
  529. minHeight: "50px",
  530. flex: "1",
  531. alignItems: "center",
  532. justifyContent: "space-between",
  533. display: "flex",
  534. flexWrap: "nowrap"
  535. }),
  536. flex: {
  537. flex: 1
  538. },
  539. title: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  540. lineHeight: "30px",
  541. fontSize: "18px",
  542. borderRadius: "3px",
  543. textTransform: "none",
  544. color: "inherit",
  545. padding: "8px 16px",
  546. letterSpacing: "unset",
  547. "&:hover,&:focus": {
  548. color: "inherit",
  549. background: "transparent"
  550. }
  551. }),
  552. appResponsive: {
  553. margin: "20px 10px"
  554. },
  555. primary: {
  556. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  557. color: "#FFFFFF",
  558. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.46)}`
  559. },
  560. info: {
  561. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  562. color: "#FFFFFF",
  563. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.46)}`
  564. },
  565. success: {
  566. backgroundColor: nextjs_material_kit["u" /* successColor */],
  567. color: "#FFFFFF",
  568. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.46)}`
  569. },
  570. warning: {
  571. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  572. color: "#FFFFFF",
  573. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.46)}`
  574. },
  575. danger: {
  576. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  577. color: "#FFFFFF",
  578. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.46)}`
  579. },
  580. rose: {
  581. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  582. color: "#FFFFFF",
  583. boxShadow: `0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["r" /* roseColor */], 0.46)}`
  584. },
  585. transparent: {
  586. backgroundColor: "transparent !important",
  587. boxShadow: "none",
  588. paddingTop: "25px",
  589. color: "#FFFFFF"
  590. },
  591. dark: {
  592. color: "#FFFFFF",
  593. backgroundColor: "#212121 !important",
  594. boxShadow: "0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px rgba(33, 33, 33, 0.46)"
  595. },
  596. white: {
  597. border: "0",
  598. padding: "0.625rem 0",
  599. marginBottom: "20px",
  600. color: "#555",
  601. backgroundColor: "#fff !important",
  602. boxShadow: "0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15)"
  603. },
  604. drawerPaper: _objectSpread({
  605. border: "none",
  606. bottom: "0",
  607. transitionProperty: "top, bottom, width",
  608. transitionDuration: ".2s, .2s, .35s",
  609. transitionTimingFunction: "linear, linear, ease",
  610. width: nextjs_material_kit["h" /* drawerWidth */]
  611. }, nextjs_material_kit["a" /* boxShadow */], {
  612. position: "fixed",
  613. display: "block",
  614. top: "0",
  615. height: "100vh",
  616. right: "0",
  617. left: "auto",
  618. visibility: "visible",
  619. overflowY: "visible",
  620. borderTop: "none",
  621. textAlign: "left",
  622. paddingRight: "0px",
  623. paddingLeft: "0"
  624. }, nextjs_material_kit["w" /* transition */])
  625. };
  626. /* harmony default export */ var components_headerStyle = (headerStyle);
  627. // CONCATENATED MODULE: ./components/Header/Header.js
  628. var __jsx = external_react_default.a.createElement;
  629. // nodejs library that concatenates classes
  630. // nodejs library to set properties for components
  631. // @material-ui/core components
  632. // @material-ui/icons
  633. // core components
  634. const useStyles = Object(styles_["makeStyles"])(components_headerStyle);
  635. function Header(props) {
  636. const classes = useStyles();
  637. const [mobileOpen, setMobileOpen] = external_react_default.a.useState(false);
  638. external_react_default.a.useEffect(() => {
  639. if (props.changeColorOnScroll) {
  640. window.addEventListener("scroll", headerColorChange);
  641. }
  642. return function cleanup() {
  643. if (props.changeColorOnScroll) {
  644. window.removeEventListener("scroll", headerColorChange);
  645. }
  646. };
  647. });
  648. const handleDrawerToggle = () => {
  649. setMobileOpen(!mobileOpen);
  650. };
  651. const headerColorChange = () => {
  652. const {
  653. color,
  654. changeColorOnScroll
  655. } = props;
  656. const windowsScrollTop = window.pageYOffset;
  657. if (windowsScrollTop > changeColorOnScroll.height) {
  658. document.body.getElementsByTagName("header")[0].classList.remove(classes[color]);
  659. document.body.getElementsByTagName("header")[0].classList.add(classes[changeColorOnScroll.color]);
  660. } else {
  661. document.body.getElementsByTagName("header")[0].classList.add(classes[color]);
  662. document.body.getElementsByTagName("header")[0].classList.remove(classes[changeColorOnScroll.color]);
  663. }
  664. };
  665. const {
  666. color,
  667. rightLinks,
  668. leftLinks,
  669. brand,
  670. fixed,
  671. absolute
  672. } = props;
  673. const appBarClasses = external_classnames_default()({
  674. [classes.appBar]: true,
  675. [classes[color]]: color,
  676. [classes.absolute]: absolute,
  677. [classes.fixed]: fixed
  678. });
  679. const brandComponent = __jsx(link_default.a, {
  680. href: "/components",
  681. as: "/components"
  682. }, __jsx(Button_default.a, {
  683. className: classes.title
  684. }, brand));
  685. return __jsx(AppBar_default.a, {
  686. className: appBarClasses
  687. }, __jsx(Toolbar_default.a, {
  688. className: classes.container
  689. }, leftLinks !== undefined ? brandComponent : null, __jsx("div", {
  690. className: classes.flex
  691. }, leftLinks !== undefined ? __jsx(Hidden_default.a, {
  692. smDown: true,
  693. implementation: "css"
  694. }, leftLinks) : brandComponent), __jsx(Hidden_default.a, {
  695. smDown: true,
  696. implementation: "css"
  697. }, rightLinks), __jsx(Hidden_default.a, {
  698. mdUp: true
  699. }, __jsx(IconButton_default.a, {
  700. color: "inherit",
  701. "aria-label": "open drawer",
  702. onClick: handleDrawerToggle
  703. }, __jsx(Menu_default.a, null)))), __jsx(Hidden_default.a, {
  704. mdUp: true,
  705. implementation: "js"
  706. }, __jsx(Drawer_default.a, {
  707. variant: "temporary",
  708. anchor: "right",
  709. open: mobileOpen,
  710. classes: {
  711. paper: classes.drawerPaper
  712. },
  713. onClose: handleDrawerToggle
  714. }, __jsx("div", {
  715. className: classes.appResponsive
  716. }, leftLinks, rightLinks))));
  717. }
  718. Header.defaultProp = {
  719. color: "black"
  720. };
  721. /***/ }),
  722. /***/ "9Pu4":
  723. /***/ (function(module, exports) {
  724. module.exports = require("@material-ui/core/styles");
  725. /***/ }),
  726. /***/ "A2So":
  727. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  728. "use strict";
  729. // EXPORTS
  730. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Card; });
  731. // EXTERNAL MODULE: external "react"
  732. var external_react_ = __webpack_require__("cDcd");
  733. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  734. // EXTERNAL MODULE: external "classnames"
  735. var external_classnames_ = __webpack_require__("K2gz");
  736. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  737. // EXTERNAL MODULE: external "@material-ui/core/styles"
  738. var styles_ = __webpack_require__("9Pu4");
  739. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardStyle.js
  740. const cardStyle = {
  741. card: {
  742. border: "0",
  743. marginBottom: "30px",
  744. marginTop: "30px",
  745. borderRadius: "6px",
  746. color: "rgba(0, 0, 0, 0.87)",
  747. background: "#fff",
  748. width: "100%",
  749. boxShadow: "0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12)",
  750. position: "relative",
  751. display: "flex",
  752. flexDirection: "column",
  753. minWidth: "0",
  754. wordWrap: "break-word",
  755. fontSize: ".875rem",
  756. transition: "all 300ms linear"
  757. },
  758. cardPlain: {
  759. background: "transparent",
  760. boxShadow: "none"
  761. },
  762. cardCarousel: {
  763. overflow: "hidden"
  764. }
  765. };
  766. /* harmony default export */ var components_cardStyle = (cardStyle);
  767. // CONCATENATED MODULE: ./components/Card/Card.js
  768. var __jsx = external_react_default.a.createElement;
  769. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  770. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  771. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  772. // nodejs library that concatenates classes
  773. // nodejs library to set properties for components
  774. // @material-ui/core components
  775. // @material-ui/icons
  776. // core components
  777. const useStyles = Object(styles_["makeStyles"])(components_cardStyle);
  778. function Card(props) {
  779. const classes = useStyles();
  780. const {
  781. className,
  782. children,
  783. plain,
  784. carousel
  785. } = props,
  786. rest = _objectWithoutProperties(props, ["className", "children", "plain", "carousel"]);
  787. const cardClasses = external_classnames_default()({
  788. [classes.card]: true,
  789. [classes.cardPlain]: plain,
  790. [classes.cardCarousel]: carousel,
  791. [className]: className !== undefined
  792. });
  793. return __jsx("div", _extends({
  794. className: cardClasses
  795. }, rest), children);
  796. }
  797. /***/ }),
  798. /***/ "AqwQ":
  799. /***/ (function(module, exports) {
  800. module.exports = "/_next/static/images/hino-f06db955a9c6752e5bb7aeb0166c8726.jpg";
  801. /***/ }),
  802. /***/ "AroE":
  803. /***/ (function(module, exports) {
  804. function _interopRequireDefault(obj) {
  805. return obj && obj.__esModule ? obj : {
  806. "default": obj
  807. };
  808. }
  809. module.exports = _interopRequireDefault;
  810. /***/ }),
  811. /***/ "BmGO":
  812. /***/ (function(module, exports) {
  813. module.exports = "/_next/static/images/home-f2455dae63ec12ac60236592f9155878.jpg";
  814. /***/ }),
  815. /***/ "C+bE":
  816. /***/ (function(module, exports) {
  817. function _typeof2(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
  818. function _typeof(obj) {
  819. if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") {
  820. module.exports = _typeof = function _typeof(obj) {
  821. return _typeof2(obj);
  822. };
  823. } else {
  824. module.exports = _typeof = function _typeof(obj) {
  825. return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj);
  826. };
  827. }
  828. return _typeof(obj);
  829. }
  830. module.exports = _typeof;
  831. /***/ }),
  832. /***/ "CH2o":
  833. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  834. "use strict";
  835. // ESM COMPAT FLAG
  836. __webpack_require__.r(__webpack_exports__);
  837. // EXPORTS
  838. __webpack_require__.d(__webpack_exports__, "default", function() { return /* binding */ LandingPage; });
  839. // EXTERNAL MODULE: external "react"
  840. var external_react_ = __webpack_require__("cDcd");
  841. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  842. // EXTERNAL MODULE: external "classnames"
  843. var external_classnames_ = __webpack_require__("K2gz");
  844. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  845. // EXTERNAL MODULE: external "@material-ui/core/styles"
  846. var styles_ = __webpack_require__("9Pu4");
  847. // EXTERNAL MODULE: ./components/Header/Header.js + 1 modules
  848. var Header = __webpack_require__("8x5e");
  849. // EXTERNAL MODULE: ./components/Footer/Footer.js
  850. var Footer = __webpack_require__("HXcA");
  851. // EXTERNAL MODULE: ./components/Grid/GridContainer.js
  852. var GridContainer = __webpack_require__("mtPR");
  853. // EXTERNAL MODULE: ./components/Grid/GridItem.js
  854. var GridItem = __webpack_require__("i4t8");
  855. // EXTERNAL MODULE: ./components/CustomButtons/Button.js + 1 modules
  856. var Button = __webpack_require__("Kg+a");
  857. // EXTERNAL MODULE: ./node_modules/next/link.js
  858. var next_link = __webpack_require__("YFqc");
  859. var link_default = /*#__PURE__*/__webpack_require__.n(next_link);
  860. // EXTERNAL MODULE: external "@material-ui/core/List"
  861. var List_ = __webpack_require__("0LMq");
  862. var List_default = /*#__PURE__*/__webpack_require__.n(List_);
  863. // EXTERNAL MODULE: external "@material-ui/core/ListItem"
  864. var ListItem_ = __webpack_require__("c25J");
  865. var ListItem_default = /*#__PURE__*/__webpack_require__.n(ListItem_);
  866. // EXTERNAL MODULE: external "@material-ui/core/Icon"
  867. var Icon_ = __webpack_require__("7vM9");
  868. var Icon_default = /*#__PURE__*/__webpack_require__.n(Icon_);
  869. // EXTERNAL MODULE: external "@material-ui/icons/LocalGroceryStore"
  870. var LocalGroceryStore_ = __webpack_require__("3REV");
  871. // EXTERNAL MODULE: external "@material-ui/icons"
  872. var icons_ = __webpack_require__("2kat");
  873. // EXTERNAL MODULE: ./components/CustomDropdown/CustomDropdown.js + 1 modules
  874. var CustomDropdown = __webpack_require__("QOEo");
  875. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit/components/headerLinksStyle.js + 1 modules
  876. var headerLinksStyle = __webpack_require__("0G1C");
  877. // CONCATENATED MODULE: ./components/Header/HeaderHome.js
  878. var __jsx = external_react_default.a.createElement;
  879. /*eslint-disable*/
  880. // @material-ui/core components
  881. // import People from "@material-ui/core/People";
  882. // @material-ui/icons
  883. // core components
  884. const useStyles = Object(styles_["makeStyles"])(headerLinksStyle["a" /* default */]);
  885. function HeaderHome(props) {
  886. const classes = useStyles();
  887. return __jsx("div", null, __jsx(List_default.a, {
  888. className: classes.list
  889. }, __jsx(ListItem_default.a, {
  890. className: classes.listItem
  891. }, __jsx(link_default.a, {
  892. href: "#"
  893. }, __jsx(Button["a" /* default */], {
  894. color: "transparent",
  895. className: classes.navLink
  896. }, __jsx("img", {
  897. src: "https://1.bp.blogspot.com/-J9AsxdwrF-Y/Wn70KyBApaI/AAAAAAAACRo/LTy3zrALzhckryd9QPi_KuVyWvwFMZyMQCLcBGAs/s640/TG.png",
  898. width: "180px"
  899. })))), __jsx(ListItem_default.a, {
  900. className: classes.listItem
  901. }, __jsx(link_default.a, {
  902. href: "#"
  903. }, __jsx(Button["a" /* default */], {
  904. color: "transparent",
  905. className: classes.navLink,
  906. style: {
  907. marginTop: "10px"
  908. }
  909. }, __jsx(Icon_default.a, {
  910. className: classes.icons
  911. }, "home"), " Home"))), __jsx(ListItem_default.a, {
  912. className: classes.listItem
  913. }, __jsx(link_default.a, {
  914. href: "#"
  915. }, __jsx(Button["a" /* default */], {
  916. color: "transparent",
  917. className: classes.navLink,
  918. style: {
  919. marginTop: "10px"
  920. }
  921. }, __jsx(Icon_default.a, {
  922. className: classes.icons
  923. }, "card_travel"), " Core Value"))), __jsx(ListItem_default.a, {
  924. className: classes.listItem
  925. }, __jsx(link_default.a, {
  926. href: "#"
  927. }, __jsx(Button["a" /* default */], {
  928. color: "transparent",
  929. className: classes.navLink,
  930. style: {
  931. marginTop: "10px"
  932. }
  933. }, __jsx(Icon_default.a, {
  934. className: classes.icons
  935. }, "business"), " Businees Partner"))), __jsx(ListItem_default.a, {
  936. className: classes.listItem
  937. }, __jsx(link_default.a, {
  938. href: "#"
  939. }, __jsx(Button["a" /* default */], {
  940. color: "transparent",
  941. className: classes.navLink,
  942. style: {
  943. marginTop: "10px"
  944. }
  945. }, __jsx(Icon_default.a, {
  946. className: classes.icons
  947. }, "perm_identity"), " About Us"))), __jsx(ListItem_default.a, {
  948. className: classes.listItem
  949. }, __jsx(link_default.a, {
  950. href: "#"
  951. }, __jsx(Button["a" /* default */], {
  952. color: "transparent",
  953. className: classes.navLink,
  954. style: {
  955. marginTop: "10px"
  956. }
  957. }, __jsx(Icon_default.a, {
  958. className: classes.icons
  959. }, "dashboard"), " Gallery"))), __jsx(ListItem_default.a, {
  960. className: classes.listItem
  961. }, __jsx(link_default.a, {
  962. href: "#"
  963. }, __jsx(Button["a" /* default */], {
  964. color: "transparent",
  965. className: classes.navLink,
  966. style: {
  967. marginTop: "10px"
  968. }
  969. }))), __jsx(ListItem_default.a, {
  970. className: classes.listItem
  971. }, __jsx(link_default.a, {
  972. href: "#"
  973. }, __jsx(Button["a" /* default */], {
  974. color: "transparent",
  975. className: classes.navLink,
  976. style: {
  977. marginTop: "10px"
  978. }
  979. }))), __jsx(ListItem_default.a, {
  980. className: classes.listItem
  981. }, __jsx(link_default.a, {
  982. href: "#"
  983. }, __jsx(Button["a" /* default */], {
  984. color: "transparent",
  985. className: classes.navLink,
  986. style: {
  987. marginTop: "10px"
  988. }
  989. }))), __jsx(ListItem_default.a, {
  990. className: classes.listItem
  991. }, __jsx(link_default.a, {
  992. href: "#"
  993. }, __jsx(Button["a" /* default */], {
  994. color: "transparent",
  995. className: classes.navLink,
  996. style: {
  997. marginTop: "10px"
  998. }
  999. }))), __jsx(ListItem_default.a, {
  1000. className: classes.listItem
  1001. }, __jsx(link_default.a, {
  1002. href: "#"
  1003. }, __jsx(Button["a" /* default */], {
  1004. color: "transparent",
  1005. className: classes.navLink,
  1006. style: {
  1007. marginTop: "10px"
  1008. }
  1009. }))), __jsx(ListItem_default.a, {
  1010. className: classes.listItem
  1011. }, __jsx(link_default.a, {
  1012. href: "#"
  1013. }, __jsx(Button["a" /* default */], {
  1014. color: "transparent",
  1015. className: classes.navLink,
  1016. style: {
  1017. marginTop: "10px"
  1018. }
  1019. }))), __jsx(ListItem_default.a, {
  1020. className: classes.listItem
  1021. }, __jsx(link_default.a, {
  1022. href: "#"
  1023. }, __jsx(Button["a" /* default */], {
  1024. color: "transparent",
  1025. className: classes.navLink,
  1026. style: {
  1027. marginTop: "10px"
  1028. }
  1029. }))), __jsx(ListItem_default.a, {
  1030. className: classes.listItem
  1031. }, __jsx(link_default.a, {
  1032. href: "#"
  1033. }, __jsx(Button["a" /* default */], {
  1034. color: "transparent",
  1035. className: classes.navLink,
  1036. style: {
  1037. marginTop: "10px"
  1038. }
  1039. })))));
  1040. }
  1041. // EXTERNAL MODULE: ./components/Parallax/Parallax.js + 1 modules
  1042. var Parallax = __webpack_require__("Z2Lm");
  1043. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  1044. var nextjs_material_kit = __webpack_require__("eDSW");
  1045. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPage.js
  1046. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1047. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1048. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  1049. const landingPageStyle = {
  1050. container: _objectSpread({
  1051. zIndex: "12",
  1052. color: "#FFFFFF"
  1053. }, nextjs_material_kit["c" /* container */]),
  1054. title: _objectSpread({}, nextjs_material_kit["v" /* title */], {
  1055. display: "inline-block",
  1056. position: "relative",
  1057. marginTop: "30px",
  1058. minHeight: "32px",
  1059. color: "#FFFFFF",
  1060. textDecoration: "none"
  1061. }),
  1062. subtitle: {
  1063. fontSize: "1.313rem",
  1064. maxWidth: "500px",
  1065. margin: "10px auto 0"
  1066. },
  1067. main: {
  1068. background: "#FFFFFF",
  1069. position: "relative",
  1070. zIndex: "3"
  1071. },
  1072. mainRaised: {
  1073. margin: "-60px 30px 0px",
  1074. borderRadius: "6px",
  1075. boxShadow: "0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)"
  1076. }
  1077. };
  1078. /* harmony default export */ var landingPage = (landingPageStyle);
  1079. // EXTERNAL MODULE: ./components/Card/Card.js + 1 modules
  1080. var Card = __webpack_require__("A2So");
  1081. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit/pages/componentsSections/notificationsStyles.js
  1082. var notificationsStyles = __webpack_require__("7WNa");
  1083. // EXTERNAL MODULE: external "react-slick"
  1084. var external_react_slick_ = __webpack_require__("O/hg");
  1085. var external_react_slick_default = /*#__PURE__*/__webpack_require__.n(external_react_slick_);
  1086. // EXTERNAL MODULE: external "@material-ui/core/Grid"
  1087. var Grid_ = __webpack_require__("JQ2V");
  1088. var Grid_default = /*#__PURE__*/__webpack_require__.n(Grid_);
  1089. // EXTERNAL MODULE: ./assets/img/carousel/1.jpg
  1090. var _1 = __webpack_require__("aK6x");
  1091. var _1_default = /*#__PURE__*/__webpack_require__.n(_1);
  1092. // EXTERNAL MODULE: ./assets/img/carousel/2.jpg
  1093. var _2 = __webpack_require__("n6U9");
  1094. var _2_default = /*#__PURE__*/__webpack_require__.n(_2);
  1095. // EXTERNAL MODULE: ./assets/img/carousel/3.jpg
  1096. var _3 = __webpack_require__("QH4I");
  1097. var _3_default = /*#__PURE__*/__webpack_require__.n(_3);
  1098. // CONCATENATED MODULE: ./pages-sections/home/Carousel.js
  1099. var Carousel_jsx = external_react_default.a.createElement;
  1100. const Carousel_useStyles = Object(styles_["makeStyles"])(notificationsStyles["a" /* default */]);
  1101. const DataCarousel = function () {
  1102. const classes = Carousel_useStyles();
  1103. const settings = {
  1104. dots: true,
  1105. infinite: true,
  1106. speed: 500,
  1107. slidesToShow: 1,
  1108. slidesToScroll: 1,
  1109. autoplay: true,
  1110. time: 5
  1111. };
  1112. return Carousel_jsx("div", {
  1113. className: classes.section,
  1114. id: "notifications"
  1115. }, Carousel_jsx("div", {
  1116. className: classes.section
  1117. }, Carousel_jsx("div", {
  1118. className: classes.container
  1119. }, Carousel_jsx(GridContainer["a" /* default */], null, Carousel_jsx(GridItem["a" /* default */], {
  1120. className: classes.marginAuto
  1121. }, Carousel_jsx(Card["a" /* default */], {
  1122. carousel: true
  1123. }, Carousel_jsx(external_react_slick_default.a, settings, Carousel_jsx("img", {
  1124. src: _1_default.a,
  1125. alt: "First slide",
  1126. className: "slick-image"
  1127. }), Carousel_jsx("img", {
  1128. src: _2_default.a,
  1129. alt: "First slide",
  1130. className: "slick-image"
  1131. }), Carousel_jsx("img", {
  1132. src: _3_default.a,
  1133. alt: "First slide",
  1134. className: "slick-image"
  1135. }))))))));
  1136. };
  1137. /* harmony default export */ var Carousel = (DataCarousel);
  1138. // EXTERNAL MODULE: external "@material-ui/icons/Chat"
  1139. var Chat_ = __webpack_require__("HWfr");
  1140. // EXTERNAL MODULE: external "@material-ui/icons/VerifiedUser"
  1141. var VerifiedUser_ = __webpack_require__("M2SB");
  1142. var VerifiedUser_default = /*#__PURE__*/__webpack_require__.n(VerifiedUser_);
  1143. // EXTERNAL MODULE: external "@material-ui/icons/Fingerprint"
  1144. var Fingerprint_ = __webpack_require__("Uo6P");
  1145. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/infoStyle.js
  1146. const infoStyle = {
  1147. infoArea: {
  1148. maxWidth: "360px",
  1149. margin: "0 auto",
  1150. padding: "0px"
  1151. },
  1152. iconWrapper: {
  1153. float: "left",
  1154. marginTop: "24px",
  1155. marginRight: "10px"
  1156. },
  1157. primary: {
  1158. color: nextjs_material_kit["p" /* primaryColor */]
  1159. },
  1160. warning: {
  1161. color: nextjs_material_kit["z" /* warningColor */]
  1162. },
  1163. danger: {
  1164. color: nextjs_material_kit["f" /* dangerColor */]
  1165. },
  1166. success: {
  1167. color: nextjs_material_kit["u" /* successColor */]
  1168. },
  1169. info: {
  1170. color: nextjs_material_kit["m" /* infoColor */]
  1171. },
  1172. rose: {
  1173. color: nextjs_material_kit["r" /* roseColor */]
  1174. },
  1175. gray: {
  1176. color: nextjs_material_kit["i" /* grayColor */]
  1177. },
  1178. icon: {
  1179. width: "36px",
  1180. height: "36px"
  1181. },
  1182. descriptionWrapper: {
  1183. color: nextjs_material_kit["i" /* grayColor */],
  1184. overflow: "hidden"
  1185. },
  1186. title: nextjs_material_kit["v" /* title */],
  1187. description: {
  1188. color: nextjs_material_kit["i" /* grayColor */],
  1189. overflow: "hidden",
  1190. marginTop: "0px",
  1191. fontSize: "14px"
  1192. },
  1193. iconWrapperVertical: {
  1194. float: "none"
  1195. },
  1196. iconVertical: {
  1197. width: "61px",
  1198. height: "61px"
  1199. }
  1200. };
  1201. /* harmony default export */ var components_infoStyle = (infoStyle);
  1202. // CONCATENATED MODULE: ./components/InfoArea/InfoArea.js
  1203. var InfoArea_jsx = external_react_default.a.createElement;
  1204. // nodejs library to set properties for components
  1205. // nodejs library that concatenates classes
  1206. // @material-ui/core components
  1207. const InfoArea_useStyles = Object(styles_["makeStyles"])(components_infoStyle);
  1208. function InfoArea(props) {
  1209. const classes = InfoArea_useStyles();
  1210. const {
  1211. title,
  1212. description,
  1213. iconColor,
  1214. vertical
  1215. } = props;
  1216. const iconWrapper = external_classnames_default()({
  1217. [classes.iconWrapper]: true,
  1218. [classes[iconColor]]: true,
  1219. [classes.iconWrapperVertical]: vertical
  1220. });
  1221. const iconClasses = external_classnames_default()({
  1222. [classes.icon]: true,
  1223. [classes.iconVertical]: vertical
  1224. });
  1225. return InfoArea_jsx("div", {
  1226. className: classes.infoArea
  1227. }, InfoArea_jsx("div", {
  1228. className: classes.descriptionWrapper
  1229. }, InfoArea_jsx("h4", {
  1230. className: classes.title
  1231. }, title), InfoArea_jsx("p", {
  1232. className: classes.description
  1233. }, description)));
  1234. }
  1235. InfoArea.defaultProps = {
  1236. iconColor: "gray"
  1237. };
  1238. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPageSections/productStyle.js
  1239. function productStyle_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1240. function productStyle_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { productStyle_ownKeys(Object(source), true).forEach(function (key) { productStyle_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { productStyle_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1241. function productStyle_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  1242. const productStyle = {
  1243. section: {
  1244. padding: "70px 0",
  1245. textAlign: "center"
  1246. },
  1247. title: productStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1248. marginBottom: "1rem",
  1249. marginTop: "30px",
  1250. minHeight: "32px",
  1251. textDecoration: "none"
  1252. }),
  1253. description: {
  1254. color: "#999"
  1255. }
  1256. };
  1257. /* harmony default export */ var landingPageSections_productStyle = (productStyle);
  1258. // EXTERNAL MODULE: ./assets/img/core/core1.png
  1259. var core1 = __webpack_require__("HoRM");
  1260. var core1_default = /*#__PURE__*/__webpack_require__.n(core1);
  1261. // EXTERNAL MODULE: ./assets/img/core/core2.png
  1262. var core2 = __webpack_require__("XtlH");
  1263. var core2_default = /*#__PURE__*/__webpack_require__.n(core2);
  1264. // EXTERNAL MODULE: ./assets/img/core/core3.png
  1265. var core3 = __webpack_require__("ql2e");
  1266. var core3_default = /*#__PURE__*/__webpack_require__.n(core3);
  1267. // EXTERNAL MODULE: ./assets/img/core/core4.png
  1268. var core4 = __webpack_require__("qsPe");
  1269. var core4_default = /*#__PURE__*/__webpack_require__.n(core4);
  1270. // EXTERNAL MODULE: ./assets/img/core/core5.png
  1271. var core5 = __webpack_require__("ofq5");
  1272. var core5_default = /*#__PURE__*/__webpack_require__.n(core5);
  1273. // CONCATENATED MODULE: ./pages-sections/home/CoreValue.js
  1274. var CoreValue_jsx = external_react_default.a.createElement;
  1275. // @material-ui/core components
  1276. // @material-ui/icons
  1277. // core components
  1278. const CoreValue_useStyles = Object(styles_["makeStyles"])(landingPageSections_productStyle);
  1279. function ProductSection() {
  1280. const classes = CoreValue_useStyles();
  1281. return CoreValue_jsx("div", {
  1282. className: classes.section
  1283. }, CoreValue_jsx(GridContainer["a" /* default */], {
  1284. justify: "center"
  1285. }, CoreValue_jsx(GridItem["a" /* default */], {
  1286. xs: 12,
  1287. sm: 12,
  1288. md: 8
  1289. }, CoreValue_jsx("h2", {
  1290. className: classes.title
  1291. }, "Thamrin Group Core Value"))), CoreValue_jsx("div", null, CoreValue_jsx(GridContainer["a" /* default */], null, CoreValue_jsx(GridItem["a" /* default */], {
  1292. xs: 12,
  1293. sm: 12,
  1294. md: 4
  1295. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1296. align: "center"
  1297. }, CoreValue_jsx("img", {
  1298. src: core1_default.a
  1299. }), CoreValue_jsx(InfoArea, {
  1300. title: "TRUST",
  1301. description: "Mampu bertindak secara konsisten terhadap Nilai-nilai, aturan, standar kerja dan kebijakan yang berlaku Walaupun dalam keadaan yang sulit untuk melakukannya.",
  1302. icon: VerifiedUser_default.a,
  1303. iconColor: "success",
  1304. vertical: true
  1305. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1306. xs: 12,
  1307. sm: 12,
  1308. md: 4
  1309. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1310. align: "center"
  1311. }, CoreValue_jsx("img", {
  1312. src: core2_default.a
  1313. }), CoreValue_jsx(InfoArea, {
  1314. title: "CUSTOMER FOCUS",
  1315. description: "Secara proaktif membangun hubungan dengan pelanggan ( internal/ekternal ) Dengan berupaya untuk memahami kebutuhanya, mengantisipasi dan mengatasi Permasalahan demi kepuasan pelanggan. ",
  1316. icon: VerifiedUser_default.a,
  1317. iconColor: "success",
  1318. vertical: true
  1319. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1320. xs: 12,
  1321. sm: 12,
  1322. md: 4
  1323. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1324. align: "center"
  1325. }, CoreValue_jsx("img", {
  1326. src: core3_default.a
  1327. }), CoreValue_jsx(InfoArea, {
  1328. title: "COMMUNICATION",
  1329. description: "Menyampaikan secara jelas informasi dan ide-ide baik secara lisan maupun secara tertulis kepada pihak lain secara baik dan dapat menarik perhatian agar mereka dapat memahami pesan yang di sampaikan.",
  1330. icon: VerifiedUser_default.a,
  1331. iconColor: "success",
  1332. vertical: true
  1333. })))), CoreValue_jsx(GridContainer["a" /* default */], null, CoreValue_jsx(GridItem["a" /* default */], {
  1334. xs: 6,
  1335. sm: 6
  1336. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1337. align: "center"
  1338. }, CoreValue_jsx("img", {
  1339. src: core4_default.a
  1340. }), CoreValue_jsx(InfoArea, {
  1341. title: "CONTINUOUS IMPROVEMENT",
  1342. description: "Mendorong upaya perbaikan dan peningkatan kwalitas proses Dan hasil kerja secara berkesinambungan, dengan menggunakan metode yang Efektif dan mengukur dampak perubahan yg dihasilkan.",
  1343. icon: VerifiedUser_default.a,
  1344. iconColor: "success",
  1345. vertical: true
  1346. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1347. xs: 6,
  1348. sm: 6
  1349. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1350. align: "center"
  1351. }, CoreValue_jsx("img", {
  1352. src: core5_default.a
  1353. }), CoreValue_jsx(InfoArea, {
  1354. title: "TEAMWORK",
  1355. description: "Bekerja secara kolaboratif dengan sekelompok orang untuk mencapai sasaran.",
  1356. icon: VerifiedUser_default.a,
  1357. iconColor: "success",
  1358. vertical: true
  1359. }))))));
  1360. }
  1361. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPageSections/workStyle.js
  1362. function workStyle_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1363. function workStyle_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { workStyle_ownKeys(Object(source), true).forEach(function (key) { workStyle_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { workStyle_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1364. function workStyle_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  1365. const workStyle = {
  1366. section: {
  1367. padding: "70px 0"
  1368. },
  1369. title: workStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1370. marginBottom: "50px",
  1371. marginTop: "30px",
  1372. minHeight: "32px",
  1373. textDecoration: "none",
  1374. textAlign: "center"
  1375. }),
  1376. description: {
  1377. color: "#999",
  1378. textAlign: "center"
  1379. },
  1380. textCenter: {
  1381. textAlign: "center"
  1382. },
  1383. textArea: {
  1384. marginRight: "15px",
  1385. marginLeft: "15px"
  1386. }
  1387. };
  1388. /* harmony default export */ var landingPageSections_workStyle = (workStyle);
  1389. // EXTERNAL MODULE: ./assets/img/home/yamaha.jpg
  1390. var yamaha = __webpack_require__("WM2L");
  1391. var yamaha_default = /*#__PURE__*/__webpack_require__.n(yamaha);
  1392. // EXTERNAL MODULE: ./assets/img/home/suzuki.jpg
  1393. var suzuki = __webpack_require__("J4G4");
  1394. var suzuki_default = /*#__PURE__*/__webpack_require__.n(suzuki);
  1395. // EXTERNAL MODULE: ./assets/img/home/mercedes.jpg
  1396. var mercedes = __webpack_require__("ovCH");
  1397. var mercedes_default = /*#__PURE__*/__webpack_require__.n(mercedes);
  1398. // EXTERNAL MODULE: ./assets/img/home/hino.jpg
  1399. var hino = __webpack_require__("AqwQ");
  1400. var hino_default = /*#__PURE__*/__webpack_require__.n(hino);
  1401. // EXTERNAL MODULE: ./assets/img/home/honda.jpg
  1402. var honda = __webpack_require__("djX/");
  1403. var honda_default = /*#__PURE__*/__webpack_require__.n(honda);
  1404. // EXTERNAL MODULE: ./assets/img/home/pim.jpg
  1405. var pim = __webpack_require__("1kN1");
  1406. var pim_default = /*#__PURE__*/__webpack_require__.n(pim);
  1407. // EXTERNAL MODULE: ./assets/img/home/emilia.jpg
  1408. var emilia = __webpack_require__("MXZv");
  1409. var emilia_default = /*#__PURE__*/__webpack_require__.n(emilia);
  1410. // EXTERNAL MODULE: ./assets/img/home/bpr.jpg
  1411. var bpr = __webpack_require__("4esR");
  1412. var bpr_default = /*#__PURE__*/__webpack_require__.n(bpr);
  1413. // EXTERNAL MODULE: ./assets/img/home/home.jpg
  1414. var home = __webpack_require__("BmGO");
  1415. var home_default = /*#__PURE__*/__webpack_require__.n(home);
  1416. // CONCATENATED MODULE: ./pages-sections/home/Businees-Partner.js
  1417. var Businees_Partner_jsx = external_react_default.a.createElement;
  1418. // core components
  1419. const Businees_Partner_useStyles = Object(styles_["makeStyles"])(landingPageSections_workStyle);
  1420. function WorkSection() {
  1421. const classes = Businees_Partner_useStyles();
  1422. return Businees_Partner_jsx("div", null, Businees_Partner_jsx(GridContainer["a" /* default */], {
  1423. justify: "center"
  1424. }, Businees_Partner_jsx(GridItem["a" /* default */], {
  1425. xs: 12,
  1426. sm: 12,
  1427. md: 8
  1428. }, Businees_Partner_jsx("h2", {
  1429. className: classes.title
  1430. }, "Thamrin Group Businees Partner"))), Businees_Partner_jsx("div", {
  1431. className: classes.section,
  1432. id: "notifications",
  1433. style: {
  1434. marginTop: "-150px"
  1435. }
  1436. }, Businees_Partner_jsx("div", {
  1437. className: classes.section
  1438. }, Businees_Partner_jsx("div", {
  1439. className: classes.container
  1440. }, Businees_Partner_jsx(GridContainer["a" /* default */], null, Businees_Partner_jsx(GridItem["a" /* default */], {
  1441. className: classes.marginAuto
  1442. }, Businees_Partner_jsx(Card["a" /* default */], {
  1443. carousel: true,
  1444. style: {
  1445. width: "1290px",
  1446. marginLeft: "-90px"
  1447. }
  1448. }, Businees_Partner_jsx("img", {
  1449. src: yamaha_default.a,
  1450. alt: "First slide",
  1451. className: "slick-image"
  1452. })), Businees_Partner_jsx("div", {
  1453. align: "center"
  1454. }, Businees_Partner_jsx(Button["a" /* default */], {
  1455. color: "info",
  1456. round: true,
  1457. href: "/yamaha/home",
  1458. style: {
  1459. width: "200px",
  1460. marginTop: "-150px"
  1461. }
  1462. }, Businees_Partner_jsx(Icon_default.a, {
  1463. className: classes.icons
  1464. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1465. carousel: true,
  1466. style: {
  1467. width: "1290px",
  1468. marginTop: "-55px",
  1469. marginLeft: "-90px"
  1470. }
  1471. }, Businees_Partner_jsx("img", {
  1472. src: suzuki_default.a,
  1473. alt: "First slide",
  1474. className: "slick-image"
  1475. })), Businees_Partner_jsx("div", {
  1476. align: "center"
  1477. }, Businees_Partner_jsx(Button["a" /* default */], {
  1478. color: "info",
  1479. round: true,
  1480. href: "/suzuki/home",
  1481. style: {
  1482. width: "200px",
  1483. marginTop: "-150px"
  1484. }
  1485. }, Businees_Partner_jsx(Icon_default.a, {
  1486. className: classes.icons
  1487. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1488. carousel: true,
  1489. style: {
  1490. width: "1290px",
  1491. marginTop: "-55px",
  1492. marginLeft: "-90px"
  1493. }
  1494. }, Businees_Partner_jsx("img", {
  1495. src: hino_default.a,
  1496. alt: "First slide",
  1497. className: "slick-image"
  1498. })), Businees_Partner_jsx("div", {
  1499. align: "center"
  1500. }, Businees_Partner_jsx(Button["a" /* default */], {
  1501. color: "info",
  1502. round: true,
  1503. href: "#",
  1504. style: {
  1505. width: "200px",
  1506. marginTop: "-150px"
  1507. }
  1508. }, Businees_Partner_jsx(Icon_default.a, {
  1509. className: classes.icons
  1510. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1511. carousel: true,
  1512. style: {
  1513. width: "1290px",
  1514. marginTop: "-55px",
  1515. marginLeft: "-90px"
  1516. }
  1517. }, Businees_Partner_jsx("img", {
  1518. src: honda_default.a,
  1519. alt: "First slide",
  1520. className: "slick-image"
  1521. })), Businees_Partner_jsx("div", {
  1522. align: "center"
  1523. }, Businees_Partner_jsx(Button["a" /* default */], {
  1524. color: "info",
  1525. round: true,
  1526. href: "#",
  1527. style: {
  1528. width: "200px",
  1529. marginTop: "-150px"
  1530. }
  1531. }, Businees_Partner_jsx(Icon_default.a, {
  1532. className: classes.icons
  1533. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1534. carousel: true,
  1535. style: {
  1536. width: "1290px",
  1537. marginTop: "-55px",
  1538. marginLeft: "-90px"
  1539. }
  1540. }, Businees_Partner_jsx("img", {
  1541. src: mercedes_default.a,
  1542. alt: "First slide",
  1543. className: "slick-image"
  1544. })), Businees_Partner_jsx("div", {
  1545. align: "center"
  1546. }, Businees_Partner_jsx(Button["a" /* default */], {
  1547. color: "info",
  1548. round: true,
  1549. href: "#",
  1550. style: {
  1551. width: "200px",
  1552. marginTop: "-150px"
  1553. }
  1554. }, Businees_Partner_jsx(Icon_default.a, {
  1555. className: classes.icons
  1556. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1557. carousel: true,
  1558. style: {
  1559. width: "1290px",
  1560. marginTop: "-55px",
  1561. marginLeft: "-90px"
  1562. }
  1563. }, Businees_Partner_jsx("img", {
  1564. src: pim_default.a,
  1565. alt: "First slide",
  1566. className: "slick-image"
  1567. })), Businees_Partner_jsx("div", {
  1568. align: "center"
  1569. }, Businees_Partner_jsx(Button["a" /* default */], {
  1570. color: "info",
  1571. round: true,
  1572. href: "#",
  1573. style: {
  1574. width: "200px",
  1575. marginTop: "-150px"
  1576. }
  1577. }, Businees_Partner_jsx(Icon_default.a, {
  1578. className: classes.icons
  1579. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1580. carousel: true,
  1581. style: {
  1582. width: "1290px",
  1583. marginTop: "-55px",
  1584. marginLeft: "-90px"
  1585. }
  1586. }, Businees_Partner_jsx("img", {
  1587. src: emilia_default.a,
  1588. alt: "First slide",
  1589. className: "slick-image"
  1590. })), Businees_Partner_jsx("div", {
  1591. align: "center"
  1592. }, Businees_Partner_jsx(Button["a" /* default */], {
  1593. color: "info",
  1594. round: true,
  1595. href: "#",
  1596. style: {
  1597. width: "200px",
  1598. marginTop: "-150px"
  1599. }
  1600. }, Businees_Partner_jsx(Icon_default.a, {
  1601. className: classes.icons
  1602. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1603. carousel: true,
  1604. style: {
  1605. width: "1290px",
  1606. marginTop: "-55px",
  1607. marginLeft: "-90px"
  1608. }
  1609. }, Businees_Partner_jsx("img", {
  1610. src: bpr_default.a,
  1611. alt: "First slide",
  1612. className: "slick-image"
  1613. })), Businees_Partner_jsx("div", {
  1614. align: "center"
  1615. }, Businees_Partner_jsx(Button["a" /* default */], {
  1616. color: "info",
  1617. round: true,
  1618. href: "#",
  1619. style: {
  1620. width: "200px",
  1621. marginTop: "-150px"
  1622. }
  1623. }, Businees_Partner_jsx(Icon_default.a, {
  1624. className: classes.icons
  1625. }, "open_in_new"), "Visit Page")), Businees_Partner_jsx(Card["a" /* default */], {
  1626. carousel: true,
  1627. style: {
  1628. width: "1290px",
  1629. marginTop: "-55px",
  1630. marginLeft: "-90px"
  1631. }
  1632. }, Businees_Partner_jsx("img", {
  1633. src: home_default.a,
  1634. alt: "First slide",
  1635. className: "slick-image"
  1636. })), Businees_Partner_jsx("div", {
  1637. align: "center"
  1638. }, Businees_Partner_jsx(Button["a" /* default */], {
  1639. color: "info",
  1640. round: true,
  1641. href: "#",
  1642. style: {
  1643. width: "200px",
  1644. marginTop: "-150px"
  1645. }
  1646. }, Businees_Partner_jsx(Icon_default.a, {
  1647. className: classes.icons
  1648. }, "open_in_new"), "Visit Page"))))))));
  1649. }
  1650. // EXTERNAL MODULE: external "@material-ui/core/Paper"
  1651. var Paper_ = __webpack_require__("qt1I");
  1652. // EXTERNAL MODULE: ./assets/img/gallery/1.jpg
  1653. var gallery_1 = __webpack_require__("K/Fe");
  1654. var gallery_1_default = /*#__PURE__*/__webpack_require__.n(gallery_1);
  1655. // EXTERNAL MODULE: ./assets/img/gallery/2.jpg
  1656. var gallery_2 = __webpack_require__("ewzQ");
  1657. var gallery_2_default = /*#__PURE__*/__webpack_require__.n(gallery_2);
  1658. // EXTERNAL MODULE: ./assets/img/gallery/3.jpg
  1659. var gallery_3 = __webpack_require__("pvnu");
  1660. var gallery_3_default = /*#__PURE__*/__webpack_require__.n(gallery_3);
  1661. // EXTERNAL MODULE: ./assets/img/gallery/4.jpg
  1662. var _4 = __webpack_require__("+dZB");
  1663. var _4_default = /*#__PURE__*/__webpack_require__.n(_4);
  1664. // EXTERNAL MODULE: ./assets/img/gallery/5.jpg
  1665. var _5 = __webpack_require__("wmUz");
  1666. var _5_default = /*#__PURE__*/__webpack_require__.n(_5);
  1667. // EXTERNAL MODULE: ./assets/img/gallery/6.jpg
  1668. var _6 = __webpack_require__("fJ1K");
  1669. var _6_default = /*#__PURE__*/__webpack_require__.n(_6);
  1670. // EXTERNAL MODULE: ./assets/img/gallery/7.jpg
  1671. var _7 = __webpack_require__("+7RK");
  1672. var _7_default = /*#__PURE__*/__webpack_require__.n(_7);
  1673. // EXTERNAL MODULE: ./assets/img/gallery/8.jpg
  1674. var _8 = __webpack_require__("2wdC");
  1675. var _8_default = /*#__PURE__*/__webpack_require__.n(_8);
  1676. // CONCATENATED MODULE: ./pages-sections/home/gallery.js
  1677. var gallery_jsx = external_react_default.a.createElement;
  1678. // core components
  1679. //image
  1680. const gallery_useStyles = Object(styles_["makeStyles"])(landingPageSections_workStyle);
  1681. function gallery_WorkSection() {
  1682. const classes = gallery_useStyles();
  1683. return gallery_jsx("div", null, gallery_jsx(GridContainer["a" /* default */], {
  1684. justify: "center",
  1685. style: {
  1686. marginTop: "-100px"
  1687. }
  1688. }, gallery_jsx(GridItem["a" /* default */], {
  1689. xs: 12,
  1690. sm: 12,
  1691. md: 8
  1692. }, gallery_jsx("h2", {
  1693. className: classes.title
  1694. }, "Thamrin Group Gallery"))), gallery_jsx("div", {
  1695. className: classes.section,
  1696. id: "notifications",
  1697. style: {
  1698. marginTop: "-150px"
  1699. }
  1700. }, gallery_jsx("div", {
  1701. className: classes.section
  1702. }, gallery_jsx("div", {
  1703. className: classes.container,
  1704. align: "center"
  1705. }, gallery_jsx(Grid_default.a, {
  1706. container: true,
  1707. spacing: 3
  1708. }, gallery_jsx(Grid_default.a, {
  1709. item: true,
  1710. xs: 3
  1711. }, gallery_jsx(Card["a" /* default */], {
  1712. style: {
  1713. width: "250px"
  1714. }
  1715. }, gallery_jsx("img", {
  1716. src: gallery_1_default.a,
  1717. alt: "First slide",
  1718. className: "slick-image",
  1719. width: "250px"
  1720. }))), gallery_jsx(Grid_default.a, {
  1721. item: true,
  1722. xs: 3
  1723. }, gallery_jsx(Card["a" /* default */], {
  1724. style: {
  1725. width: "250px"
  1726. }
  1727. }, gallery_jsx("img", {
  1728. src: gallery_2_default.a,
  1729. alt: "First slide",
  1730. className: "slick-image",
  1731. width: "250px"
  1732. }))), gallery_jsx(Grid_default.a, {
  1733. item: true,
  1734. xs: 3
  1735. }, gallery_jsx(Card["a" /* default */], {
  1736. style: {
  1737. width: "250px"
  1738. }
  1739. }, gallery_jsx("img", {
  1740. src: gallery_3_default.a,
  1741. alt: "First slide",
  1742. className: "slick-image",
  1743. width: "250px",
  1744. height: "188px"
  1745. }))), gallery_jsx(Grid_default.a, {
  1746. item: true,
  1747. xs: 3
  1748. }, gallery_jsx(Card["a" /* default */], {
  1749. style: {
  1750. width: "250px"
  1751. }
  1752. }, gallery_jsx("img", {
  1753. src: _4_default.a,
  1754. alt: "First slide",
  1755. className: "slick-image",
  1756. width: "250px"
  1757. })))), gallery_jsx(Grid_default.a, {
  1758. container: true,
  1759. spacing: 3
  1760. }, gallery_jsx(Grid_default.a, {
  1761. item: true,
  1762. xs: 3
  1763. }, gallery_jsx(Card["a" /* default */], {
  1764. style: {
  1765. width: "250px"
  1766. }
  1767. }, gallery_jsx("img", {
  1768. src: _8_default.a,
  1769. alt: "First slide",
  1770. className: "slick-image",
  1771. width: "250px",
  1772. height: "188px"
  1773. }))), gallery_jsx(Grid_default.a, {
  1774. item: true,
  1775. xs: 3
  1776. }, gallery_jsx(Card["a" /* default */], {
  1777. style: {
  1778. width: "250px"
  1779. }
  1780. }, gallery_jsx("img", {
  1781. src: _5_default.a,
  1782. alt: "First slide",
  1783. className: "slick-image",
  1784. width: "250px",
  1785. height: "188px"
  1786. }))), gallery_jsx(Grid_default.a, {
  1787. item: true,
  1788. xs: 3
  1789. }, gallery_jsx(Card["a" /* default */], {
  1790. style: {
  1791. width: "250px"
  1792. }
  1793. }, gallery_jsx("img", {
  1794. src: _6_default.a,
  1795. alt: "First slide",
  1796. className: "slick-image",
  1797. width: "250px",
  1798. height: "188px"
  1799. }))), gallery_jsx(Grid_default.a, {
  1800. item: true,
  1801. xs: 3
  1802. }, gallery_jsx(Card["a" /* default */], {
  1803. style: {
  1804. width: "250px"
  1805. }
  1806. }, gallery_jsx("img", {
  1807. src: _7_default.a,
  1808. alt: "First slide",
  1809. className: "slick-image",
  1810. width: "250px",
  1811. height: "188px"
  1812. })))), gallery_jsx(Grid_default.a, {
  1813. container: true,
  1814. spacing: 3
  1815. }, gallery_jsx(Grid_default.a, {
  1816. item: true,
  1817. xs: 3
  1818. }, gallery_jsx(Card["a" /* default */], {
  1819. style: {
  1820. width: "250px"
  1821. }
  1822. }, gallery_jsx("img", {
  1823. src: gallery_1_default.a,
  1824. alt: "First slide",
  1825. className: "slick-image",
  1826. width: "250px",
  1827. height: "188px"
  1828. }))), gallery_jsx(Grid_default.a, {
  1829. item: true,
  1830. xs: 3
  1831. }, gallery_jsx(Card["a" /* default */], {
  1832. style: {
  1833. width: "250px"
  1834. }
  1835. }, gallery_jsx("img", {
  1836. src: gallery_2_default.a,
  1837. alt: "First slide",
  1838. className: "slick-image",
  1839. width: "250px",
  1840. height: "188px"
  1841. }))), gallery_jsx(Grid_default.a, {
  1842. item: true,
  1843. xs: 3
  1844. }, gallery_jsx(Card["a" /* default */], {
  1845. style: {
  1846. width: "250px"
  1847. }
  1848. }, gallery_jsx("img", {
  1849. src: gallery_3_default.a,
  1850. alt: "First slide",
  1851. className: "slick-image",
  1852. width: "250px",
  1853. height: "188px"
  1854. }))), gallery_jsx(Grid_default.a, {
  1855. item: true,
  1856. xs: 3
  1857. }, gallery_jsx(Card["a" /* default */], {
  1858. style: {
  1859. width: "250px"
  1860. }
  1861. }, gallery_jsx("img", {
  1862. src: _4_default.a,
  1863. alt: "First slide",
  1864. className: "slick-image",
  1865. width: "250px",
  1866. height: "188px"
  1867. }))))))));
  1868. }
  1869. // EXTERNAL MODULE: ./components/Card/CardBody.js + 1 modules
  1870. var CardBody = __webpack_require__("UsYt");
  1871. // EXTERNAL MODULE: ./components/Card/CardFooter.js + 1 modules
  1872. var CardFooter = __webpack_require__("5LSk");
  1873. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit/imagesStyles.js
  1874. var imagesStyles = __webpack_require__("Ilpk");
  1875. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPageSections/teamStyle.js
  1876. function teamStyle_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  1877. function teamStyle_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { teamStyle_ownKeys(Object(source), true).forEach(function (key) { teamStyle_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { teamStyle_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1878. function teamStyle_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  1879. const teamStyle = teamStyle_objectSpread({
  1880. section: {
  1881. padding: "70px 0",
  1882. textAlign: "center"
  1883. },
  1884. title: teamStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1885. marginBottom: "1rem",
  1886. marginTop: "30px",
  1887. minHeight: "32px",
  1888. textDecoration: "none"
  1889. })
  1890. }, imagesStyles["a" /* default */], {
  1891. itemGrid: {
  1892. marginLeft: "auto",
  1893. marginRight: "auto"
  1894. },
  1895. cardTitle: nextjs_material_kit["b" /* cardTitle */],
  1896. smallTitle: {
  1897. color: "#6c757d"
  1898. },
  1899. description: {
  1900. color: "#999"
  1901. },
  1902. justifyCenter: {
  1903. justifyContent: "center !important"
  1904. },
  1905. socials: {
  1906. marginTop: "0",
  1907. width: "100%",
  1908. transform: "none",
  1909. left: "0",
  1910. top: "0",
  1911. height: "100%",
  1912. lineHeight: "41px",
  1913. fontSize: "20px",
  1914. color: "#999"
  1915. },
  1916. margin5: {
  1917. margin: "5px"
  1918. }
  1919. });
  1920. /* harmony default export */ var landingPageSections_teamStyle = (teamStyle);
  1921. // EXTERNAL MODULE: ./assets/img/faces/avatar.jpg
  1922. var avatar = __webpack_require__("ydEf");
  1923. var avatar_default = /*#__PURE__*/__webpack_require__.n(avatar);
  1924. // EXTERNAL MODULE: ./assets/img/faces/christian.jpg
  1925. var christian = __webpack_require__("skcn");
  1926. var christian_default = /*#__PURE__*/__webpack_require__.n(christian);
  1927. // EXTERNAL MODULE: ./assets/img/faces/kendall.jpg
  1928. var kendall = __webpack_require__("Hak1");
  1929. var kendall_default = /*#__PURE__*/__webpack_require__.n(kendall);
  1930. // CONCATENATED MODULE: ./pages-sections/home/TeamSection.js
  1931. var TeamSection_jsx = external_react_default.a.createElement;
  1932. // nodejs library that concatenates classes
  1933. // @material-ui/core components
  1934. // @material-ui/icons
  1935. // core components
  1936. const TeamSection_useStyles = Object(styles_["makeStyles"])(landingPageSections_teamStyle);
  1937. function TeamSection() {
  1938. const classes = TeamSection_useStyles();
  1939. const imageClasses = external_classnames_default()(classes.imgRaised, classes.imgRoundedCircle, classes.imgFluid);
  1940. return TeamSection_jsx("div", {
  1941. className: classes.section,
  1942. style: {
  1943. marginTop: "-200px"
  1944. }
  1945. }, TeamSection_jsx("h2", {
  1946. className: classes.title
  1947. }, "Here is our team"), TeamSection_jsx("div", null, TeamSection_jsx(GridContainer["a" /* default */], null, TeamSection_jsx(GridItem["a" /* default */], {
  1948. xs: 12,
  1949. sm: 12,
  1950. md: 4
  1951. }, TeamSection_jsx(Card["a" /* default */], {
  1952. plain: true
  1953. }, TeamSection_jsx(GridItem["a" /* default */], {
  1954. xs: 12,
  1955. sm: 12,
  1956. md: 6,
  1957. className: classes.itemGrid
  1958. }, TeamSection_jsx("img", {
  1959. src: avatar_default.a,
  1960. alt: "...",
  1961. className: imageClasses
  1962. })), TeamSection_jsx("h4", {
  1963. className: classes.cardTitle
  1964. }, "Gigi Hadid", TeamSection_jsx("br", null), TeamSection_jsx("small", {
  1965. className: classes.smallTitle
  1966. }, "Model")), TeamSection_jsx(CardBody["a" /* default */], null, TeamSection_jsx("p", {
  1967. className: classes.description
  1968. }, "You can write here details about one of your team members. You can give more details about what they do. Feel free to add some ", TeamSection_jsx("a", {
  1969. href: "#pablo"
  1970. }, "links"), " for people to be able to follow them outside the site.")), TeamSection_jsx(CardFooter["a" /* default */], {
  1971. className: classes.justifyCenter
  1972. }, TeamSection_jsx(Button["a" /* default */], {
  1973. justIcon: true,
  1974. color: "transparent",
  1975. className: classes.margin5
  1976. }, TeamSection_jsx("i", {
  1977. className: classes.socials + " fab fa-twitter"
  1978. })), TeamSection_jsx(Button["a" /* default */], {
  1979. justIcon: true,
  1980. color: "transparent",
  1981. className: classes.margin5
  1982. }, TeamSection_jsx("i", {
  1983. className: classes.socials + " fab fa-instagram"
  1984. })), TeamSection_jsx(Button["a" /* default */], {
  1985. justIcon: true,
  1986. color: "transparent",
  1987. className: classes.margin5
  1988. }, TeamSection_jsx("i", {
  1989. className: classes.socials + " fab fa-facebook"
  1990. }))))), TeamSection_jsx(GridItem["a" /* default */], {
  1991. xs: 12,
  1992. sm: 12,
  1993. md: 4
  1994. }, TeamSection_jsx(Card["a" /* default */], {
  1995. plain: true
  1996. }, TeamSection_jsx(GridItem["a" /* default */], {
  1997. xs: 12,
  1998. sm: 12,
  1999. md: 6,
  2000. className: classes.itemGrid
  2001. }, TeamSection_jsx("img", {
  2002. src: christian_default.a,
  2003. alt: "...",
  2004. className: imageClasses
  2005. })), TeamSection_jsx("h4", {
  2006. className: classes.cardTitle
  2007. }, "Christian Louboutin", TeamSection_jsx("br", null), TeamSection_jsx("small", {
  2008. className: classes.smallTitle
  2009. }, "Designer")), TeamSection_jsx(CardBody["a" /* default */], null, TeamSection_jsx("p", {
  2010. className: classes.description
  2011. }, "You can write here details about one of your team members. You can give more details about what they do. Feel free to add some ", TeamSection_jsx("a", {
  2012. href: "#pablo"
  2013. }, "links"), " for people to be able to follow them outside the site.")), TeamSection_jsx(CardFooter["a" /* default */], {
  2014. className: classes.justifyCenter
  2015. }, TeamSection_jsx(Button["a" /* default */], {
  2016. justIcon: true,
  2017. color: "transparent",
  2018. className: classes.margin5
  2019. }, TeamSection_jsx("i", {
  2020. className: classes.socials + " fab fa-twitter"
  2021. })), TeamSection_jsx(Button["a" /* default */], {
  2022. justIcon: true,
  2023. color: "transparent",
  2024. className: classes.margin5
  2025. }, TeamSection_jsx("i", {
  2026. className: classes.socials + " fab fa-linkedin"
  2027. }))))), TeamSection_jsx(GridItem["a" /* default */], {
  2028. xs: 12,
  2029. sm: 12,
  2030. md: 4
  2031. }, TeamSection_jsx(Card["a" /* default */], {
  2032. plain: true
  2033. }, TeamSection_jsx(GridItem["a" /* default */], {
  2034. xs: 12,
  2035. sm: 12,
  2036. md: 6,
  2037. className: classes.itemGrid
  2038. }, TeamSection_jsx("img", {
  2039. src: kendall_default.a,
  2040. alt: "...",
  2041. className: imageClasses
  2042. })), TeamSection_jsx("h4", {
  2043. className: classes.cardTitle
  2044. }, "Kendall Jenner", TeamSection_jsx("br", null), TeamSection_jsx("small", {
  2045. className: classes.smallTitle
  2046. }, "Model")), TeamSection_jsx(CardBody["a" /* default */], null, TeamSection_jsx("p", {
  2047. className: classes.description
  2048. }, "You can write here details about one of your team members. You can give more details about what they do. Feel free to add some ", TeamSection_jsx("a", {
  2049. href: "#pablo"
  2050. }, "links"), " for people to be able to follow them outside the site.")), TeamSection_jsx(CardFooter["a" /* default */], {
  2051. className: classes.justifyCenter
  2052. }, TeamSection_jsx(Button["a" /* default */], {
  2053. justIcon: true,
  2054. color: "transparent",
  2055. className: classes.margin5
  2056. }, TeamSection_jsx("i", {
  2057. className: classes.socials + " fab fa-twitter"
  2058. })), TeamSection_jsx(Button["a" /* default */], {
  2059. justIcon: true,
  2060. color: "transparent",
  2061. className: classes.margin5
  2062. }, TeamSection_jsx("i", {
  2063. className: classes.socials + " fab fa-instagram"
  2064. })), TeamSection_jsx(Button["a" /* default */], {
  2065. justIcon: true,
  2066. color: "transparent",
  2067. className: classes.margin5
  2068. }, TeamSection_jsx("i", {
  2069. className: classes.socials + " fab fa-facebook"
  2070. }))))))));
  2071. }
  2072. // EXTERNAL MODULE: ./components/CustomInput/CustomInput.js + 1 modules
  2073. var CustomInput = __webpack_require__("um8N");
  2074. // CONCATENATED MODULE: ./pages-sections/home/WorkSection.js
  2075. var WorkSection_jsx = external_react_default.a.createElement;
  2076. // @material-ui/core components
  2077. // @material-ui/icons
  2078. // core components
  2079. const WorkSection_useStyles = Object(styles_["makeStyles"])(landingPageSections_workStyle);
  2080. function WorkSection_WorkSection() {
  2081. const classes = WorkSection_useStyles();
  2082. return WorkSection_jsx("div", {
  2083. className: classes.section
  2084. }, WorkSection_jsx(GridContainer["a" /* default */], {
  2085. justify: "center"
  2086. }, WorkSection_jsx(GridItem["a" /* default */], {
  2087. cs: 12,
  2088. sm: 12,
  2089. md: 8
  2090. }, WorkSection_jsx("h2", {
  2091. className: classes.title
  2092. }, "Work with us"), WorkSection_jsx("h4", {
  2093. className: classes.description
  2094. }, "Divide details about your product or agency work into parts. Write a few lines about each one and contact us about any further collaboration. We will responde get back to you in a couple of hours."), WorkSection_jsx("form", null, WorkSection_jsx(GridContainer["a" /* default */], null, WorkSection_jsx(GridItem["a" /* default */], {
  2095. xs: 12,
  2096. sm: 12,
  2097. md: 6
  2098. }, WorkSection_jsx(CustomInput["a" /* default */], {
  2099. labelText: "Your Name",
  2100. id: "name",
  2101. formControlProps: {
  2102. fullWidth: true
  2103. }
  2104. })), WorkSection_jsx(GridItem["a" /* default */], {
  2105. xs: 12,
  2106. sm: 12,
  2107. md: 6
  2108. }, WorkSection_jsx(CustomInput["a" /* default */], {
  2109. labelText: "Your Email",
  2110. id: "email",
  2111. formControlProps: {
  2112. fullWidth: true
  2113. }
  2114. })), WorkSection_jsx(CustomInput["a" /* default */], {
  2115. labelText: "Your Message",
  2116. id: "message",
  2117. formControlProps: {
  2118. fullWidth: true,
  2119. className: classes.textArea
  2120. },
  2121. inputProps: {
  2122. multiline: true,
  2123. rows: 5
  2124. }
  2125. }), WorkSection_jsx(GridItem["a" /* default */], {
  2126. xs: 12,
  2127. sm: 12,
  2128. md: 4,
  2129. className: classes.textCenter
  2130. }, WorkSection_jsx(Button["a" /* default */], {
  2131. color: "primary"
  2132. }, "Send Message")))))));
  2133. }
  2134. // EXTERNAL MODULE: ./assets/img/White.png
  2135. var White = __webpack_require__("gpfI");
  2136. var White_default = /*#__PURE__*/__webpack_require__.n(White);
  2137. // CONCATENATED MODULE: ./pages/home.js
  2138. var home_jsx = external_react_default.a.createElement;
  2139. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  2140. // nodejs library that concatenates classes
  2141. // @material-ui/core components
  2142. // @material-ui/icons
  2143. // core components
  2144. // Sections for this page
  2145. //image
  2146. const dashboardRoutes = [];
  2147. const home_useStyles = Object(styles_["makeStyles"])(landingPage);
  2148. function LandingPage(props) {
  2149. const classes = home_useStyles();
  2150. const rest = Object.assign({}, props);
  2151. return home_jsx("div", null, home_jsx(Header["a" /* default */], _extends({
  2152. color: "info",
  2153. routes: dashboardRoutes,
  2154. rightLinks: home_jsx(HeaderHome, null),
  2155. fixed: true,
  2156. changeColorOnScroll: {
  2157. height: 400,
  2158. color: "white"
  2159. }
  2160. }, rest)), home_jsx(Parallax["a" /* default */], {
  2161. responsive: true,
  2162. image: __webpack_require__("xSce")
  2163. }, home_jsx("div", {
  2164. className: classes.container
  2165. }, home_jsx(GridContainer["a" /* default */], null, home_jsx(GridItem["a" /* default */], {
  2166. xs: 12,
  2167. sm: 12,
  2168. md: 6
  2169. }, home_jsx("img", {
  2170. src: White_default.a,
  2171. width: "120%"
  2172. }), home_jsx("br", null), home_jsx("br", null), home_jsx(Button["a" /* default */], {
  2173. color: "danger",
  2174. size: "lg",
  2175. href: "https://www.youtube.com/channel/UCRUULlhLxKUpXK1Ti4Jrjkw",
  2176. target: "_blank",
  2177. rel: "noopener noreferrer"
  2178. }, home_jsx("i", {
  2179. className: "fas fa-play"
  2180. }), "Watch video"))))), home_jsx("div", {
  2181. className: external_classnames_default()(classes.main, classes.mainRaised)
  2182. }, home_jsx("div", {
  2183. className: classes.container
  2184. }, home_jsx("br", null), home_jsx("br", null), home_jsx("br", null), home_jsx(Carousel, null), home_jsx(ProductSection, null), home_jsx(WorkSection, null), home_jsx(gallery_WorkSection, null))), home_jsx(Footer["a" /* default */], null));
  2185. }
  2186. /***/ }),
  2187. /***/ "EmCc":
  2188. /***/ (function(module, exports) {
  2189. module.exports = require("@material-ui/core/IconButton");
  2190. /***/ }),
  2191. /***/ "Fm7H":
  2192. /***/ (function(module, exports) {
  2193. module.exports = require("@material-ui/icons/Favorite");
  2194. /***/ }),
  2195. /***/ "HWfr":
  2196. /***/ (function(module, exports) {
  2197. module.exports = require("@material-ui/icons/Chat");
  2198. /***/ }),
  2199. /***/ "HXcA":
  2200. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2201. "use strict";
  2202. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Footer; });
  2203. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
  2204. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
  2205. /* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("K2gz");
  2206. /* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_1__);
  2207. /* harmony import */ var _material_ui_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("KKbo");
  2208. /* harmony import */ var _material_ui_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__);
  2209. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("9Pu4");
  2210. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__);
  2211. /* harmony import */ var _material_ui_icons_Favorite__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("Fm7H");
  2212. /* harmony import */ var _material_ui_icons_Favorite__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_material_ui_icons_Favorite__WEBPACK_IMPORTED_MODULE_4__);
  2213. /* harmony import */ var components_Grid_GridContainer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("mtPR");
  2214. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("JQ2V");
  2215. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6__);
  2216. /* harmony import */ var _material_ui_core_Paper__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__("qt1I");
  2217. /* harmony import */ var _material_ui_core_Paper__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Paper__WEBPACK_IMPORTED_MODULE_7__);
  2218. /* harmony import */ var components_Card_Card_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__("A2So");
  2219. /* harmony import */ var assets_jss_nextjs_material_kit_components_footerStyle_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__("oLCs");
  2220. var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement;
  2221. /*eslint-disable*/
  2222. // nodejs library to set properties for components
  2223. // nodejs library that concatenates classes
  2224. // material-ui core components
  2225. // @material-ui/icons
  2226. const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__["makeStyles"])(assets_jss_nextjs_material_kit_components_footerStyle_js__WEBPACK_IMPORTED_MODULE_9__[/* default */ "a"]);
  2227. function Footer(props) {
  2228. const classes = useStyles();
  2229. const {
  2230. whiteFont
  2231. } = props;
  2232. const footerClasses = classnames__WEBPACK_IMPORTED_MODULE_1___default()({
  2233. [classes.footer]: true,
  2234. [classes.footerWhiteFont]: whiteFont
  2235. });
  2236. const aClasses = classnames__WEBPACK_IMPORTED_MODULE_1___default()({
  2237. [classes.a]: true,
  2238. [classes.footerWhiteFont]: whiteFont
  2239. });
  2240. return __jsx("div", null, __jsx(components_Grid_GridContainer_js__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"], {
  2241. style: {
  2242. padding: "40px"
  2243. },
  2244. justify: "center"
  2245. }, __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6___default.a, null, __jsx("div", {
  2246. align: "center",
  2247. style: {
  2248. marginTop: "-20px"
  2249. }
  2250. }, __jsx("img", {
  2251. className: classes.imgCard,
  2252. src: "https://1.bp.blogspot.com/-GTTVvnJ9x0c/Wn70CJxGoYI/AAAAAAAACRY/GSv1ehPFOPQZcvOfiALy_p7Xa7GOBRHKgCLcBGAs/s320/TB.pn",
  2253. style: {
  2254. width: "350px"
  2255. }
  2256. }), __jsx("img", {
  2257. className: classes.imgCard,
  2258. src: "https://belimotoryuk.com/wp-content/uploads/2017/03/cropped-logo-yamaha.png",
  2259. style: {
  2260. width: "350px"
  2261. }
  2262. }))), __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6___default.a, null, __jsx("div", null, __jsx("footer", {
  2263. className: footerClasses
  2264. }, __jsx("div", {
  2265. className: classes.container
  2266. }, __jsx("div", {
  2267. className: classes.left
  2268. }, __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["List"], {
  2269. className: classes.list
  2270. }, __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2271. className: classes.inlineBlock
  2272. }, __jsx("a", {
  2273. href: "/yamaha/home",
  2274. className: classes.block
  2275. }, " Home ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2276. className: classes.inlineBlock
  2277. }, __jsx("a", {
  2278. href: "/yamaha/product/product",
  2279. className: classes.block
  2280. }, " Motor ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2281. className: classes.inlineBlock
  2282. }, __jsx("a", {
  2283. href: "/yamaha/product/ygp",
  2284. className: classes.block
  2285. }, " YGP ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2286. className: classes.inlineBlock
  2287. }, __jsx("a", {
  2288. href: "/yamaha/product/yamalube",
  2289. className: classes.block
  2290. }, " Yamalube ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2291. className: classes.inlineBlock
  2292. }, __jsx("a", {
  2293. href: "/yamaha/product/apparel",
  2294. className: classes.block
  2295. }, " Apparel ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2296. className: classes.inlineBlock
  2297. }, __jsx("a", {
  2298. href: "/yamaha/product/helmet",
  2299. className: classes.block
  2300. }, " Helmet ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2301. className: classes.inlineBlock
  2302. }, __jsx("a", {
  2303. href: "/yamaha/product/accessories",
  2304. className: classes.block
  2305. }, " Accessories ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2306. className: classes.inlineBlock
  2307. }, __jsx("a", {
  2308. href: "/yamaha/product/service",
  2309. className: classes.block
  2310. }, " Service ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2311. className: classes.inlineBlock
  2312. }, __jsx("a", {
  2313. href: "/yamaha/product/dealer",
  2314. className: classes.block
  2315. }, " Dealer ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2316. className: classes.inlineBlock
  2317. }, __jsx("a", {
  2318. href: "/yamaha/latestsnews",
  2319. className: classes.block
  2320. }, " Latest News ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2321. className: classes.inlineBlock
  2322. }, __jsx("a", {
  2323. href: "/yamaha/carrer",
  2324. className: classes.block
  2325. }, " Carrer ")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], {
  2326. className: classes.inlineBlock
  2327. }, __jsx("a", {
  2328. href: "/yamaha/about_us/aboutus",
  2329. className: classes.block
  2330. }, " About Us "))))))))), __jsx(components_Grid_GridContainer_js__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"], {
  2331. style: {
  2332. marginTop: "-40px"
  2333. },
  2334. justify: "center"
  2335. }, __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_6___default.a, null, __jsx("div", {
  2336. align: "center"
  2337. }, __jsx("div", {
  2338. className: classes.right
  2339. }, "\xA9 ", 1900 + new Date().getYear(), " , All Right Reserved", " ", " by", " ", " @Thamrin Group Company")))));
  2340. }
  2341. /***/ }),
  2342. /***/ "Hak1":
  2343. /***/ (function(module, exports) {
  2344. module.exports = "/_next/static/images/kendall-e0508cc923eb0b5e68ca6783c53d0f1d.jpg";
  2345. /***/ }),
  2346. /***/ "HoRM":
  2347. /***/ (function(module, exports) {
  2348. module.exports = "data:image/png;base64,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"
  2349. /***/ }),
  2350. /***/ "Ilpk":
  2351. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2352. "use strict";
  2353. const imagesStyles = {
  2354. imgFluid: {
  2355. maxWidth: "100%",
  2356. height: "auto"
  2357. },
  2358. imgRounded: {
  2359. borderRadius: "6px !important"
  2360. },
  2361. imgRoundedCircle: {
  2362. borderRadius: "50% !important"
  2363. },
  2364. imgRaised: {
  2365. boxShadow: "0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2)"
  2366. },
  2367. imgGallery: {
  2368. width: "100%",
  2369. marginBottom: "2.142rem"
  2370. },
  2371. imgCardTop: {
  2372. width: "100%",
  2373. borderTopLeftRadius: "calc(.25rem - 1px)",
  2374. borderTopRightRadius: "calc(.25rem - 1px)"
  2375. },
  2376. imgCardBottom: {
  2377. width: "100%",
  2378. borderBottomLeftRadius: "calc(.25rem - 1px)",
  2379. borderBottomRightRadius: "calc(.25rem - 1px)"
  2380. },
  2381. imgCard: {
  2382. width: "100%",
  2383. borderRadius: "calc(.25rem - 1px)"
  2384. },
  2385. imgCardOverlay: {
  2386. position: "absolute",
  2387. top: "0",
  2388. right: "0",
  2389. bottom: "0",
  2390. left: "0",
  2391. padding: "1.25rem"
  2392. }
  2393. };
  2394. /* harmony default export */ __webpack_exports__["a"] = (imagesStyles);
  2395. /***/ }),
  2396. /***/ "J4G4":
  2397. /***/ (function(module, exports) {
  2398. module.exports = "/_next/static/images/suzuki-e4e043ac5b1019323c981d1d3afe60f2.jpg";
  2399. /***/ }),
  2400. /***/ "JQ2V":
  2401. /***/ (function(module, exports) {
  2402. module.exports = require("@material-ui/core/Grid");
  2403. /***/ }),
  2404. /***/ "K/Fe":
  2405. /***/ (function(module, exports) {
  2406. module.exports = "/_next/static/images/1-9c38d589213aea9dc95827f072a8d4c9.jpg";
  2407. /***/ }),
  2408. /***/ "K2gz":
  2409. /***/ (function(module, exports) {
  2410. module.exports = require("classnames");
  2411. /***/ }),
  2412. /***/ "KKbo":
  2413. /***/ (function(module, exports) {
  2414. module.exports = require("@material-ui/core");
  2415. /***/ }),
  2416. /***/ "Kg+a":
  2417. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2418. "use strict";
  2419. // EXTERNAL MODULE: external "react"
  2420. var external_react_ = __webpack_require__("cDcd");
  2421. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  2422. // EXTERNAL MODULE: external "classnames"
  2423. var external_classnames_ = __webpack_require__("K2gz");
  2424. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  2425. // EXTERNAL MODULE: external "@material-ui/core/styles/makeStyles"
  2426. var makeStyles_ = __webpack_require__("8//M");
  2427. var makeStyles_default = /*#__PURE__*/__webpack_require__.n(makeStyles_);
  2428. // EXTERNAL MODULE: external "@material-ui/core/Button"
  2429. var Button_ = __webpack_require__("Wh1t");
  2430. var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
  2431. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  2432. var nextjs_material_kit = __webpack_require__("eDSW");
  2433. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/buttonStyle.js
  2434. const buttonStyle = {
  2435. button: {
  2436. minHeight: "auto",
  2437. minWidth: "auto",
  2438. backgroundColor: nextjs_material_kit["i" /* grayColor */],
  2439. color: "#FFFFFF",
  2440. boxShadow: "0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12)",
  2441. border: "none",
  2442. borderRadius: "3px",
  2443. position: "relative",
  2444. padding: "12px 30px",
  2445. margin: ".3125rem 1px",
  2446. fontSize: "12px",
  2447. fontWeight: "400",
  2448. textTransform: "uppercase",
  2449. letterSpacing: "0",
  2450. willChange: "box-shadow, transform",
  2451. transition: "box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1)",
  2452. lineHeight: "1.42857143",
  2453. textAlign: "center",
  2454. whiteSpace: "nowrap",
  2455. verticalAlign: "middle",
  2456. touchAction: "manipulation",
  2457. cursor: "pointer",
  2458. "&:hover,&:focus": {
  2459. color: "#FFFFFF",
  2460. backgroundColor: nextjs_material_kit["i" /* grayColor */],
  2461. boxShadow: "0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2)"
  2462. },
  2463. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2464. position: "relative",
  2465. display: "inline-block",
  2466. top: "0",
  2467. fontSize: "1.1rem",
  2468. marginRight: "4px",
  2469. verticalAlign: "middle"
  2470. },
  2471. "& svg": {
  2472. position: "relative",
  2473. display: "inline-block",
  2474. top: "0",
  2475. width: "18px",
  2476. height: "18px",
  2477. marginRight: "4px",
  2478. verticalAlign: "middle"
  2479. },
  2480. "&$justIcon": {
  2481. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2482. marginRight: "0px",
  2483. position: "absolute",
  2484. width: "100%",
  2485. transform: "none",
  2486. left: "0px",
  2487. top: "0px",
  2488. height: "100%",
  2489. lineHeight: "41px",
  2490. fontSize: "20px"
  2491. }
  2492. }
  2493. },
  2494. fullWidth: {
  2495. width: "100%"
  2496. },
  2497. primary: {
  2498. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  2499. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.12)}`,
  2500. "&:hover,&:focus": {
  2501. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  2502. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.2)}`
  2503. }
  2504. },
  2505. info: {
  2506. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2507. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.12)}`,
  2508. "&:hover,&:focus": {
  2509. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2510. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["m" /* infoColor */], 0.2)}`
  2511. }
  2512. },
  2513. success: {
  2514. backgroundColor: nextjs_material_kit["u" /* successColor */],
  2515. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.12)}`,
  2516. "&:hover,&:focus": {
  2517. backgroundColor: nextjs_material_kit["u" /* successColor */],
  2518. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["u" /* successColor */], 0.2)}`
  2519. }
  2520. },
  2521. warning: {
  2522. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  2523. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.12)}`,
  2524. "&:hover,&:focus": {
  2525. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  2526. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["z" /* warningColor */], 0.2)}`
  2527. }
  2528. },
  2529. danger: {
  2530. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  2531. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.12)}`,
  2532. "&:hover,&:focus": {
  2533. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  2534. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["f" /* dangerColor */], 0.2)}`
  2535. }
  2536. },
  2537. rose: {
  2538. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  2539. boxShadow: `0 2px 2px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.14)}, 0 3px 1px -2px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.2)}, 0 1px 5px 0 ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.12)}`,
  2540. "&:hover,&:focus": {
  2541. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  2542. boxShadow: `0 14px 26px -12px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.42)}, 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px ${Object(nextjs_material_kit["j" /* hexToRGBAlpha */])(nextjs_material_kit["p" /* primaryColor */], 0.2)}`
  2543. }
  2544. },
  2545. white: {
  2546. "&,&:focus,&:hover,&:visited": {
  2547. backgroundColor: "#FFFFFF",
  2548. color: nextjs_material_kit["i" /* grayColor */]
  2549. }
  2550. },
  2551. twitter: {
  2552. backgroundColor: "#55acee",
  2553. color: "#fff",
  2554. boxShadow: "0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12)",
  2555. "&:hover,&:focus,&:visited": {
  2556. backgroundColor: "#55acee",
  2557. color: "#fff",
  2558. boxShadow: "0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2)"
  2559. }
  2560. },
  2561. facebook: {
  2562. backgroundColor: "#3b5998",
  2563. color: "#fff",
  2564. boxShadow: "0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12)",
  2565. "&:hover,&:focus": {
  2566. backgroundColor: "#3b5998",
  2567. color: "#fff",
  2568. boxShadow: "0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2)"
  2569. }
  2570. },
  2571. google: {
  2572. backgroundColor: "#dd4b39",
  2573. color: "#fff",
  2574. boxShadow: "0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12)",
  2575. "&:hover,&:focus": {
  2576. backgroundColor: "#dd4b39",
  2577. color: "#fff",
  2578. boxShadow: "0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2)"
  2579. }
  2580. },
  2581. github: {
  2582. backgroundColor: "#333333",
  2583. color: "#fff",
  2584. boxShadow: "0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12)",
  2585. "&:hover,&:focus": {
  2586. backgroundColor: "#333333",
  2587. color: "#fff",
  2588. boxShadow: "0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2)"
  2589. }
  2590. },
  2591. simple: {
  2592. "&,&:focus,&:hover,&:visited": {
  2593. color: "#FFFFFF",
  2594. background: "transparent",
  2595. boxShadow: "none"
  2596. },
  2597. "&$primary": {
  2598. "&,&:focus,&:hover,&:visited": {
  2599. color: nextjs_material_kit["p" /* primaryColor */]
  2600. }
  2601. },
  2602. "&$info": {
  2603. "&,&:focus,&:hover,&:visited": {
  2604. color: nextjs_material_kit["m" /* infoColor */]
  2605. }
  2606. },
  2607. "&$success": {
  2608. "&,&:focus,&:hover,&:visited": {
  2609. color: nextjs_material_kit["u" /* successColor */]
  2610. }
  2611. },
  2612. "&$warning": {
  2613. "&,&:focus,&:hover,&:visited": {
  2614. color: nextjs_material_kit["z" /* warningColor */]
  2615. }
  2616. },
  2617. "&$rose": {
  2618. "&,&:focus,&:hover,&:visited": {
  2619. color: nextjs_material_kit["r" /* roseColor */]
  2620. }
  2621. },
  2622. "&$danger": {
  2623. "&,&:focus,&:hover,&:visited": {
  2624. color: nextjs_material_kit["f" /* dangerColor */]
  2625. }
  2626. },
  2627. "&$twitter": {
  2628. "&,&:focus,&:hover,&:visited": {
  2629. color: "#55acee"
  2630. }
  2631. },
  2632. "&$facebook": {
  2633. "&,&:focus,&:hover,&:visited": {
  2634. color: "#3b5998"
  2635. }
  2636. },
  2637. "&$google": {
  2638. "&,&:focus,&:hover,&:visited": {
  2639. color: "#dd4b39"
  2640. }
  2641. },
  2642. "&$github": {
  2643. "&,&:focus,&:hover,&:visited": {
  2644. color: "#333333"
  2645. }
  2646. }
  2647. },
  2648. transparent: {
  2649. "&,&:focus,&:hover,&:visited": {
  2650. color: "inherit",
  2651. background: "transparent",
  2652. boxShadow: "none"
  2653. }
  2654. },
  2655. disabled: {
  2656. opacity: "0.65",
  2657. pointerEvents: "none"
  2658. },
  2659. lg: {
  2660. padding: "1.125rem 2.25rem",
  2661. fontSize: "0.875rem",
  2662. lineHeight: "1.333333",
  2663. borderRadius: "0.2rem"
  2664. },
  2665. sm: {
  2666. padding: "0.40625rem 1.25rem",
  2667. fontSize: "0.6875rem",
  2668. lineHeight: "1.5",
  2669. borderRadius: "0.2rem"
  2670. },
  2671. round: {
  2672. borderRadius: "30px"
  2673. },
  2674. block: {
  2675. width: "100% !important"
  2676. },
  2677. link: {
  2678. "&,&:hover,&:focus": {
  2679. backgroundColor: "transparent",
  2680. color: "#999999",
  2681. boxShadow: "none"
  2682. }
  2683. },
  2684. justIcon: {
  2685. paddingLeft: "12px",
  2686. paddingRight: "12px",
  2687. fontSize: "20px",
  2688. height: "41px",
  2689. minWidth: "41px",
  2690. width: "41px",
  2691. "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": {
  2692. marginRight: "0px"
  2693. },
  2694. "&$lg": {
  2695. height: "57px",
  2696. minWidth: "57px",
  2697. width: "57px",
  2698. lineHeight: "56px",
  2699. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2700. fontSize: "32px",
  2701. lineHeight: "56px"
  2702. },
  2703. "& svg": {
  2704. width: "32px",
  2705. height: "32px"
  2706. }
  2707. },
  2708. "&$sm": {
  2709. height: "30px",
  2710. minWidth: "30px",
  2711. width: "30px",
  2712. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2713. fontSize: "17px",
  2714. lineHeight: "29px"
  2715. },
  2716. "& svg": {
  2717. width: "17px",
  2718. height: "17px"
  2719. }
  2720. }
  2721. }
  2722. };
  2723. /* harmony default export */ var components_buttonStyle = (buttonStyle);
  2724. // CONCATENATED MODULE: ./components/CustomButtons/Button.js
  2725. var __jsx = external_react_default.a.createElement;
  2726. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  2727. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  2728. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  2729. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  2730. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  2731. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  2732. // nodejs library to set properties for components
  2733. // nodejs library that concatenates classes
  2734. // @material-ui/core components
  2735. // core components
  2736. const makeComponentStyles = makeStyles_default()(() => _objectSpread({}, components_buttonStyle));
  2737. const RegularButton = external_react_default.a.forwardRef((props, ref) => {
  2738. const {
  2739. color,
  2740. round,
  2741. children,
  2742. fullWidth,
  2743. disabled,
  2744. simple,
  2745. size,
  2746. block,
  2747. link,
  2748. justIcon,
  2749. className
  2750. } = props,
  2751. rest = _objectWithoutProperties(props, ["color", "round", "children", "fullWidth", "disabled", "simple", "size", "block", "link", "justIcon", "className"]);
  2752. const classes = makeComponentStyles();
  2753. const btnClasses = external_classnames_default()({
  2754. [classes.button]: true,
  2755. [classes[size]]: size,
  2756. [classes[color]]: color,
  2757. [classes.round]: round,
  2758. [classes.fullWidth]: fullWidth,
  2759. [classes.disabled]: disabled,
  2760. [classes.simple]: simple,
  2761. [classes.block]: block,
  2762. [classes.link]: link,
  2763. [classes.justIcon]: justIcon,
  2764. [className]: className
  2765. });
  2766. return __jsx(Button_default.a, _extends({}, rest, {
  2767. ref: ref,
  2768. classes: {
  2769. root: btnClasses
  2770. }
  2771. }), children);
  2772. });
  2773. /* harmony default export */ var Button = __webpack_exports__["a"] = (RegularButton);
  2774. /***/ }),
  2775. /***/ "M2SB":
  2776. /***/ (function(module, exports) {
  2777. module.exports = require("@material-ui/icons/VerifiedUser");
  2778. /***/ }),
  2779. /***/ "MXZv":
  2780. /***/ (function(module, exports) {
  2781. module.exports = "/_next/static/images/emilia-56e91b04f2e35627f185b09898bb42d9.jpg";
  2782. /***/ }),
  2783. /***/ "Ms0O":
  2784. /***/ (function(module, exports) {
  2785. module.exports = require("@material-ui/core/Toolbar");
  2786. /***/ }),
  2787. /***/ "O/hg":
  2788. /***/ (function(module, exports) {
  2789. module.exports = require("react-slick");
  2790. /***/ }),
  2791. /***/ "Osoz":
  2792. /***/ (function(module, exports) {
  2793. module.exports = require("next/dist/next-server/lib/router-context.js");
  2794. /***/ }),
  2795. /***/ "Q01v":
  2796. /***/ (function(module, exports) {
  2797. module.exports = require("@material-ui/core/Drawer");
  2798. /***/ }),
  2799. /***/ "QH4I":
  2800. /***/ (function(module, exports) {
  2801. module.exports = "/_next/static/images/3-5f2f0080fbbeb7e39946586cb6e0827d.jpg";
  2802. /***/ }),
  2803. /***/ "QOEo":
  2804. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2805. "use strict";
  2806. // EXPORTS
  2807. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CustomDropdown; });
  2808. // EXTERNAL MODULE: external "react"
  2809. var external_react_ = __webpack_require__("cDcd");
  2810. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  2811. // EXTERNAL MODULE: external "classnames"
  2812. var external_classnames_ = __webpack_require__("K2gz");
  2813. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  2814. // EXTERNAL MODULE: external "@material-ui/core/styles"
  2815. var styles_ = __webpack_require__("9Pu4");
  2816. // EXTERNAL MODULE: external "@material-ui/core/MenuItem"
  2817. var MenuItem_ = __webpack_require__("x54t");
  2818. var MenuItem_default = /*#__PURE__*/__webpack_require__.n(MenuItem_);
  2819. // EXTERNAL MODULE: external "@material-ui/core/MenuList"
  2820. var MenuList_ = __webpack_require__("xmQw");
  2821. var MenuList_default = /*#__PURE__*/__webpack_require__.n(MenuList_);
  2822. // EXTERNAL MODULE: external "@material-ui/core/ClickAwayListener"
  2823. var ClickAwayListener_ = __webpack_require__("31Yn");
  2824. var ClickAwayListener_default = /*#__PURE__*/__webpack_require__.n(ClickAwayListener_);
  2825. // EXTERNAL MODULE: external "@material-ui/core/Paper"
  2826. var Paper_ = __webpack_require__("qt1I");
  2827. var Paper_default = /*#__PURE__*/__webpack_require__.n(Paper_);
  2828. // EXTERNAL MODULE: external "@material-ui/core/Grow"
  2829. var Grow_ = __webpack_require__("mf1M");
  2830. var Grow_default = /*#__PURE__*/__webpack_require__.n(Grow_);
  2831. // EXTERNAL MODULE: external "@material-ui/core/Divider"
  2832. var Divider_ = __webpack_require__("nybW");
  2833. var Divider_default = /*#__PURE__*/__webpack_require__.n(Divider_);
  2834. // EXTERNAL MODULE: external "@material-ui/core/Icon"
  2835. var Icon_ = __webpack_require__("7vM9");
  2836. var Icon_default = /*#__PURE__*/__webpack_require__.n(Icon_);
  2837. // EXTERNAL MODULE: external "@material-ui/core/Popper"
  2838. var Popper_ = __webpack_require__("jD8W");
  2839. var Popper_default = /*#__PURE__*/__webpack_require__.n(Popper_);
  2840. // EXTERNAL MODULE: ./components/CustomButtons/Button.js + 1 modules
  2841. var Button = __webpack_require__("Kg+a");
  2842. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  2843. var nextjs_material_kit = __webpack_require__("eDSW");
  2844. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/customDropdownStyle.js
  2845. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  2846. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  2847. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  2848. const customDropdownStyle = theme => ({
  2849. popperClose: {
  2850. pointerEvents: "none"
  2851. },
  2852. pooperNav: {
  2853. [theme.breakpoints.down("sm")]: {
  2854. position: "static !important",
  2855. left: "unset !important",
  2856. top: "unset !important",
  2857. transform: "none !important",
  2858. willChange: "none !important",
  2859. "& > div": {
  2860. boxShadow: "none !important",
  2861. marginLeft: "1.5rem",
  2862. marginRight: "1.5rem",
  2863. transition: "none !important",
  2864. marginTop: "0px !important",
  2865. marginBottom: "5px !important",
  2866. padding: "0px !important"
  2867. }
  2868. }
  2869. },
  2870. dropdown: {
  2871. borderRadius: "3px",
  2872. border: "0",
  2873. boxShadow: "0 2px 5px 0 rgba(0, 0, 0, 0.26)",
  2874. top: "100%",
  2875. zIndex: "1000",
  2876. minWidth: "160px",
  2877. padding: "5px 0",
  2878. margin: "2px 0 0",
  2879. fontSize: "14px",
  2880. textAlign: "left",
  2881. listStyle: "none",
  2882. backgroundColor: "#fff",
  2883. backgroundClip: "padding-box"
  2884. },
  2885. menuList: {
  2886. padding: "0"
  2887. },
  2888. popperResponsive: {
  2889. zIndex: "1200",
  2890. position: "absolute !important",
  2891. [theme.breakpoints.down("sm")]: {
  2892. zIndex: "1640",
  2893. position: "static !important",
  2894. float: "none",
  2895. width: "auto",
  2896. marginTop: "0",
  2897. backgroundColor: "transparent",
  2898. border: "0",
  2899. boxShadow: "none",
  2900. color: "black"
  2901. }
  2902. },
  2903. dropdownItem: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  2904. fontSize: "13px",
  2905. padding: "10px 20px",
  2906. margin: "0 5px",
  2907. borderRadius: "2px",
  2908. position: "relative",
  2909. transition: "all 150ms linear",
  2910. display: "block",
  2911. clear: "both",
  2912. fontWeight: "400",
  2913. height: "fit-content",
  2914. color: "#333",
  2915. whiteSpace: "nowrap",
  2916. minHeight: "unset"
  2917. }),
  2918. blackHover: {
  2919. "&:hover": {
  2920. boxShadow: "0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(33, 33, 33, 0.4)",
  2921. backgroundColor: "#212121",
  2922. color: "#fff"
  2923. }
  2924. },
  2925. primaryHover: {
  2926. "&:hover": _objectSpread({
  2927. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2928. color: "#FFFFFF"
  2929. }, nextjs_material_kit["n" /* primaryBoxShadow */])
  2930. },
  2931. infoHover: {
  2932. "&:hover": _objectSpread({
  2933. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2934. color: "#FFFFFF"
  2935. }, nextjs_material_kit["k" /* infoBoxShadow */])
  2936. },
  2937. successHover: {
  2938. "&:hover": _objectSpread({
  2939. backgroundColor: nextjs_material_kit["u" /* successColor */],
  2940. color: "#FFFFFF"
  2941. }, nextjs_material_kit["s" /* successBoxShadow */])
  2942. },
  2943. warningHover: {
  2944. "&:hover": _objectSpread({
  2945. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  2946. color: "#FFFFFF"
  2947. }, nextjs_material_kit["x" /* warningBoxShadow */])
  2948. },
  2949. dangerHover: {
  2950. "&:hover": _objectSpread({
  2951. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  2952. color: "#FFFFFF"
  2953. }, nextjs_material_kit["d" /* dangerBoxShadow */])
  2954. },
  2955. roseHover: {
  2956. "&:hover": _objectSpread({
  2957. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  2958. color: "#FFFFFF"
  2959. }, nextjs_material_kit["q" /* roseBoxShadow */])
  2960. },
  2961. dropdownItemRTL: {
  2962. textAlign: "right"
  2963. },
  2964. dropdownDividerItem: {
  2965. margin: "5px 0",
  2966. backgroundColor: "rgba(0, 0, 0, 0.12)",
  2967. height: "1px",
  2968. overflow: "hidden"
  2969. },
  2970. buttonIcon: {
  2971. width: "20px",
  2972. height: "20px"
  2973. },
  2974. caret: {
  2975. transition: "all 150ms ease-in",
  2976. display: "inline-block",
  2977. width: "0",
  2978. height: "0",
  2979. marginLeft: "4px",
  2980. verticalAlign: "middle",
  2981. borderTop: "4px solid",
  2982. borderRight: "4px solid transparent",
  2983. borderLeft: "4px solid transparent"
  2984. },
  2985. caretActive: {
  2986. transform: "rotate(180deg)"
  2987. },
  2988. caretRTL: {
  2989. marginRight: "4px"
  2990. },
  2991. dropdownHeader: {
  2992. display: "block",
  2993. padding: "0.1875rem 1.25rem",
  2994. fontSize: "0.75rem",
  2995. lineHeight: "1.428571",
  2996. color: "#777",
  2997. whiteSpace: "nowrap",
  2998. fontWeight: "inherit",
  2999. marginTop: "10px",
  3000. minHeight: "unset",
  3001. "&:hover,&:focus": {
  3002. backgroundColor: "transparent",
  3003. cursor: "auto"
  3004. }
  3005. },
  3006. noLiPadding: {
  3007. padding: "0"
  3008. }
  3009. });
  3010. /* harmony default export */ var components_customDropdownStyle = (customDropdownStyle);
  3011. // CONCATENATED MODULE: ./components/CustomDropdown/CustomDropdown.js
  3012. var __jsx = external_react_default.a.createElement;
  3013. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  3014. // nodejs library that concatenates classes
  3015. // nodejs library to set properties for components
  3016. // @material-ui/core components
  3017. // core components
  3018. const useStyles = Object(styles_["makeStyles"])(components_customDropdownStyle);
  3019. function CustomDropdown(props) {
  3020. const [anchorEl, setAnchorEl] = external_react_default.a.useState(null);
  3021. const handleClick = event => {
  3022. if (anchorEl && anchorEl.contains(event.target)) {
  3023. setAnchorEl(null);
  3024. } else {
  3025. setAnchorEl(event.currentTarget);
  3026. }
  3027. };
  3028. const handleClose = param => {
  3029. setAnchorEl(null);
  3030. if (props && props.onClick) {
  3031. props.onClick(param);
  3032. }
  3033. };
  3034. const handleCloseAway = event => {
  3035. if (anchorEl.contains(event.target)) {
  3036. return;
  3037. }
  3038. setAnchorEl(null);
  3039. };
  3040. const classes = useStyles();
  3041. const {
  3042. buttonText,
  3043. buttonIcon,
  3044. dropdownList,
  3045. buttonProps,
  3046. dropup,
  3047. dropdownHeader,
  3048. caret,
  3049. hoverColor,
  3050. left,
  3051. rtlActive,
  3052. noLiPadding,
  3053. navDropdown
  3054. } = props;
  3055. const caretClasses = external_classnames_default()({
  3056. [classes.caret]: true,
  3057. [classes.caretActive]: Boolean(anchorEl),
  3058. [classes.caretRTL]: rtlActive
  3059. });
  3060. const dropdownItem = external_classnames_default()({
  3061. [classes.dropdownItem]: true,
  3062. [classes[hoverColor + "Hover"]]: true,
  3063. [classes.noLiPadding]: noLiPadding,
  3064. [classes.dropdownItemRTL]: rtlActive
  3065. });
  3066. let icon = null;
  3067. switch (typeof buttonIcon) {
  3068. case "object":
  3069. icon = __jsx(props.buttonIcon, {
  3070. className: classes.buttonIcon
  3071. });
  3072. break;
  3073. case "string":
  3074. icon = __jsx(Icon_default.a, {
  3075. className: classes.buttonIcon
  3076. }, props.buttonIcon);
  3077. break;
  3078. default:
  3079. icon = null;
  3080. break;
  3081. }
  3082. return __jsx("div", null, __jsx("div", null, __jsx(Button["a" /* default */], _extends({
  3083. "aria-label": "Notifications",
  3084. "aria-owns": anchorEl ? "menu-list" : null,
  3085. "aria-haspopup": "true"
  3086. }, buttonProps, {
  3087. onClick: handleClick
  3088. }), icon, buttonText !== undefined ? buttonText : null, caret ? __jsx("b", {
  3089. className: caretClasses
  3090. }) : null)), __jsx(Popper_default.a, {
  3091. open: Boolean(anchorEl),
  3092. anchorEl: anchorEl,
  3093. transition: true,
  3094. disablePortal: true,
  3095. placement: dropup ? left ? "top-start" : "top" : left ? "bottom-start" : "bottom",
  3096. className: external_classnames_default()({
  3097. [classes.popperClose]: !anchorEl,
  3098. [classes.popperResponsive]: true,
  3099. [classes.pooperNav]: Boolean(anchorEl) && navDropdown
  3100. })
  3101. }, () => __jsx(Grow_default.a, {
  3102. in: Boolean(anchorEl),
  3103. id: "menu-list",
  3104. style: dropup ? {
  3105. transformOrigin: "0 100% 0"
  3106. } : {
  3107. transformOrigin: "0 0 0"
  3108. }
  3109. }, __jsx(Paper_default.a, {
  3110. className: classes.dropdown
  3111. }, __jsx(ClickAwayListener_default.a, {
  3112. onClickAway: handleCloseAway
  3113. }, __jsx(MenuList_default.a, {
  3114. role: "menu",
  3115. className: classes.menuList
  3116. }, dropdownHeader !== undefined ? __jsx(MenuItem_default.a, {
  3117. onClick: () => handleClose(dropdownHeader),
  3118. className: classes.dropdownHeader
  3119. }, dropdownHeader) : null, dropdownList.map((prop, key) => {
  3120. if (prop.divider) {
  3121. return __jsx(Divider_default.a, {
  3122. key: key,
  3123. onClick: () => handleClose("divider"),
  3124. className: classes.dropdownDividerItem
  3125. });
  3126. }
  3127. return __jsx(MenuItem_default.a, {
  3128. key: key,
  3129. onClick: () => handleClose(prop),
  3130. className: dropdownItem
  3131. }, prop);
  3132. })))))));
  3133. }
  3134. CustomDropdown.defaultProps = {
  3135. caret: true,
  3136. hoverColor: "primary"
  3137. };
  3138. /***/ }),
  3139. /***/ "Uo6P":
  3140. /***/ (function(module, exports) {
  3141. module.exports = require("@material-ui/icons/Fingerprint");
  3142. /***/ }),
  3143. /***/ "UsYt":
  3144. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3145. "use strict";
  3146. // EXPORTS
  3147. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CardBody; });
  3148. // EXTERNAL MODULE: external "react"
  3149. var external_react_ = __webpack_require__("cDcd");
  3150. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  3151. // EXTERNAL MODULE: external "classnames"
  3152. var external_classnames_ = __webpack_require__("K2gz");
  3153. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  3154. // EXTERNAL MODULE: external "@material-ui/core/styles"
  3155. var styles_ = __webpack_require__("9Pu4");
  3156. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardBodyStyle.js
  3157. const cardBodyStyle = {
  3158. cardBody: {
  3159. padding: "0.9375rem 1.875rem",
  3160. flex: "1 1 auto"
  3161. }
  3162. };
  3163. /* harmony default export */ var components_cardBodyStyle = (cardBodyStyle);
  3164. // CONCATENATED MODULE: ./components/Card/CardBody.js
  3165. var __jsx = external_react_default.a.createElement;
  3166. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  3167. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  3168. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  3169. // nodejs library that concatenates classes
  3170. // nodejs library to set properties for components
  3171. // @material-ui/core components
  3172. // @material-ui/icons
  3173. // core components
  3174. const useStyles = Object(styles_["makeStyles"])(components_cardBodyStyle);
  3175. function CardBody(props) {
  3176. const classes = useStyles();
  3177. const {
  3178. className,
  3179. children
  3180. } = props,
  3181. rest = _objectWithoutProperties(props, ["className", "children"]);
  3182. const cardBodyClasses = external_classnames_default()({
  3183. [classes.cardBody]: true,
  3184. [className]: className !== undefined
  3185. });
  3186. return __jsx("div", _extends({
  3187. className: cardBodyClasses
  3188. }, rest), children);
  3189. }
  3190. /***/ }),
  3191. /***/ "WM2L":
  3192. /***/ (function(module, exports) {
  3193. module.exports = "/_next/static/images/yamaha-c8bb7fe6f2fa1bff4ef141e60eebc486.jpg";
  3194. /***/ }),
  3195. /***/ "Wh1t":
  3196. /***/ (function(module, exports) {
  3197. module.exports = require("@material-ui/core/Button");
  3198. /***/ }),
  3199. /***/ "XtlH":
  3200. /***/ (function(module, exports) {
  3201. module.exports = "data:image/png;base64,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"
  3202. /***/ }),
  3203. /***/ "Y8uC":
  3204. /***/ (function(module, exports) {
  3205. module.exports = require("@material-ui/core/Hidden");
  3206. /***/ }),
  3207. /***/ "YFqc":
  3208. /***/ (function(module, exports, __webpack_require__) {
  3209. module.exports = __webpack_require__("cTJO")
  3210. /***/ }),
  3211. /***/ "YTqd":
  3212. /***/ (function(module, exports, __webpack_require__) {
  3213. "use strict";
  3214. Object.defineProperty(exports, "__esModule", {
  3215. value: true
  3216. }); // this isn't importing the escape-string-regex module
  3217. // to reduce bytes
  3218. function escapeRegex(str) {
  3219. return str.replace(/[|\\{}()[\]^$+*?.-]/g, '\\$&');
  3220. }
  3221. function getRouteRegex(normalizedRoute) {
  3222. // Escape all characters that could be considered RegEx
  3223. const escapedRoute = escapeRegex(normalizedRoute.replace(/\/$/, '') || '/');
  3224. const groups = {};
  3225. let groupIndex = 1;
  3226. const parameterizedRoute = escapedRoute.replace(/\/\\\[([^/]+?)\\\](?=\/|$)/g, (_, $1) => {
  3227. const isCatchAll = /^(\\\.){3}/.test($1);
  3228. groups[$1 // Un-escape key
  3229. .replace(/\\([|\\{}()[\]^$+*?.-])/g, '$1').replace(/^\.{3}/, '') // eslint-disable-next-line no-sequences
  3230. ] = {
  3231. pos: groupIndex++,
  3232. repeat: isCatchAll
  3233. };
  3234. return isCatchAll ? '/(.+?)' : '/([^/]+?)';
  3235. });
  3236. let namedParameterizedRoute; // dead code eliminate for browser since it's only needed
  3237. // while generating routes-manifest
  3238. if (true) {
  3239. namedParameterizedRoute = escapedRoute.replace(/\/\\\[([^/]+?)\\\](?=\/|$)/g, (_, $1) => {
  3240. const isCatchAll = /^(\\\.){3}/.test($1);
  3241. const key = $1 // Un-escape key
  3242. .replace(/\\([|\\{}()[\]^$+*?.-])/g, '$1').replace(/^\.{3}/, '');
  3243. return isCatchAll ? `/(?<${escapeRegex(key)}>.+?)` : `/(?<${escapeRegex(key)}>[^/]+?)`;
  3244. });
  3245. }
  3246. return Object.assign({
  3247. re: new RegExp('^' + parameterizedRoute + '(?:/)?$', 'i'),
  3248. groups
  3249. }, namedParameterizedRoute ? {
  3250. namedRegex: `^${namedParameterizedRoute}(?:/)?$`
  3251. } : {});
  3252. }
  3253. exports.getRouteRegex = getRouteRegex;
  3254. /***/ }),
  3255. /***/ "Z2Lm":
  3256. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3257. "use strict";
  3258. // EXPORTS
  3259. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Parallax; });
  3260. // EXTERNAL MODULE: external "react"
  3261. var external_react_ = __webpack_require__("cDcd");
  3262. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  3263. // EXTERNAL MODULE: external "classnames"
  3264. var external_classnames_ = __webpack_require__("K2gz");
  3265. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  3266. // EXTERNAL MODULE: external "@material-ui/core/styles"
  3267. var styles_ = __webpack_require__("9Pu4");
  3268. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/parallaxStyle.js
  3269. const parallaxStyle = theme => ({
  3270. parallax: {
  3271. height: "90vh",
  3272. maxHeight: "1000px",
  3273. overflow: "hidden",
  3274. position: "relative",
  3275. backgroundPosition: "center top",
  3276. backgroundSize: "cover",
  3277. margin: "0",
  3278. padding: "0",
  3279. border: "0",
  3280. display: "flex",
  3281. alignItems: "center"
  3282. },
  3283. filter: {
  3284. "&:before": {
  3285. background: "rgba(0, 0, 0, 0.5)"
  3286. },
  3287. "&:after,&:before": {
  3288. position: "absolute",
  3289. zIndex: "1",
  3290. width: "100%",
  3291. height: "100%",
  3292. display: "block",
  3293. left: "0",
  3294. top: "0",
  3295. content: "''"
  3296. }
  3297. },
  3298. small: {
  3299. height: "380px"
  3300. },
  3301. parallaxResponsive: {
  3302. [theme.breakpoints.down("md")]: {
  3303. minHeight: "660px"
  3304. }
  3305. }
  3306. });
  3307. /* harmony default export */ var components_parallaxStyle = (parallaxStyle);
  3308. // CONCATENATED MODULE: ./components/Parallax/Parallax.js
  3309. var __jsx = external_react_default.a.createElement;
  3310. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  3311. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  3312. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  3313. // nodejs library that concatenates classes
  3314. // nodejs library to set properties for components
  3315. // @material-ui/core components
  3316. // core components
  3317. const useStyles = Object(styles_["makeStyles"])(components_parallaxStyle);
  3318. function Parallax(props) {
  3319. let windowScrollTop; // if (window.innerWidth >= 768) {
  3320. // windowScrollTop = window.pageYOffset / 3;
  3321. // } else {
  3322. // windowScrollTop = 0;
  3323. // }
  3324. const [transform, setTransform] = external_react_default.a.useState("translate3d(0,0px,0)");
  3325. external_react_default.a.useEffect(() => {
  3326. if (window.innerWidth >= 768) {
  3327. window.addEventListener("scroll", resetTransform);
  3328. }
  3329. return function cleanup() {
  3330. if (window.innerWidth >= 768) {
  3331. window.removeEventListener("scroll", resetTransform);
  3332. }
  3333. };
  3334. });
  3335. const resetTransform = () => {
  3336. var windowScrollTop = window.pageYOffset / 3;
  3337. setTransform("translate3d(0," + windowScrollTop + "px,0)");
  3338. };
  3339. const {
  3340. filter,
  3341. className,
  3342. children,
  3343. style,
  3344. image,
  3345. small,
  3346. responsive
  3347. } = props;
  3348. const classes = useStyles();
  3349. const parallaxClasses = external_classnames_default()({
  3350. [classes.parallax]: true,
  3351. [classes.filter]: filter,
  3352. [classes.small]: small,
  3353. [classes.parallaxResponsive]: responsive,
  3354. [className]: className !== undefined
  3355. });
  3356. return __jsx("div", {
  3357. className: parallaxClasses,
  3358. style: _objectSpread({}, style, {
  3359. backgroundImage: "url(" + image + ")",
  3360. transform: transform
  3361. })
  3362. }, children);
  3363. }
  3364. /***/ }),
  3365. /***/ "aK6x":
  3366. /***/ (function(module, exports) {
  3367. module.exports = "/_next/static/images/1-416162d55345d3080e5f067b2bbba6d9.jpg";
  3368. /***/ }),
  3369. /***/ "bzos":
  3370. /***/ (function(module, exports) {
  3371. module.exports = require("url");
  3372. /***/ }),
  3373. /***/ "c25J":
  3374. /***/ (function(module, exports) {
  3375. module.exports = require("@material-ui/core/ListItem");
  3376. /***/ }),
  3377. /***/ "cDcd":
  3378. /***/ (function(module, exports) {
  3379. module.exports = require("react");
  3380. /***/ }),
  3381. /***/ "cTJO":
  3382. /***/ (function(module, exports, __webpack_require__) {
  3383. "use strict";
  3384. var _interopRequireDefault = __webpack_require__("AroE");
  3385. var _interopRequireWildcard = __webpack_require__("7KCV");
  3386. exports.__esModule = true;
  3387. exports.default = void 0;
  3388. var _react = _interopRequireWildcard(__webpack_require__("cDcd"));
  3389. var _url = __webpack_require__("bzos");
  3390. var _utils = __webpack_require__("kYf9");
  3391. var _router = _interopRequireDefault(__webpack_require__("nOHt"));
  3392. var _router2 = __webpack_require__("elyg");
  3393. function isLocal(href) {
  3394. var url = (0, _url.parse)(href, false, true);
  3395. var origin = (0, _url.parse)((0, _utils.getLocationOrigin)(), false, true);
  3396. return !url.host || url.protocol === origin.protocol && url.host === origin.host;
  3397. }
  3398. function memoizedFormatUrl(formatFunc) {
  3399. var lastHref = null;
  3400. var lastAs = null;
  3401. var lastResult = null;
  3402. return (href, as) => {
  3403. if (lastResult && href === lastHref && as === lastAs) {
  3404. return lastResult;
  3405. }
  3406. var result = formatFunc(href, as);
  3407. lastHref = href;
  3408. lastAs = as;
  3409. lastResult = result;
  3410. return result;
  3411. };
  3412. }
  3413. function formatUrl(url) {
  3414. return url && typeof url === 'object' ? (0, _utils.formatWithValidation)(url) : url;
  3415. }
  3416. var observer;
  3417. var listeners = new Map();
  3418. var IntersectionObserver = false ? undefined : null;
  3419. var prefetched = {};
  3420. function getObserver() {
  3421. // Return shared instance of IntersectionObserver if already created
  3422. if (observer) {
  3423. return observer;
  3424. } // Only create shared IntersectionObserver if supported in browser
  3425. if (!IntersectionObserver) {
  3426. return undefined;
  3427. }
  3428. return observer = new IntersectionObserver(entries => {
  3429. entries.forEach(entry => {
  3430. if (!listeners.has(entry.target)) {
  3431. return;
  3432. }
  3433. var cb = listeners.get(entry.target);
  3434. if (entry.isIntersecting || entry.intersectionRatio > 0) {
  3435. observer.unobserve(entry.target);
  3436. listeners.delete(entry.target);
  3437. cb();
  3438. }
  3439. });
  3440. }, {
  3441. rootMargin: '200px'
  3442. });
  3443. }
  3444. var listenToIntersections = (el, cb) => {
  3445. var observer = getObserver();
  3446. if (!observer) {
  3447. return () => {};
  3448. }
  3449. observer.observe(el);
  3450. listeners.set(el, cb);
  3451. return () => {
  3452. try {
  3453. observer.unobserve(el);
  3454. } catch (err) {
  3455. console.error(err);
  3456. }
  3457. listeners.delete(el);
  3458. };
  3459. };
  3460. class Link extends _react.Component {
  3461. constructor(props) {
  3462. super(props);
  3463. this.p = void 0;
  3464. this.cleanUpListeners = () => {};
  3465. this.formatUrls = memoizedFormatUrl((href, asHref) => {
  3466. return {
  3467. href: (0, _router2.addBasePath)(formatUrl(href)),
  3468. as: asHref ? (0, _router2.addBasePath)(formatUrl(asHref)) : asHref
  3469. };
  3470. });
  3471. this.linkClicked = e => {
  3472. var {
  3473. nodeName,
  3474. target
  3475. } = e.currentTarget;
  3476. if (nodeName === 'A' && (target && target !== '_self' || e.metaKey || e.ctrlKey || e.shiftKey || e.nativeEvent && e.nativeEvent.which === 2)) {
  3477. // ignore click for new tab / new window behavior
  3478. return;
  3479. }
  3480. var {
  3481. href,
  3482. as
  3483. } = this.formatUrls(this.props.href, this.props.as);
  3484. if (!isLocal(href)) {
  3485. // ignore click if it's outside our scope (e.g. https://google.com)
  3486. return;
  3487. }
  3488. var {
  3489. pathname
  3490. } = window.location;
  3491. href = (0, _url.resolve)(pathname, href);
  3492. as = as ? (0, _url.resolve)(pathname, as) : href;
  3493. e.preventDefault(); // avoid scroll for urls with anchor refs
  3494. var {
  3495. scroll
  3496. } = this.props;
  3497. if (scroll == null) {
  3498. scroll = as.indexOf('#') < 0;
  3499. } // replace state instead of push if prop is present
  3500. _router.default[this.props.replace ? 'replace' : 'push'](href, as, {
  3501. shallow: this.props.shallow
  3502. }).then(success => {
  3503. if (!success) return;
  3504. if (scroll) {
  3505. window.scrollTo(0, 0);
  3506. document.body.focus();
  3507. }
  3508. });
  3509. };
  3510. if (false) {}
  3511. this.p = props.prefetch !== false;
  3512. }
  3513. componentWillUnmount() {
  3514. this.cleanUpListeners();
  3515. }
  3516. getPaths() {
  3517. var {
  3518. pathname
  3519. } = window.location;
  3520. var {
  3521. href: parsedHref,
  3522. as: parsedAs
  3523. } = this.formatUrls(this.props.href, this.props.as);
  3524. var resolvedHref = (0, _url.resolve)(pathname, parsedHref);
  3525. return [resolvedHref, parsedAs ? (0, _url.resolve)(pathname, parsedAs) : resolvedHref];
  3526. }
  3527. handleRef(ref) {
  3528. if (this.p && IntersectionObserver && ref && ref.tagName) {
  3529. this.cleanUpListeners();
  3530. var isPrefetched = prefetched[this.getPaths().join( // Join on an invalid URI character
  3531. '%')];
  3532. if (!isPrefetched) {
  3533. this.cleanUpListeners = listenToIntersections(ref, () => {
  3534. this.prefetch();
  3535. });
  3536. }
  3537. }
  3538. } // The function is memoized so that no extra lifecycles are needed
  3539. // as per https://reactjs.org/blog/2018/06/07/you-probably-dont-need-derived-state.html
  3540. prefetch(options) {
  3541. if (!this.p || true) return; // Prefetch the JSON page if asked (only in the client)
  3542. var paths = this.getPaths(); // We need to handle a prefetch error here since we may be
  3543. // loading with priority which can reject but we don't
  3544. // want to force navigation since this is only a prefetch
  3545. _router.default.prefetch(paths[
  3546. /* href */
  3547. 0], paths[
  3548. /* asPath */
  3549. 1], options).catch(err => {
  3550. if (false) {}
  3551. });
  3552. prefetched[paths.join( // Join on an invalid URI character
  3553. '%')] = true;
  3554. }
  3555. render() {
  3556. var {
  3557. children
  3558. } = this.props;
  3559. var {
  3560. href,
  3561. as
  3562. } = this.formatUrls(this.props.href, this.props.as); // Deprecated. Warning shown by propType check. If the children provided is a string (<Link>example</Link>) we wrap it in an <a> tag
  3563. if (typeof children === 'string') {
  3564. children = _react.default.createElement("a", null, children);
  3565. } // This will return the first child, if multiple are provided it will throw an error
  3566. var child = _react.Children.only(children);
  3567. var props = {
  3568. ref: el => {
  3569. this.handleRef(el);
  3570. if (child && typeof child === 'object' && child.ref) {
  3571. if (typeof child.ref === 'function') child.ref(el);else if (typeof child.ref === 'object') {
  3572. child.ref.current = el;
  3573. }
  3574. }
  3575. },
  3576. onMouseEnter: e => {
  3577. if (child.props && typeof child.props.onMouseEnter === 'function') {
  3578. child.props.onMouseEnter(e);
  3579. }
  3580. this.prefetch({
  3581. priority: true
  3582. });
  3583. },
  3584. onClick: e => {
  3585. if (child.props && typeof child.props.onClick === 'function') {
  3586. child.props.onClick(e);
  3587. }
  3588. if (!e.defaultPrevented) {
  3589. this.linkClicked(e);
  3590. }
  3591. }
  3592. }; // If child is an <a> tag and doesn't have a href attribute, or if the 'passHref' property is
  3593. // defined, we specify the current 'href', so that repetition is not needed by the user
  3594. if (this.props.passHref || child.type === 'a' && !('href' in child.props)) {
  3595. props.href = as || href;
  3596. } // Add the ending slash to the paths. So, we can serve the
  3597. // "<page>/index.html" directly.
  3598. if (false) { var rewriteUrlForNextExport; }
  3599. return _react.default.cloneElement(child, props);
  3600. }
  3601. }
  3602. if (false) { var exact, PropTypes, warn; }
  3603. var _default = Link;
  3604. exports.default = _default;
  3605. /***/ }),
  3606. /***/ "dZ6Y":
  3607. /***/ (function(module, exports, __webpack_require__) {
  3608. "use strict";
  3609. /*
  3610. MIT License
  3611. Copyright (c) Jason Miller (https://jasonformat.com/)
  3612. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  3613. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  3614. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  3615. */
  3616. Object.defineProperty(exports, "__esModule", {
  3617. value: true
  3618. });
  3619. function mitt() {
  3620. const all = Object.create(null);
  3621. return {
  3622. on(type, handler) {
  3623. ;
  3624. (all[type] || (all[type] = [])).push(handler);
  3625. },
  3626. off(type, handler) {
  3627. if (all[type]) {
  3628. // tslint:disable-next-line:no-bitwise
  3629. all[type].splice(all[type].indexOf(handler) >>> 0, 1);
  3630. }
  3631. },
  3632. emit(type, ...evts) {
  3633. // eslint-disable-next-line array-callback-return
  3634. ;
  3635. (all[type] || []).slice().map(handler => {
  3636. handler(...evts);
  3637. });
  3638. }
  3639. };
  3640. }
  3641. exports.default = mitt;
  3642. /***/ }),
  3643. /***/ "djX/":
  3644. /***/ (function(module, exports) {
  3645. module.exports = "/_next/static/images/honda-7345861c23f75ef3759b5fdb51c6571d.jpg";
  3646. /***/ }),
  3647. /***/ "eDSW":
  3648. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3649. "use strict";
  3650. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return hexToRGBAlpha; });
  3651. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return drawerWidth; });
  3652. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return transition; });
  3653. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return container; });
  3654. /* unused harmony export conatinerFluid */
  3655. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return boxShadow; });
  3656. /* unused harmony export card */
  3657. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return defaultFont; });
  3658. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return primaryColor; });
  3659. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return warningColor; });
  3660. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return dangerColor; });
  3661. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return successColor; });
  3662. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return infoColor; });
  3663. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return roseColor; });
  3664. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return grayColor; });
  3665. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return primaryBoxShadow; });
  3666. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return infoBoxShadow; });
  3667. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return successBoxShadow; });
  3668. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return warningBoxShadow; });
  3669. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return dangerBoxShadow; });
  3670. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return roseBoxShadow; });
  3671. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return warningCardHeader; });
  3672. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return successCardHeader; });
  3673. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return dangerCardHeader; });
  3674. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return infoCardHeader; });
  3675. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return primaryCardHeader; });
  3676. /* unused harmony export roseCardHeader */
  3677. /* unused harmony export cardActions */
  3678. /* unused harmony export cardHeader */
  3679. /* unused harmony export defaultBoxShadow */
  3680. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return title; });
  3681. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return cardTitle; });
  3682. /* unused harmony export cardLink */
  3683. /* unused harmony export cardSubtitle */
  3684. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  3685. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  3686. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  3687. const hexColorToRGB = function (hexColor) {
  3688. let detectShorthand = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; // #000 vs #000000
  3689. hexColor = hexColor.replace(detectShorthand, function (m, r, g, b) {
  3690. return r + r + g + g + b + b;
  3691. });
  3692. const hex_array = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hexColor); // #000000 to #ffffff
  3693. return hex_array ? {
  3694. r: parseInt(hex_array[1], 16),
  3695. // 0-255
  3696. g: parseInt(hex_array[2], 16),
  3697. // 0-255
  3698. b: parseInt(hex_array[3], 16) // 0-255
  3699. } : null;
  3700. };
  3701. const hexToRGBAlpha = function (hexColor, alpha) {
  3702. let rgb = hexColorToRGB(hexColor);
  3703. return `rgba(${rgb.r},${rgb.g},${rgb.b},${alpha})`;
  3704. };
  3705. const drawerWidth = 260;
  3706. const transition = {
  3707. transition: "all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)"
  3708. };
  3709. const conatinerFluid = {
  3710. paddingRight: "15px",
  3711. paddingLeft: "15px",
  3712. marginRight: "auto",
  3713. marginLeft: "auto",
  3714. width: "100%"
  3715. };
  3716. const container = _objectSpread({}, conatinerFluid, {
  3717. "@media (min-width: 576px)": {
  3718. maxWidth: "540px"
  3719. },
  3720. "@media (min-width: 768px)": {
  3721. maxWidth: "720px"
  3722. },
  3723. "@media (min-width: 992px)": {
  3724. maxWidth: "960px"
  3725. },
  3726. "@media (min-width: 1200px)": {
  3727. maxWidth: "1140px"
  3728. }
  3729. });
  3730. const boxShadow = {
  3731. boxShadow: "0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)"
  3732. };
  3733. const card = {
  3734. display: "inline-block",
  3735. position: "relative",
  3736. width: "100%",
  3737. margin: "25px 0",
  3738. boxShadow: "0 1px 4px 0 rgba(0, 0, 0, 0.14)",
  3739. borderRadius: "3px",
  3740. color: "rgba(0, 0, 0, 0.87)",
  3741. background: "#fff"
  3742. };
  3743. const defaultFont = {
  3744. fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
  3745. fontWeight: "300",
  3746. lineHeight: "1.5em"
  3747. };
  3748. const primaryColor = "#9c27b0";
  3749. const warningColor = "#ff9800";
  3750. const dangerColor = "#f44336";
  3751. const successColor = "#4caf50";
  3752. const infoColor = "#00acc1";
  3753. const roseColor = "#e91e63";
  3754. const grayColor = "#999999";
  3755. const primaryBoxShadow = {
  3756. boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(primaryColor, 0.28)}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(primaryColor, 0.2)}`
  3757. };
  3758. const infoBoxShadow = {
  3759. boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(infoColor, 0.28)}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(infoColor, 0.2)}`
  3760. };
  3761. const successBoxShadow = {
  3762. boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(successColor, 0.28)}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(successColor, 0.2)}`
  3763. };
  3764. const warningBoxShadow = {
  3765. boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(warningColor, 0.28)}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(warningColor, 0.2)}`
  3766. };
  3767. const dangerBoxShadow = {
  3768. boxShadow: `0 12px 20px -10px ${hexToRGBAlpha(dangerColor, 0.28)}, 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px ${hexToRGBAlpha(dangerColor, 0.2)}`
  3769. };
  3770. const roseBoxShadow = {
  3771. boxShadow: `0 4px 20px 0px ${hexToRGBAlpha("#000", 0.14)}, 0 7px 10px -5px ${hexToRGBAlpha(roseColor, 0.4)}`
  3772. };
  3773. const warningCardHeader = _objectSpread({
  3774. color: "#fff",
  3775. background: "linear-gradient(60deg, #ffa726, #fb8c00)"
  3776. }, warningBoxShadow);
  3777. const successCardHeader = _objectSpread({
  3778. color: "#fff",
  3779. background: "linear-gradient(60deg, #66bb6a, #43a047)"
  3780. }, successBoxShadow);
  3781. const dangerCardHeader = _objectSpread({
  3782. color: "#fff",
  3783. background: "linear-gradient(60deg, #ef5350, #e53935)"
  3784. }, dangerBoxShadow);
  3785. const infoCardHeader = _objectSpread({
  3786. color: "#fff",
  3787. background: "linear-gradient(60deg, #26c6da, #00acc1)"
  3788. }, infoBoxShadow);
  3789. const primaryCardHeader = _objectSpread({
  3790. color: "#fff",
  3791. background: "linear-gradient(60deg, #ab47bc, #8e24aa)"
  3792. }, primaryBoxShadow);
  3793. const roseCardHeader = _objectSpread({
  3794. color: "#fff",
  3795. background: "linear-gradient(60deg, #ec407a, #d81b60)"
  3796. }, roseBoxShadow);
  3797. const cardActions = _objectSpread({
  3798. margin: "0 20px 10px",
  3799. paddingTop: "10px",
  3800. borderTop: "1px solid #eeeeee",
  3801. height: "auto"
  3802. }, defaultFont);
  3803. const cardHeader = {
  3804. margin: "-30px 15px 0",
  3805. borderRadius: "3px",
  3806. padding: "15px"
  3807. };
  3808. const defaultBoxShadow = {
  3809. border: "0",
  3810. borderRadius: "3px",
  3811. boxShadow: "0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2)",
  3812. padding: "10px 0",
  3813. transition: "all 150ms ease 0s"
  3814. };
  3815. const title = {
  3816. color: "#3C4858",
  3817. margin: "1.75rem 0 0.875rem",
  3818. textDecoration: "none",
  3819. fontWeight: "700",
  3820. fontFamily: `"Roboto Slab", "Times New Roman", serif`
  3821. };
  3822. const cardTitle = _objectSpread({}, title, {
  3823. marginTop: ".625rem"
  3824. });
  3825. const cardLink = {
  3826. "& + $cardLink": {
  3827. marginLeft: "1.25rem"
  3828. }
  3829. };
  3830. const cardSubtitle = {
  3831. marginBottom: "0",
  3832. marginTop: "-.375rem"
  3833. };
  3834. /***/ }),
  3835. /***/ "elyg":
  3836. /***/ (function(module, exports, __webpack_require__) {
  3837. "use strict";
  3838. var __importDefault = this && this.__importDefault || function (mod) {
  3839. return mod && mod.__esModule ? mod : {
  3840. "default": mod
  3841. };
  3842. };
  3843. Object.defineProperty(exports, "__esModule", {
  3844. value: true
  3845. });
  3846. const url_1 = __webpack_require__("bzos");
  3847. const mitt_1 = __importDefault(__webpack_require__("dZ6Y"));
  3848. const utils_1 = __webpack_require__("g/15");
  3849. const is_dynamic_1 = __webpack_require__("/jkW");
  3850. const route_matcher_1 = __webpack_require__("gguc");
  3851. const route_regex_1 = __webpack_require__("YTqd");
  3852. const basePath = false || '';
  3853. function addBasePath(path) {
  3854. return path.indexOf(basePath) !== 0 ? basePath + path : path;
  3855. }
  3856. exports.addBasePath = addBasePath;
  3857. function delBasePath(path) {
  3858. return path.indexOf(basePath) === 0 ? path.substr(basePath.length) || '/' : path;
  3859. }
  3860. exports.delBasePath = delBasePath;
  3861. function toRoute(path) {
  3862. return path.replace(/\/$/, '') || '/';
  3863. }
  3864. const prepareRoute = path => toRoute(!path || path === '/' ? '/index' : path);
  3865. function fetchNextData(pathname, query, isServerRender, cb) {
  3866. let attempts = isServerRender ? 3 : 1;
  3867. function getResponse() {
  3868. return fetch(utils_1.formatWithValidation({
  3869. pathname: addBasePath( // @ts-ignore __NEXT_DATA__
  3870. `/_next/data/${__NEXT_DATA__.buildId}${delBasePath(pathname)}.json`),
  3871. query
  3872. }), {
  3873. // Cookies are required to be present for Next.js' SSG "Preview Mode".
  3874. // Cookies may also be required for `getServerSideProps`.
  3875. //
  3876. // > `fetch` won’t send cookies, unless you set the credentials init
  3877. // > option.
  3878. // https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
  3879. //
  3880. // > For maximum browser compatibility when it comes to sending &
  3881. // > receiving cookies, always supply the `credentials: 'same-origin'`
  3882. // > option instead of relying on the default.
  3883. // https://github.com/github/fetch#caveats
  3884. credentials: 'same-origin'
  3885. }).then(res => {
  3886. if (!res.ok) {
  3887. if (--attempts > 0 && res.status >= 500) {
  3888. return getResponse();
  3889. }
  3890. throw new Error(`Failed to load static props`);
  3891. }
  3892. return res.json();
  3893. });
  3894. }
  3895. return getResponse().then(data => {
  3896. return cb ? cb(data) : data;
  3897. }).catch(err => {
  3898. // We should only trigger a server-side transition if this was caused
  3899. // on a client-side transition. Otherwise, we'd get into an infinite
  3900. // loop.
  3901. if (!isServerRender) {
  3902. ;
  3903. err.code = 'PAGE_LOAD_ERROR';
  3904. }
  3905. throw err;
  3906. });
  3907. }
  3908. class Router {
  3909. constructor(pathname, query, as, {
  3910. initialProps,
  3911. pageLoader,
  3912. App,
  3913. wrapApp,
  3914. Component,
  3915. err,
  3916. subscription,
  3917. isFallback
  3918. }) {
  3919. // Static Data Cache
  3920. this.sdc = {};
  3921. this.onPopState = e => {
  3922. if (!e.state) {
  3923. // We get state as undefined for two reasons.
  3924. // 1. With older safari (< 8) and older chrome (< 34)
  3925. // 2. When the URL changed with #
  3926. //
  3927. // In the both cases, we don't need to proceed and change the route.
  3928. // (as it's already changed)
  3929. // But we can simply replace the state with the new changes.
  3930. // Actually, for (1) we don't need to nothing. But it's hard to detect that event.
  3931. // So, doing the following for (1) does no harm.
  3932. const {
  3933. pathname,
  3934. query
  3935. } = this;
  3936. this.changeState('replaceState', utils_1.formatWithValidation({
  3937. pathname,
  3938. query
  3939. }), utils_1.getURL());
  3940. return;
  3941. } // Make sure we don't re-render on initial load,
  3942. // can be caused by navigating back from an external site
  3943. if (e.state && this.isSsr && e.state.as === this.asPath && url_1.parse(e.state.url).pathname === this.pathname) {
  3944. return;
  3945. } // If the downstream application returns falsy, return.
  3946. // They will then be responsible for handling the event.
  3947. if (this._bps && !this._bps(e.state)) {
  3948. return;
  3949. }
  3950. const {
  3951. url,
  3952. as,
  3953. options
  3954. } = e.state;
  3955. if (false) {}
  3956. this.replace(url, as, options);
  3957. };
  3958. this._getStaticData = asPath => {
  3959. const pathname = prepareRoute(url_1.parse(asPath).pathname);
  3960. return true && this.sdc[pathname] ? Promise.resolve(this.sdc[pathname]) : fetchNextData(pathname, null, this.isSsr, data => this.sdc[pathname] = data);
  3961. };
  3962. this._getServerData = asPath => {
  3963. let {
  3964. pathname,
  3965. query
  3966. } = url_1.parse(asPath, true);
  3967. pathname = prepareRoute(pathname);
  3968. return fetchNextData(pathname, query, this.isSsr);
  3969. }; // represents the current component key
  3970. this.route = toRoute(pathname); // set up the component cache (by route keys)
  3971. this.components = {}; // We should not keep the cache, if there's an error
  3972. // Otherwise, this cause issues when when going back and
  3973. // come again to the errored page.
  3974. if (pathname !== '/_error') {
  3975. this.components[this.route] = {
  3976. Component,
  3977. props: initialProps,
  3978. err,
  3979. __N_SSG: initialProps && initialProps.__N_SSG,
  3980. __N_SSP: initialProps && initialProps.__N_SSP
  3981. };
  3982. }
  3983. this.components['/_app'] = {
  3984. Component: App
  3985. }; // Backwards compat for Router.router.events
  3986. // TODO: Should be remove the following major version as it was never documented
  3987. this.events = Router.events;
  3988. this.pageLoader = pageLoader;
  3989. this.pathname = pathname;
  3990. this.query = query; // if auto prerendered and dynamic route wait to update asPath
  3991. // until after mount to prevent hydration mismatch
  3992. this.asPath = // @ts-ignore this is temporarily global (attached to window)
  3993. is_dynamic_1.isDynamicRoute(pathname) && __NEXT_DATA__.autoExport ? pathname : as;
  3994. this.basePath = basePath;
  3995. this.sub = subscription;
  3996. this.clc = null;
  3997. this._wrapApp = wrapApp; // make sure to ignore extra popState in safari on navigating
  3998. // back from external site
  3999. this.isSsr = true;
  4000. this.isFallback = isFallback;
  4001. if (false) {}
  4002. } // @deprecated backwards compatibility even though it's a private method.
  4003. static _rewriteUrlForNextExport(url) {
  4004. if (false) {} else {
  4005. return url;
  4006. }
  4007. }
  4008. update(route, mod) {
  4009. const Component = mod.default || mod;
  4010. const data = this.components[route];
  4011. if (!data) {
  4012. throw new Error(`Cannot update unavailable route: ${route}`);
  4013. }
  4014. const newData = Object.assign(Object.assign({}, data), {
  4015. Component,
  4016. __N_SSG: mod.__N_SSG,
  4017. __N_SSP: mod.__N_SSP
  4018. });
  4019. this.components[route] = newData; // pages/_app.js updated
  4020. if (route === '/_app') {
  4021. this.notify(this.components[this.route]);
  4022. return;
  4023. }
  4024. if (route === this.route) {
  4025. this.notify(newData);
  4026. }
  4027. }
  4028. reload() {
  4029. window.location.reload();
  4030. }
  4031. /**
  4032. * Go back in history
  4033. */
  4034. back() {
  4035. window.history.back();
  4036. }
  4037. /**
  4038. * Performs a `pushState` with arguments
  4039. * @param url of the route
  4040. * @param as masks `url` for the browser
  4041. * @param options object you can define `shallow` and other options
  4042. */
  4043. push(url, as = url, options = {}) {
  4044. return this.change('pushState', url, as, options);
  4045. }
  4046. /**
  4047. * Performs a `replaceState` with arguments
  4048. * @param url of the route
  4049. * @param as masks `url` for the browser
  4050. * @param options object you can define `shallow` and other options
  4051. */
  4052. replace(url, as = url, options = {}) {
  4053. return this.change('replaceState', url, as, options);
  4054. }
  4055. change(method, _url, _as, options) {
  4056. return new Promise((resolve, reject) => {
  4057. if (!options._h) {
  4058. this.isSsr = false;
  4059. } // marking route changes as a navigation start entry
  4060. if (utils_1.ST) {
  4061. performance.mark('routeChange');
  4062. } // If url and as provided as an object representation,
  4063. // we'll format them into the string version here.
  4064. let url = typeof _url === 'object' ? utils_1.formatWithValidation(_url) : _url;
  4065. let as = typeof _as === 'object' ? utils_1.formatWithValidation(_as) : _as;
  4066. url = addBasePath(url);
  4067. as = addBasePath(as); // Add the ending slash to the paths. So, we can serve the
  4068. // "<page>/index.html" directly for the SSR page.
  4069. if (false) {}
  4070. this.abortComponentLoad(as); // If the url change is only related to a hash change
  4071. // We should not proceed. We should only change the state.
  4072. // WARNING: `_h` is an internal option for handing Next.js client-side
  4073. // hydration. Your app should _never_ use this property. It may change at
  4074. // any time without notice.
  4075. if (!options._h && this.onlyAHashChange(as)) {
  4076. this.asPath = as;
  4077. Router.events.emit('hashChangeStart', as);
  4078. this.changeState(method, url, as, options);
  4079. this.scrollToHash(as);
  4080. Router.events.emit('hashChangeComplete', as);
  4081. return resolve(true);
  4082. }
  4083. const {
  4084. pathname,
  4085. query,
  4086. protocol
  4087. } = url_1.parse(url, true);
  4088. if (!pathname || protocol) {
  4089. if (false) {}
  4090. return resolve(false);
  4091. } // If asked to change the current URL we should reload the current page
  4092. // (not location.reload() but reload getInitialProps and other Next.js stuffs)
  4093. // We also need to set the method = replaceState always
  4094. // as this should not go into the history (That's how browsers work)
  4095. // We should compare the new asPath to the current asPath, not the url
  4096. if (!this.urlIsNew(as)) {
  4097. method = 'replaceState';
  4098. }
  4099. const route = toRoute(pathname);
  4100. const {
  4101. shallow = false
  4102. } = options;
  4103. if (is_dynamic_1.isDynamicRoute(route)) {
  4104. const {
  4105. pathname: asPathname
  4106. } = url_1.parse(as);
  4107. const routeRegex = route_regex_1.getRouteRegex(route);
  4108. const routeMatch = route_matcher_1.getRouteMatcher(routeRegex)(asPathname);
  4109. if (!routeMatch) {
  4110. const missingParams = Object.keys(routeRegex.groups).filter(param => !query[param]);
  4111. if (missingParams.length > 0) {
  4112. if (false) {}
  4113. return reject(new Error(`The provided \`as\` value (${asPathname}) is incompatible with the \`href\` value (${route}). ` + `Read more: https://err.sh/zeit/next.js/incompatible-href-as`));
  4114. }
  4115. } else {
  4116. // Merge params into `query`, overwriting any specified in search
  4117. Object.assign(query, routeMatch);
  4118. }
  4119. }
  4120. Router.events.emit('routeChangeStart', as); // If shallow is true and the route exists in the router cache we reuse the previous result
  4121. this.getRouteInfo(route, pathname, query, as, shallow).then(routeInfo => {
  4122. const {
  4123. error
  4124. } = routeInfo;
  4125. if (error && error.cancelled) {
  4126. return resolve(false);
  4127. }
  4128. Router.events.emit('beforeHistoryChange', as);
  4129. this.changeState(method, url, as, options);
  4130. if (false) {}
  4131. this.set(route, pathname, query, as, routeInfo);
  4132. if (error) {
  4133. Router.events.emit('routeChangeError', error, as);
  4134. throw error;
  4135. }
  4136. Router.events.emit('routeChangeComplete', as);
  4137. return resolve(true);
  4138. }, reject);
  4139. });
  4140. }
  4141. changeState(method, url, as, options = {}) {
  4142. if (false) {}
  4143. if (method !== 'pushState' || utils_1.getURL() !== as) {
  4144. window.history[method]({
  4145. url,
  4146. as,
  4147. options
  4148. }, // Most browsers currently ignores this parameter, although they may use it in the future.
  4149. // Passing the empty string here should be safe against future changes to the method.
  4150. // https://developer.mozilla.org/en-US/docs/Web/API/History/replaceState
  4151. '', as);
  4152. }
  4153. }
  4154. getRouteInfo(route, pathname, query, as, shallow = false) {
  4155. const cachedRouteInfo = this.components[route]; // If there is a shallow route transition possible
  4156. // If the route is already rendered on the screen.
  4157. if (shallow && cachedRouteInfo && this.route === route) {
  4158. return Promise.resolve(cachedRouteInfo);
  4159. }
  4160. const handleError = (err, loadErrorFail) => {
  4161. return new Promise(resolve => {
  4162. if (err.code === 'PAGE_LOAD_ERROR' || loadErrorFail) {
  4163. // If we can't load the page it could be one of following reasons
  4164. // 1. Page doesn't exists
  4165. // 2. Page does exist in a different zone
  4166. // 3. Internal error while loading the page
  4167. // So, doing a hard reload is the proper way to deal with this.
  4168. window.location.href = as; // Changing the URL doesn't block executing the current code path.
  4169. // So, we need to mark it as a cancelled error and stop the routing logic.
  4170. err.cancelled = true; // @ts-ignore TODO: fix the control flow here
  4171. return resolve({
  4172. error: err
  4173. });
  4174. }
  4175. if (err.cancelled) {
  4176. // @ts-ignore TODO: fix the control flow here
  4177. return resolve({
  4178. error: err
  4179. });
  4180. }
  4181. resolve(this.fetchComponent('/_error').then(res => {
  4182. const {
  4183. page: Component
  4184. } = res;
  4185. const routeInfo = {
  4186. Component,
  4187. err
  4188. };
  4189. return new Promise(resolve => {
  4190. this.getInitialProps(Component, {
  4191. err,
  4192. pathname,
  4193. query
  4194. }).then(props => {
  4195. routeInfo.props = props;
  4196. routeInfo.error = err;
  4197. resolve(routeInfo);
  4198. }, gipErr => {
  4199. console.error('Error in error page `getInitialProps`: ', gipErr);
  4200. routeInfo.error = err;
  4201. routeInfo.props = {};
  4202. resolve(routeInfo);
  4203. });
  4204. });
  4205. }).catch(err => handleError(err, true)));
  4206. });
  4207. };
  4208. return new Promise((resolve, reject) => {
  4209. if (cachedRouteInfo) {
  4210. return resolve(cachedRouteInfo);
  4211. }
  4212. this.fetchComponent(route).then(res => resolve({
  4213. Component: res.page,
  4214. __N_SSG: res.mod.__N_SSG,
  4215. __N_SSP: res.mod.__N_SSP
  4216. }), reject);
  4217. }).then(routeInfo => {
  4218. const {
  4219. Component,
  4220. __N_SSG,
  4221. __N_SSP
  4222. } = routeInfo;
  4223. if (false) {}
  4224. return this._getData(() => __N_SSG ? this._getStaticData(as) : __N_SSP ? this._getServerData(as) : this.getInitialProps(Component, // we provide AppTree later so this needs to be `any`
  4225. {
  4226. pathname,
  4227. query,
  4228. asPath: as
  4229. })).then(props => {
  4230. routeInfo.props = props;
  4231. this.components[route] = routeInfo;
  4232. return routeInfo;
  4233. });
  4234. }).catch(handleError);
  4235. }
  4236. set(route, pathname, query, as, data) {
  4237. this.isFallback = false;
  4238. this.route = route;
  4239. this.pathname = pathname;
  4240. this.query = query;
  4241. this.asPath = as;
  4242. this.notify(data);
  4243. }
  4244. /**
  4245. * Callback to execute before replacing router state
  4246. * @param cb callback to be executed
  4247. */
  4248. beforePopState(cb) {
  4249. this._bps = cb;
  4250. }
  4251. onlyAHashChange(as) {
  4252. if (!this.asPath) return false;
  4253. const [oldUrlNoHash, oldHash] = this.asPath.split('#');
  4254. const [newUrlNoHash, newHash] = as.split('#'); // Makes sure we scroll to the provided hash if the url/hash are the same
  4255. if (newHash && oldUrlNoHash === newUrlNoHash && oldHash === newHash) {
  4256. return true;
  4257. } // If the urls are change, there's more than a hash change
  4258. if (oldUrlNoHash !== newUrlNoHash) {
  4259. return false;
  4260. } // If the hash has changed, then it's a hash only change.
  4261. // This check is necessary to handle both the enter and
  4262. // leave hash === '' cases. The identity case falls through
  4263. // and is treated as a next reload.
  4264. return oldHash !== newHash;
  4265. }
  4266. scrollToHash(as) {
  4267. const [, hash] = as.split('#'); // Scroll to top if the hash is just `#` with no value
  4268. if (hash === '') {
  4269. window.scrollTo(0, 0);
  4270. return;
  4271. } // First we check if the element by id is found
  4272. const idEl = document.getElementById(hash);
  4273. if (idEl) {
  4274. idEl.scrollIntoView();
  4275. return;
  4276. } // If there's no element with the id, we check the `name` property
  4277. // To mirror browsers
  4278. const nameEl = document.getElementsByName(hash)[0];
  4279. if (nameEl) {
  4280. nameEl.scrollIntoView();
  4281. }
  4282. }
  4283. urlIsNew(asPath) {
  4284. return this.asPath !== asPath;
  4285. }
  4286. /**
  4287. * Prefetch page code, you may wait for the data during page rendering.
  4288. * This feature only works in production!
  4289. * @param url the href of prefetched page
  4290. * @param asPath the as path of the prefetched page
  4291. */
  4292. prefetch(url, asPath = url, options = {}) {
  4293. return new Promise((resolve, reject) => {
  4294. const {
  4295. pathname,
  4296. protocol
  4297. } = url_1.parse(url);
  4298. if (!pathname || protocol) {
  4299. if (false) {}
  4300. return;
  4301. } // Prefetch is not supported in development mode because it would trigger on-demand-entries
  4302. if (false) {}
  4303. const route = delBasePath(toRoute(pathname));
  4304. Promise.all([this.pageLoader.prefetchData(url, delBasePath(asPath)), this.pageLoader[options.priority ? 'loadPage' : 'prefetch'](route)]).then(() => resolve(), reject);
  4305. });
  4306. }
  4307. async fetchComponent(route) {
  4308. let cancelled = false;
  4309. const cancel = this.clc = () => {
  4310. cancelled = true;
  4311. };
  4312. route = delBasePath(route);
  4313. const componentResult = await this.pageLoader.loadPage(route);
  4314. if (cancelled) {
  4315. const error = new Error(`Abort fetching component for route: "${route}"`);
  4316. error.cancelled = true;
  4317. throw error;
  4318. }
  4319. if (cancel === this.clc) {
  4320. this.clc = null;
  4321. }
  4322. return componentResult;
  4323. }
  4324. _getData(fn) {
  4325. let cancelled = false;
  4326. const cancel = () => {
  4327. cancelled = true;
  4328. };
  4329. this.clc = cancel;
  4330. return fn().then(data => {
  4331. if (cancel === this.clc) {
  4332. this.clc = null;
  4333. }
  4334. if (cancelled) {
  4335. const err = new Error('Loading initial props cancelled');
  4336. err.cancelled = true;
  4337. throw err;
  4338. }
  4339. return data;
  4340. });
  4341. }
  4342. getInitialProps(Component, ctx) {
  4343. const {
  4344. Component: App
  4345. } = this.components['/_app'];
  4346. const AppTree = this._wrapApp(App);
  4347. ctx.AppTree = AppTree;
  4348. return utils_1.loadGetInitialProps(App, {
  4349. AppTree,
  4350. Component,
  4351. router: this,
  4352. ctx
  4353. });
  4354. }
  4355. abortComponentLoad(as) {
  4356. if (this.clc) {
  4357. const e = new Error('Route Cancelled');
  4358. e.cancelled = true;
  4359. Router.events.emit('routeChangeError', e, as);
  4360. this.clc();
  4361. this.clc = null;
  4362. }
  4363. }
  4364. notify(data) {
  4365. this.sub(data, this.components['/_app'].Component);
  4366. }
  4367. }
  4368. exports.default = Router;
  4369. Router.events = mitt_1.default();
  4370. /***/ }),
  4371. /***/ "ewzQ":
  4372. /***/ (function(module, exports) {
  4373. module.exports = "/_next/static/images/2-883c0ed9f505081bc9246d928503795b.jpg";
  4374. /***/ }),
  4375. /***/ "fJ1K":
  4376. /***/ (function(module, exports) {
  4377. module.exports = "/_next/static/images/6-24ee064ef936c6b1b67e7d45d295f85b.jpg";
  4378. /***/ }),
  4379. /***/ "g/15":
  4380. /***/ (function(module, exports, __webpack_require__) {
  4381. "use strict";
  4382. Object.defineProperty(exports, "__esModule", {
  4383. value: true
  4384. });
  4385. const url_1 = __webpack_require__("bzos");
  4386. /**
  4387. * Utils
  4388. */
  4389. function execOnce(fn) {
  4390. let used = false;
  4391. let result;
  4392. return (...args) => {
  4393. if (!used) {
  4394. used = true;
  4395. result = fn(...args);
  4396. }
  4397. return result;
  4398. };
  4399. }
  4400. exports.execOnce = execOnce;
  4401. function getLocationOrigin() {
  4402. const {
  4403. protocol,
  4404. hostname,
  4405. port
  4406. } = window.location;
  4407. return `${protocol}//${hostname}${port ? ':' + port : ''}`;
  4408. }
  4409. exports.getLocationOrigin = getLocationOrigin;
  4410. function getURL() {
  4411. const {
  4412. href
  4413. } = window.location;
  4414. const origin = getLocationOrigin();
  4415. return href.substring(origin.length);
  4416. }
  4417. exports.getURL = getURL;
  4418. function getDisplayName(Component) {
  4419. return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown';
  4420. }
  4421. exports.getDisplayName = getDisplayName;
  4422. function isResSent(res) {
  4423. return res.finished || res.headersSent;
  4424. }
  4425. exports.isResSent = isResSent;
  4426. async function loadGetInitialProps(App, ctx) {
  4427. var _a;
  4428. if (false) {} // when called from _app `ctx` is nested in `ctx`
  4429. const res = ctx.res || ctx.ctx && ctx.ctx.res;
  4430. if (!App.getInitialProps) {
  4431. if (ctx.ctx && ctx.Component) {
  4432. // @ts-ignore pageProps default
  4433. return {
  4434. pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx)
  4435. };
  4436. }
  4437. return {};
  4438. }
  4439. const props = await App.getInitialProps(ctx);
  4440. if (res && isResSent(res)) {
  4441. return props;
  4442. }
  4443. if (!props) {
  4444. const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`;
  4445. throw new Error(message);
  4446. }
  4447. if (false) {}
  4448. return props;
  4449. }
  4450. exports.loadGetInitialProps = loadGetInitialProps;
  4451. exports.urlObjectKeys = ['auth', 'hash', 'host', 'hostname', 'href', 'path', 'pathname', 'port', 'protocol', 'query', 'search', 'slashes'];
  4452. function formatWithValidation(url, options) {
  4453. if (false) {}
  4454. return url_1.format(url, options);
  4455. }
  4456. exports.formatWithValidation = formatWithValidation;
  4457. exports.SP = typeof performance !== 'undefined';
  4458. exports.ST = exports.SP && typeof performance.mark === 'function' && typeof performance.measure === 'function';
  4459. /***/ }),
  4460. /***/ "gguc":
  4461. /***/ (function(module, exports, __webpack_require__) {
  4462. "use strict";
  4463. Object.defineProperty(exports, "__esModule", {
  4464. value: true
  4465. });
  4466. function getRouteMatcher(routeRegex) {
  4467. const {
  4468. re,
  4469. groups
  4470. } = routeRegex;
  4471. return pathname => {
  4472. const routeMatch = re.exec(pathname);
  4473. if (!routeMatch) {
  4474. return false;
  4475. }
  4476. const decode = param => {
  4477. try {
  4478. return decodeURIComponent(param);
  4479. } catch (_) {
  4480. const err = new Error('failed to decode param');
  4481. err.code = 'DECODE_FAILED';
  4482. throw err;
  4483. }
  4484. };
  4485. const params = {};
  4486. Object.keys(groups).forEach(slugName => {
  4487. const g = groups[slugName];
  4488. const m = routeMatch[g.pos];
  4489. if (m !== undefined) {
  4490. params[slugName] = ~m.indexOf('/') ? m.split('/').map(entry => decode(entry)) : g.repeat ? [decode(m)] : decode(m);
  4491. }
  4492. });
  4493. return params;
  4494. };
  4495. }
  4496. exports.getRouteMatcher = getRouteMatcher;
  4497. /***/ }),
  4498. /***/ "gpfI":
  4499. /***/ (function(module, exports) {
  4500. module.exports = "/_next/static/images/White-bd6f0737533faa5691f72c5d9b00aeb6.png";
  4501. /***/ }),
  4502. /***/ "i4t8":
  4503. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4504. "use strict";
  4505. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return GridItem; });
  4506. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
  4507. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
  4508. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("9Pu4");
  4509. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__);
  4510. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("JQ2V");
  4511. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__);
  4512. var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement;
  4513. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  4514. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  4515. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  4516. // nodejs library to set properties for components
  4517. // @material-ui/core components
  4518. const styles = {
  4519. grid: {
  4520. position: "relative",
  4521. width: "100%",
  4522. minHeight: "1px",
  4523. paddingRight: "15px",
  4524. paddingLeft: "15px",
  4525. flexBasis: "auto"
  4526. }
  4527. };
  4528. const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__["makeStyles"])(styles);
  4529. function GridItem(props) {
  4530. const classes = useStyles();
  4531. const {
  4532. children,
  4533. className
  4534. } = props,
  4535. rest = _objectWithoutProperties(props, ["children", "className"]);
  4536. return __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default.a, _extends({
  4537. item: true
  4538. }, rest, {
  4539. className: classes.grid + " " + className
  4540. }), children);
  4541. }
  4542. GridItem.defaultProps = {
  4543. className: ""
  4544. };
  4545. /***/ }),
  4546. /***/ "jD8W":
  4547. /***/ (function(module, exports) {
  4548. module.exports = require("@material-ui/core/Popper");
  4549. /***/ }),
  4550. /***/ "kYf9":
  4551. /***/ (function(module, exports) {
  4552. module.exports = require("next/dist/next-server/lib/utils.js");
  4553. /***/ }),
  4554. /***/ "lWoh":
  4555. /***/ (function(module, exports) {
  4556. module.exports = require("@material-ui/core/FormControl");
  4557. /***/ }),
  4558. /***/ "mf1M":
  4559. /***/ (function(module, exports) {
  4560. module.exports = require("@material-ui/core/Grow");
  4561. /***/ }),
  4562. /***/ "mtPR":
  4563. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4564. "use strict";
  4565. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return GridContainer; });
  4566. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
  4567. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
  4568. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("9Pu4");
  4569. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__);
  4570. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("JQ2V");
  4571. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__);
  4572. var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement;
  4573. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  4574. function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
  4575. function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
  4576. // nodejs library to set properties for components
  4577. // @material-ui/core components
  4578. const styles = {
  4579. grid: {
  4580. marginRight: "-15px",
  4581. marginLeft: "-15px",
  4582. width: "auto"
  4583. }
  4584. };
  4585. const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__["makeStyles"])(styles);
  4586. function GridContainer(props) {
  4587. const classes = useStyles();
  4588. const {
  4589. children,
  4590. className
  4591. } = props,
  4592. rest = _objectWithoutProperties(props, ["children", "className"]);
  4593. return __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default.a, _extends({
  4594. container: true
  4595. }, rest, {
  4596. className: classes.grid + " " + className
  4597. }), children);
  4598. }
  4599. GridContainer.defaultProps = {
  4600. className: ""
  4601. };
  4602. /***/ }),
  4603. /***/ "n6U9":
  4604. /***/ (function(module, exports) {
  4605. module.exports = "/_next/static/images/2-ab20be31e4afcad441ac2b169537f96e.jpg";
  4606. /***/ }),
  4607. /***/ "nOHt":
  4608. /***/ (function(module, exports, __webpack_require__) {
  4609. "use strict";
  4610. var _interopRequireWildcard = __webpack_require__("7KCV");
  4611. var _interopRequireDefault = __webpack_require__("AroE");
  4612. exports.__esModule = true;
  4613. exports.useRouter = useRouter;
  4614. exports.makePublicRouterInstance = makePublicRouterInstance;
  4615. exports.createRouter = exports.withRouter = exports.default = void 0;
  4616. var _react = _interopRequireDefault(__webpack_require__("cDcd"));
  4617. var _router2 = _interopRequireWildcard(__webpack_require__("elyg"));
  4618. exports.Router = _router2.default;
  4619. exports.NextRouter = _router2.NextRouter;
  4620. var _routerContext = __webpack_require__("Osoz");
  4621. var _withRouter = _interopRequireDefault(__webpack_require__("0Bsm"));
  4622. exports.withRouter = _withRouter.default;
  4623. /* global window */
  4624. var singletonRouter = {
  4625. router: null,
  4626. // holds the actual router instance
  4627. readyCallbacks: [],
  4628. ready(cb) {
  4629. if (this.router) return cb();
  4630. if (false) {}
  4631. }
  4632. }; // Create public properties and methods of the router in the singletonRouter
  4633. var urlPropertyFields = ['pathname', 'route', 'query', 'asPath', 'components', 'isFallback', 'basePath'];
  4634. var routerEvents = ['routeChangeStart', 'beforeHistoryChange', 'routeChangeComplete', 'routeChangeError', 'hashChangeStart', 'hashChangeComplete'];
  4635. var coreMethodFields = ['push', 'replace', 'reload', 'back', 'prefetch', 'beforePopState']; // Events is a static property on the router, the router doesn't have to be initialized to use it
  4636. Object.defineProperty(singletonRouter, 'events', {
  4637. get() {
  4638. return _router2.default.events;
  4639. }
  4640. });
  4641. urlPropertyFields.forEach(field => {
  4642. // Here we need to use Object.defineProperty because, we need to return
  4643. // the property assigned to the actual router
  4644. // The value might get changed as we change routes and this is the
  4645. // proper way to access it
  4646. Object.defineProperty(singletonRouter, field, {
  4647. get() {
  4648. var router = getRouter();
  4649. return router[field];
  4650. }
  4651. });
  4652. });
  4653. coreMethodFields.forEach(field => {
  4654. // We don't really know the types here, so we add them later instead
  4655. ;
  4656. singletonRouter[field] = function () {
  4657. var router = getRouter();
  4658. return router[field](...arguments);
  4659. };
  4660. });
  4661. routerEvents.forEach(event => {
  4662. singletonRouter.ready(() => {
  4663. _router2.default.events.on(event, function () {
  4664. var eventField = "on" + event.charAt(0).toUpperCase() + event.substring(1);
  4665. var _singletonRouter = singletonRouter;
  4666. if (_singletonRouter[eventField]) {
  4667. try {
  4668. _singletonRouter[eventField](...arguments);
  4669. } catch (err) {
  4670. // tslint:disable-next-line:no-console
  4671. console.error("Error when running the Router event: " + eventField); // tslint:disable-next-line:no-console
  4672. console.error(err.message + "\n" + err.stack);
  4673. }
  4674. }
  4675. });
  4676. });
  4677. });
  4678. function getRouter() {
  4679. if (!singletonRouter.router) {
  4680. var message = 'No router instance found.\n' + 'You should only use "next/router" inside the client side of your app.\n';
  4681. throw new Error(message);
  4682. }
  4683. return singletonRouter.router;
  4684. } // Export the singletonRouter and this is the public API.
  4685. var _default = singletonRouter; // Reexport the withRoute HOC
  4686. exports.default = _default;
  4687. function useRouter() {
  4688. return _react.default.useContext(_routerContext.RouterContext);
  4689. } // INTERNAL APIS
  4690. // -------------
  4691. // (do not use following exports inside the app)
  4692. // Create a router and assign it as the singleton instance.
  4693. // This is used in client side when we are initilizing the app.
  4694. // This should **not** use inside the server.
  4695. var createRouter = function createRouter() {
  4696. for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
  4697. args[_key] = arguments[_key];
  4698. }
  4699. singletonRouter.router = new _router2.default(...args);
  4700. singletonRouter.readyCallbacks.forEach(cb => cb());
  4701. singletonRouter.readyCallbacks = [];
  4702. return singletonRouter.router;
  4703. }; // This function is used to create the `withRouter` router instance
  4704. exports.createRouter = createRouter;
  4705. function makePublicRouterInstance(router) {
  4706. var _router = router;
  4707. var instance = {};
  4708. for (var property of urlPropertyFields) {
  4709. if (typeof _router[property] === 'object') {
  4710. instance[property] = Object.assign({}, _router[property]); // makes sure query is not stateful
  4711. continue;
  4712. }
  4713. instance[property] = _router[property];
  4714. } // Events is a static property on the router, the router doesn't have to be initialized to use it
  4715. instance.events = _router2.default.events;
  4716. coreMethodFields.forEach(field => {
  4717. instance[field] = function () {
  4718. return _router[field](...arguments);
  4719. };
  4720. });
  4721. return instance;
  4722. }
  4723. /***/ }),
  4724. /***/ "nybW":
  4725. /***/ (function(module, exports) {
  4726. module.exports = require("@material-ui/core/Divider");
  4727. /***/ }),
  4728. /***/ "oLCs":
  4729. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4730. "use strict";
  4731. /* harmony import */ var assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("eDSW");
  4732. const footerStyle = {
  4733. block: {
  4734. color: "inherit",
  4735. padding: "0.9375rem",
  4736. fontWeight: "500",
  4737. fontSize: "12px",
  4738. textTransform: "uppercase",
  4739. borderRadius: "3px",
  4740. textDecoration: "none",
  4741. position: "relative",
  4742. display: "block"
  4743. },
  4744. left: {
  4745. float: "left!important",
  4746. display: "block"
  4747. },
  4748. right: {
  4749. padding: "15px 0",
  4750. margin: "0",
  4751. float: "right!important"
  4752. },
  4753. footer: {
  4754. padding: "0.9375rem 0",
  4755. textAlign: "center",
  4756. display: "flex",
  4757. zIndex: "2",
  4758. position: "relative"
  4759. },
  4760. a: {
  4761. color: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* primaryColor */ "p"],
  4762. textDecoration: "none",
  4763. backgroundColor: "transparent"
  4764. },
  4765. footerWhiteFont: {
  4766. "&,&:hover,&:focus": {
  4767. color: "#FFFFFF"
  4768. }
  4769. },
  4770. container: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* container */ "c"],
  4771. list: {
  4772. marginBottom: "0",
  4773. padding: "0",
  4774. marginTop: "0"
  4775. },
  4776. inlineBlock: {
  4777. display: "inline-block",
  4778. padding: "0px",
  4779. width: "auto"
  4780. },
  4781. icon: {
  4782. width: "18px",
  4783. height: "18px",
  4784. position: "relative",
  4785. top: "3px"
  4786. }
  4787. };
  4788. /* harmony default export */ __webpack_exports__["a"] = (footerStyle);
  4789. /***/ }),
  4790. /***/ "ofq5":
  4791. /***/ (function(module, exports) {
  4792. module.exports = "data:image/png;base64,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"
  4793. /***/ }),
  4794. /***/ "ovCH":
  4795. /***/ (function(module, exports) {
  4796. module.exports = "/_next/static/images/mercedes-c2591bdca51257e093117df5d9cb2251.jpg";
  4797. /***/ }),
  4798. /***/ "pvnu":
  4799. /***/ (function(module, exports) {
  4800. module.exports = "/_next/static/images/3-cae9f8fb134b2a45b8b4be4cd7698c15.jpg";
  4801. /***/ }),
  4802. /***/ "ql2e":
  4803. /***/ (function(module, exports) {
  4804. module.exports = "data:image/png;base64,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"
  4805. /***/ }),
  4806. /***/ "qsPe":
  4807. /***/ (function(module, exports) {
  4808. module.exports = "data:image/png;base64,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"
  4809. /***/ }),
  4810. /***/ "qt1I":
  4811. /***/ (function(module, exports) {
  4812. module.exports = require("@material-ui/core/Paper");
  4813. /***/ }),
  4814. /***/ "skcn":
  4815. /***/ (function(module, exports) {
  4816. module.exports = "/_next/static/images/christian-56633ed3f62f39d71f571374a6409e65.jpg";
  4817. /***/ }),
  4818. /***/ "tBFs":
  4819. /***/ (function(module, exports) {
  4820. module.exports = require("@material-ui/core/Input");
  4821. /***/ }),
  4822. /***/ "um8N":
  4823. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4824. "use strict";
  4825. // EXPORTS
  4826. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CustomInput; });
  4827. // EXTERNAL MODULE: external "react"
  4828. var external_react_ = __webpack_require__("cDcd");
  4829. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  4830. // EXTERNAL MODULE: external "classnames"
  4831. var external_classnames_ = __webpack_require__("K2gz");
  4832. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  4833. // EXTERNAL MODULE: external "@material-ui/core/styles"
  4834. var styles_ = __webpack_require__("9Pu4");
  4835. // EXTERNAL MODULE: external "@material-ui/core/FormControl"
  4836. var FormControl_ = __webpack_require__("lWoh");
  4837. var FormControl_default = /*#__PURE__*/__webpack_require__.n(FormControl_);
  4838. // EXTERNAL MODULE: external "@material-ui/core/InputLabel"
  4839. var InputLabel_ = __webpack_require__("zOcm");
  4840. var InputLabel_default = /*#__PURE__*/__webpack_require__.n(InputLabel_);
  4841. // EXTERNAL MODULE: external "@material-ui/core/Input"
  4842. var Input_ = __webpack_require__("tBFs");
  4843. var Input_default = /*#__PURE__*/__webpack_require__.n(Input_);
  4844. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  4845. var nextjs_material_kit = __webpack_require__("eDSW");
  4846. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/customInputStyle.js
  4847. function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
  4848. function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  4849. function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  4850. const customInputStyle = {
  4851. disabled: {
  4852. "&:before": {
  4853. borderColor: "transparent !important"
  4854. }
  4855. },
  4856. underline: {
  4857. "&:hover:not($disabled):before,&:before": {
  4858. borderColor: "#D2D2D2 !important",
  4859. borderWidth: "1px !important"
  4860. },
  4861. "&:after": {
  4862. borderColor: nextjs_material_kit["p" /* primaryColor */]
  4863. }
  4864. },
  4865. underlineError: {
  4866. "&:after": {
  4867. borderColor: nextjs_material_kit["f" /* dangerColor */]
  4868. }
  4869. },
  4870. underlineSuccess: {
  4871. "&:after": {
  4872. borderColor: nextjs_material_kit["u" /* successColor */]
  4873. }
  4874. },
  4875. whiteUnderline: {
  4876. "&:hover:not($disabled):before,&:before": {
  4877. borderColor: "#FFFFFF"
  4878. },
  4879. "&:after": {
  4880. borderColor: "#FFFFFF"
  4881. }
  4882. },
  4883. labelRoot: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  4884. color: "#AAAAAA !important",
  4885. fontWeight: "400",
  4886. fontSize: "14px",
  4887. lineHeight: "1.42857",
  4888. top: "10px",
  4889. letterSpacing: "unset",
  4890. "& + $underline": {
  4891. marginTop: "0px"
  4892. }
  4893. }),
  4894. labelRootError: {
  4895. color: nextjs_material_kit["f" /* dangerColor */] + " !important"
  4896. },
  4897. labelRootSuccess: {
  4898. color: nextjs_material_kit["u" /* successColor */] + " !important"
  4899. },
  4900. formControl: {
  4901. margin: "0 0 17px 0",
  4902. paddingTop: "27px",
  4903. position: "relative",
  4904. "& svg,& .fab,& .far,& .fal,& .fas,& .material-icons": {
  4905. color: "#495057"
  4906. }
  4907. },
  4908. input: {
  4909. color: "#495057",
  4910. height: "unset",
  4911. "&,&::placeholder": {
  4912. fontSize: "14px",
  4913. fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
  4914. fontWeight: "400",
  4915. lineHeight: "1.42857",
  4916. opacity: "1"
  4917. },
  4918. "&::placeholder": {
  4919. color: "#AAAAAA"
  4920. }
  4921. },
  4922. whiteInput: {
  4923. "&,&::placeholder": {
  4924. color: "#FFFFFF",
  4925. opacity: "1"
  4926. }
  4927. }
  4928. };
  4929. /* harmony default export */ var components_customInputStyle = (customInputStyle);
  4930. // CONCATENATED MODULE: ./components/CustomInput/CustomInput.js
  4931. var __jsx = external_react_default.a.createElement;
  4932. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  4933. // nodejs library to set properties for components
  4934. // nodejs library that concatenates classes
  4935. // @material-ui/core components
  4936. const useStyles = Object(styles_["makeStyles"])(components_customInputStyle);
  4937. function CustomInput(props) {
  4938. const classes = useStyles();
  4939. const {
  4940. formControlProps,
  4941. labelText,
  4942. id,
  4943. labelProps,
  4944. inputProps,
  4945. error,
  4946. white,
  4947. inputRootCustomClasses,
  4948. success
  4949. } = props;
  4950. const labelClasses = external_classnames_default()({
  4951. [" " + classes.labelRootError]: error,
  4952. [" " + classes.labelRootSuccess]: success && !error
  4953. });
  4954. const underlineClasses = external_classnames_default()({
  4955. [classes.underlineError]: error,
  4956. [classes.underlineSuccess]: success && !error,
  4957. [classes.underline]: true,
  4958. [classes.whiteUnderline]: white
  4959. });
  4960. const marginTop = external_classnames_default()({
  4961. [inputRootCustomClasses]: inputRootCustomClasses !== undefined
  4962. });
  4963. const inputClasses = external_classnames_default()({
  4964. [classes.input]: true,
  4965. [classes.whiteInput]: white
  4966. });
  4967. var formControlClasses;
  4968. if (formControlProps !== undefined) {
  4969. formControlClasses = external_classnames_default()(formControlProps.className, classes.formControl);
  4970. } else {
  4971. formControlClasses = classes.formControl;
  4972. }
  4973. return __jsx(FormControl_default.a, _extends({}, formControlProps, {
  4974. className: formControlClasses
  4975. }), labelText !== undefined ? __jsx(InputLabel_default.a, _extends({
  4976. className: classes.labelRoot + " " + labelClasses,
  4977. htmlFor: id
  4978. }, labelProps), labelText) : null, __jsx(Input_default.a, _extends({
  4979. classes: {
  4980. input: inputClasses,
  4981. root: marginTop,
  4982. disabled: classes.disabled,
  4983. underline: underlineClasses
  4984. },
  4985. id: id
  4986. }, inputProps)));
  4987. }
  4988. /***/ }),
  4989. /***/ "wmUz":
  4990. /***/ (function(module, exports) {
  4991. module.exports = "/_next/static/images/5-1dc0a4acf30633b290bd8a89fbf578be.jpg";
  4992. /***/ }),
  4993. /***/ "x54t":
  4994. /***/ (function(module, exports) {
  4995. module.exports = require("@material-ui/core/MenuItem");
  4996. /***/ }),
  4997. /***/ "xSce":
  4998. /***/ (function(module, exports) {
  4999. module.exports = "/_next/static/images/bglanding-9aebf1348f857f88e9b34864d33edea5.png";
  5000. /***/ }),
  5001. /***/ "xmQw":
  5002. /***/ (function(module, exports) {
  5003. module.exports = require("@material-ui/core/MenuList");
  5004. /***/ }),
  5005. /***/ "ydEf":
  5006. /***/ (function(module, exports) {
  5007. module.exports = "/_next/static/images/avatar-f1d71f777331fd7e3de116edf4ee3b67.jpg";
  5008. /***/ }),
  5009. /***/ "zOcm":
  5010. /***/ (function(module, exports) {
  5011. module.exports = require("@material-ui/core/InputLabel");
  5012. /***/ })
  5013. /******/ });