You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

5192 lines
171 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 = 26);
  92. /******/ })
  93. /************************************************************************/
  94. /******/ ({
  95. /***/ "+7RK":
  96. /***/ (function(module, exports) {
  97. module.exports = "/_next/static/images/7-febba2e485c57a24241dbdbbe5aa32c9.jpg";
  98. /***/ }),
  99. /***/ "+dZB":
  100. /***/ (function(module, exports) {
  101. module.exports = "/_next/static/images/4-a612c18a5bfd951a464c063076cd742e.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: "100%",
  195. content: '""',
  196. display: "block",
  197. height: "1px",
  198. backgroundColor: "#e5e5e5"
  199. }
  200. }
  201. },
  202. listItemText: {
  203. padding: "0 !important"
  204. },
  205. navLink: {
  206. color: "inherit",
  207. position: "relative",
  208. padding: "0.9375rem",
  209. fontWeight: "400",
  210. fontSize: "12px",
  211. textTransform: "uppercase",
  212. borderRadius: "3px",
  213. lineHeight: "20px",
  214. textDecoration: "none",
  215. margin: "0px",
  216. display: "inline-flex",
  217. "&:hover,&:focus": {
  218. color: "inherit",
  219. background: "rgba(200, 200, 200, 0.2)"
  220. },
  221. [theme.breakpoints.down("sm")]: {
  222. width: "calc(100% - 30px)",
  223. marginLeft: "15px",
  224. marginBottom: "8px",
  225. marginTop: "8px",
  226. textAlign: "left",
  227. "& > span:first-child": {
  228. justifyContent: "flex-start"
  229. }
  230. }
  231. },
  232. notificationNavLink: {
  233. [theme.breakpoints.down("md")]: {
  234. top: "0",
  235. margin: "5px 15px"
  236. },
  237. color: "#FFF",
  238. fontWeight: "400",
  239. fontSize: "12px",
  240. textTransform: "uppercase",
  241. lineHeight: "20px",
  242. textDecoration: "none",
  243. margin: "0px",
  244. display: "inline-flex",
  245. top: "4px"
  246. },
  247. registerNavLink: {
  248. [theme.breakpoints.down("md")]: {
  249. top: "0",
  250. margin: "5px 15px"
  251. },
  252. top: "3px",
  253. position: "relative",
  254. fontWeight: "400",
  255. fontSize: "12px",
  256. textTransform: "uppercase",
  257. lineHeight: "20px",
  258. textDecoration: "none",
  259. margin: "0px",
  260. display: "inline-flex"
  261. },
  262. navLinkActive: {
  263. color: "inherit",
  264. backgroundColor: "rgba(255, 255, 255, 0.1)"
  265. },
  266. icons: {
  267. width: "20px",
  268. height: "20px",
  269. marginRight: "3px"
  270. },
  271. socialIcons: {
  272. position: "relative",
  273. fontSize: "20px !important",
  274. marginRight: "4px"
  275. },
  276. dropdownLink: {
  277. "&,&:hover,&:focus": {
  278. color: "inherit",
  279. textDecoration: "none",
  280. display: "block",
  281. padding: "10px 20px"
  282. }
  283. }
  284. }, nextjs_material_kit_tooltipsStyle, {
  285. marginRight5: {
  286. marginRight: "5px"
  287. }
  288. });
  289. /* harmony default export */ var components_headerLinksStyle = __webpack_exports__["a"] = (headerLinksStyle);
  290. /***/ }),
  291. /***/ "0LMq":
  292. /***/ (function(module, exports) {
  293. module.exports = require("@material-ui/core/List");
  294. /***/ }),
  295. /***/ "1kN1":
  296. /***/ (function(module, exports) {
  297. module.exports = "/_next/static/images/pim-203bceb1b44b7dfde830127819c23183.jpg";
  298. /***/ }),
  299. /***/ 26:
  300. /***/ (function(module, exports, __webpack_require__) {
  301. module.exports = __webpack_require__("CH2o");
  302. /***/ }),
  303. /***/ "2kat":
  304. /***/ (function(module, exports) {
  305. module.exports = require("@material-ui/icons");
  306. /***/ }),
  307. /***/ "2wdC":
  308. /***/ (function(module, exports) {
  309. module.exports = "/_next/static/images/8-4d0b317c7cd028a32e5af2f2ebe715a4.jpg";
  310. /***/ }),
  311. /***/ "31Yn":
  312. /***/ (function(module, exports) {
  313. module.exports = require("@material-ui/core/ClickAwayListener");
  314. /***/ }),
  315. /***/ "3REV":
  316. /***/ (function(module, exports) {
  317. module.exports = require("@material-ui/icons/LocalGroceryStore");
  318. /***/ }),
  319. /***/ "4151":
  320. /***/ (function(module, exports) {
  321. module.exports = require("@material-ui/core/AppBar");
  322. /***/ }),
  323. /***/ "4D1s":
  324. /***/ (function(module, exports) {
  325. module.exports = require("@material-ui/icons/Menu");
  326. /***/ }),
  327. /***/ "4esR":
  328. /***/ (function(module, exports) {
  329. module.exports = "/_next/static/images/bpr-691f24d296ad44d7a9c0e3b1655985f9.jpg";
  330. /***/ }),
  331. /***/ "7KCV":
  332. /***/ (function(module, exports, __webpack_require__) {
  333. var _typeof = __webpack_require__("C+bE");
  334. function _getRequireWildcardCache() {
  335. if (typeof WeakMap !== "function") return null;
  336. var cache = new WeakMap();
  337. _getRequireWildcardCache = function _getRequireWildcardCache() {
  338. return cache;
  339. };
  340. return cache;
  341. }
  342. function _interopRequireWildcard(obj) {
  343. if (obj && obj.__esModule) {
  344. return obj;
  345. }
  346. if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") {
  347. return {
  348. "default": obj
  349. };
  350. }
  351. var cache = _getRequireWildcardCache();
  352. if (cache && cache.has(obj)) {
  353. return cache.get(obj);
  354. }
  355. var newObj = {};
  356. var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
  357. for (var key in obj) {
  358. if (Object.prototype.hasOwnProperty.call(obj, key)) {
  359. var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
  360. if (desc && (desc.get || desc.set)) {
  361. Object.defineProperty(newObj, key, desc);
  362. } else {
  363. newObj[key] = obj[key];
  364. }
  365. }
  366. }
  367. newObj["default"] = obj;
  368. if (cache) {
  369. cache.set(obj, newObj);
  370. }
  371. return newObj;
  372. }
  373. module.exports = _interopRequireWildcard;
  374. /***/ }),
  375. /***/ "7WxK":
  376. /***/ (function(module, exports) {
  377. module.exports = "/_next/static/images/Black-899735fcb67d236467fe7be0e3ade7fb.png";
  378. /***/ }),
  379. /***/ "7vM9":
  380. /***/ (function(module, exports) {
  381. module.exports = require("@material-ui/core/Icon");
  382. /***/ }),
  383. /***/ "8//M":
  384. /***/ (function(module, exports) {
  385. module.exports = require("@material-ui/core/styles/makeStyles");
  386. /***/ }),
  387. /***/ "8x5e":
  388. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  389. "use strict";
  390. // EXPORTS
  391. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Header; });
  392. // EXTERNAL MODULE: external "react"
  393. var external_react_ = __webpack_require__("cDcd");
  394. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  395. // EXTERNAL MODULE: ./node_modules/next/link.js
  396. var next_link = __webpack_require__("YFqc");
  397. var link_default = /*#__PURE__*/__webpack_require__.n(next_link);
  398. // EXTERNAL MODULE: external "classnames"
  399. var external_classnames_ = __webpack_require__("K2gz");
  400. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  401. // EXTERNAL MODULE: external "@material-ui/core/styles"
  402. var styles_ = __webpack_require__("9Pu4");
  403. // EXTERNAL MODULE: external "@material-ui/core/AppBar"
  404. var AppBar_ = __webpack_require__("4151");
  405. var AppBar_default = /*#__PURE__*/__webpack_require__.n(AppBar_);
  406. // EXTERNAL MODULE: external "@material-ui/core/Toolbar"
  407. var Toolbar_ = __webpack_require__("Ms0O");
  408. var Toolbar_default = /*#__PURE__*/__webpack_require__.n(Toolbar_);
  409. // EXTERNAL MODULE: external "@material-ui/core/IconButton"
  410. var IconButton_ = __webpack_require__("EmCc");
  411. var IconButton_default = /*#__PURE__*/__webpack_require__.n(IconButton_);
  412. // EXTERNAL MODULE: external "@material-ui/core/Button"
  413. var Button_ = __webpack_require__("Wh1t");
  414. var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
  415. // EXTERNAL MODULE: external "@material-ui/core/Hidden"
  416. var Hidden_ = __webpack_require__("Y8uC");
  417. var Hidden_default = /*#__PURE__*/__webpack_require__.n(Hidden_);
  418. // EXTERNAL MODULE: external "@material-ui/core/Drawer"
  419. var Drawer_ = __webpack_require__("Q01v");
  420. var Drawer_default = /*#__PURE__*/__webpack_require__.n(Drawer_);
  421. // EXTERNAL MODULE: external "@material-ui/icons/Menu"
  422. var Menu_ = __webpack_require__("4D1s");
  423. var Menu_default = /*#__PURE__*/__webpack_require__.n(Menu_);
  424. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  425. var nextjs_material_kit = __webpack_require__("eDSW");
  426. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/headerStyle.js
  427. 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; }
  428. 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; }
  429. 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; }
  430. const headerStyle = {
  431. appBar: {
  432. display: "flex",
  433. border: "0",
  434. borderRadius: "3px",
  435. padding: "0.625rem 0",
  436. marginBottom: "20px",
  437. color: "#555",
  438. width: "100%",
  439. backgroundColor: "#fff",
  440. boxShadow: "0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15)",
  441. transition: "all 150ms ease 0s",
  442. alignItems: "center",
  443. flexFlow: "row nowrap",
  444. justifyContent: "flex-start",
  445. position: "relative",
  446. zIndex: "unset"
  447. },
  448. absolute: {
  449. position: "absolute",
  450. zIndex: "1100"
  451. },
  452. fixed: {
  453. position: "fixed",
  454. zIndex: "1100"
  455. },
  456. container: _objectSpread({}, nextjs_material_kit["c" /* container */], {
  457. minHeight: "50px",
  458. flex: "1",
  459. alignItems: "center",
  460. justifyContent: "space-between",
  461. display: "flex",
  462. flexWrap: "nowrap"
  463. }),
  464. flex: {
  465. flex: 1
  466. },
  467. title: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  468. lineHeight: "30px",
  469. fontSize: "18px",
  470. borderRadius: "3px",
  471. textTransform: "none",
  472. color: "inherit",
  473. padding: "8px 16px",
  474. letterSpacing: "unset",
  475. "&:hover,&:focus": {
  476. color: "inherit",
  477. background: "transparent"
  478. }
  479. }),
  480. appResponsive: {
  481. margin: "20px 10px"
  482. },
  483. primary: {
  484. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  485. color: "#FFFFFF",
  486. 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)}`
  487. },
  488. info: {
  489. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  490. color: "#FFFFFF",
  491. 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)}`
  492. },
  493. success: {
  494. backgroundColor: nextjs_material_kit["u" /* successColor */],
  495. color: "#FFFFFF",
  496. 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)}`
  497. },
  498. warning: {
  499. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  500. color: "#FFFFFF",
  501. 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)}`
  502. },
  503. danger: {
  504. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  505. color: "#FFFFFF",
  506. 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)}`
  507. },
  508. rose: {
  509. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  510. color: "#FFFFFF",
  511. 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)}`
  512. },
  513. transparent: {
  514. backgroundColor: "transparent !important",
  515. boxShadow: "none",
  516. paddingTop: "25px",
  517. color: "#FFFFFF"
  518. },
  519. dark: {
  520. color: "#FFFFFF",
  521. backgroundColor: "#212121 !important",
  522. boxShadow: "0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 12px -5px rgba(33, 33, 33, 0.46)"
  523. },
  524. white: {
  525. border: "0",
  526. padding: "0.625rem 0",
  527. marginBottom: "20px",
  528. color: "#555",
  529. backgroundColor: "#fff !important",
  530. boxShadow: "0 4px 18px 0px rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15)"
  531. },
  532. drawerPaper: _objectSpread({
  533. border: "none",
  534. bottom: "0",
  535. transitionProperty: "top, bottom, width",
  536. transitionDuration: ".2s, .2s, .35s",
  537. transitionTimingFunction: "linear, linear, ease",
  538. width: nextjs_material_kit["h" /* drawerWidth */]
  539. }, nextjs_material_kit["a" /* boxShadow */], {
  540. position: "fixed",
  541. display: "block",
  542. top: "0",
  543. height: "100vh",
  544. right: "0",
  545. left: "auto",
  546. visibility: "visible",
  547. overflowY: "visible",
  548. borderTop: "none",
  549. textAlign: "left",
  550. paddingRight: "0px",
  551. paddingLeft: "0"
  552. }, nextjs_material_kit["w" /* transition */])
  553. };
  554. /* harmony default export */ var components_headerStyle = (headerStyle);
  555. // CONCATENATED MODULE: ./components/Header/Header.js
  556. var __jsx = external_react_default.a.createElement;
  557. // nodejs library that concatenates classes
  558. // nodejs library to set properties for components
  559. // @material-ui/core components
  560. // @material-ui/icons
  561. // core components
  562. const useStyles = Object(styles_["makeStyles"])(components_headerStyle);
  563. function Header(props) {
  564. const classes = useStyles();
  565. const [mobileOpen, setMobileOpen] = external_react_default.a.useState(false);
  566. external_react_default.a.useEffect(() => {
  567. if (props.changeColorOnScroll) {
  568. window.addEventListener("scroll", headerColorChange);
  569. }
  570. return function cleanup() {
  571. if (props.changeColorOnScroll) {
  572. window.removeEventListener("scroll", headerColorChange);
  573. }
  574. };
  575. });
  576. const handleDrawerToggle = () => {
  577. setMobileOpen(!mobileOpen);
  578. };
  579. const headerColorChange = () => {
  580. const {
  581. color,
  582. changeColorOnScroll
  583. } = props;
  584. const windowsScrollTop = window.pageYOffset;
  585. if (windowsScrollTop > changeColorOnScroll.height) {
  586. document.body.getElementsByTagName("header")[0].classList.remove(classes[color]);
  587. document.body.getElementsByTagName("header")[0].classList.add(classes[changeColorOnScroll.color]);
  588. } else {
  589. document.body.getElementsByTagName("header")[0].classList.add(classes[color]);
  590. document.body.getElementsByTagName("header")[0].classList.remove(classes[changeColorOnScroll.color]);
  591. }
  592. };
  593. const {
  594. color,
  595. rightLinks,
  596. leftLinks,
  597. brand,
  598. fixed,
  599. absolute
  600. } = props;
  601. const appBarClasses = external_classnames_default()({
  602. [classes.appBar]: true,
  603. [classes[color]]: color,
  604. [classes.absolute]: absolute,
  605. [classes.fixed]: fixed
  606. });
  607. const brandComponent = __jsx(link_default.a, {
  608. href: "/components",
  609. as: "/components"
  610. }, __jsx(Button_default.a, {
  611. className: classes.title
  612. }, brand));
  613. return __jsx(AppBar_default.a, {
  614. className: appBarClasses
  615. }, __jsx(Toolbar_default.a, {
  616. className: classes.container
  617. }, leftLinks !== undefined ? brandComponent : null, __jsx("div", {
  618. className: classes.flex
  619. }, leftLinks !== undefined ? __jsx(Hidden_default.a, {
  620. smDown: true,
  621. implementation: "css"
  622. }, leftLinks) : brandComponent), __jsx(Hidden_default.a, {
  623. smDown: true,
  624. implementation: "css"
  625. }, rightLinks), __jsx(Hidden_default.a, {
  626. mdUp: true
  627. }, __jsx(IconButton_default.a, {
  628. color: "inherit",
  629. "aria-label": "open drawer",
  630. onClick: handleDrawerToggle
  631. }, __jsx(Menu_default.a, null)))), __jsx(Hidden_default.a, {
  632. mdUp: true,
  633. implementation: "js"
  634. }, __jsx(Drawer_default.a, {
  635. variant: "temporary",
  636. anchor: "right",
  637. open: mobileOpen,
  638. classes: {
  639. paper: classes.drawerPaper
  640. },
  641. onClose: handleDrawerToggle
  642. }, __jsx("div", {
  643. className: classes.appResponsive
  644. }, leftLinks, rightLinks))));
  645. }
  646. Header.defaultProp = {
  647. color: "black"
  648. };
  649. /***/ }),
  650. /***/ "9Pu4":
  651. /***/ (function(module, exports) {
  652. module.exports = require("@material-ui/core/styles");
  653. /***/ }),
  654. /***/ "A2So":
  655. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  656. "use strict";
  657. // EXPORTS
  658. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Card; });
  659. // EXTERNAL MODULE: external "react"
  660. var external_react_ = __webpack_require__("cDcd");
  661. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  662. // EXTERNAL MODULE: external "classnames"
  663. var external_classnames_ = __webpack_require__("K2gz");
  664. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  665. // EXTERNAL MODULE: external "@material-ui/core/styles"
  666. var styles_ = __webpack_require__("9Pu4");
  667. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardStyle.js
  668. const cardStyle = {
  669. card: {
  670. border: "0",
  671. marginBottom: "30px",
  672. marginTop: "30px",
  673. borderRadius: "6px",
  674. color: "rgba(0, 0, 0, 0.87)",
  675. background: "#fff",
  676. width: "100%",
  677. 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)",
  678. position: "relative",
  679. display: "flex",
  680. flexDirection: "column",
  681. minWidth: "0",
  682. wordWrap: "break-word",
  683. fontSize: ".875rem",
  684. transition: "all 300ms linear"
  685. },
  686. cardPlain: {
  687. background: "transparent",
  688. boxShadow: "none"
  689. },
  690. cardCarousel: {
  691. overflow: "hidden"
  692. }
  693. };
  694. /* harmony default export */ var components_cardStyle = (cardStyle);
  695. // CONCATENATED MODULE: ./components/Card/Card.js
  696. var __jsx = external_react_default.a.createElement;
  697. 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); }
  698. 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; }
  699. 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; }
  700. // nodejs library that concatenates classes
  701. // nodejs library to set properties for components
  702. // @material-ui/core components
  703. // @material-ui/icons
  704. // core components
  705. const useStyles = Object(styles_["makeStyles"])(components_cardStyle);
  706. function Card(props) {
  707. const classes = useStyles();
  708. const {
  709. className,
  710. children,
  711. plain,
  712. carousel
  713. } = props,
  714. rest = _objectWithoutProperties(props, ["className", "children", "plain", "carousel"]);
  715. const cardClasses = external_classnames_default()({
  716. [classes.card]: true,
  717. [classes.cardPlain]: plain,
  718. [classes.cardCarousel]: carousel,
  719. [className]: className !== undefined
  720. });
  721. return __jsx("div", _extends({
  722. className: cardClasses
  723. }, rest), children);
  724. }
  725. /***/ }),
  726. /***/ "AqwQ":
  727. /***/ (function(module, exports) {
  728. module.exports = "/_next/static/images/hino-d387ab83c9269c455c1b597ea390a888.jpg";
  729. /***/ }),
  730. /***/ "AroE":
  731. /***/ (function(module, exports) {
  732. function _interopRequireDefault(obj) {
  733. return obj && obj.__esModule ? obj : {
  734. "default": obj
  735. };
  736. }
  737. module.exports = _interopRequireDefault;
  738. /***/ }),
  739. /***/ "BmGO":
  740. /***/ (function(module, exports) {
  741. module.exports = "/_next/static/images/home-6e603e834cee0599bda40518ef2ad4ad.jpg";
  742. /***/ }),
  743. /***/ "C+bE":
  744. /***/ (function(module, exports) {
  745. 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); }
  746. function _typeof(obj) {
  747. if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") {
  748. module.exports = _typeof = function _typeof(obj) {
  749. return _typeof2(obj);
  750. };
  751. } else {
  752. module.exports = _typeof = function _typeof(obj) {
  753. return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj);
  754. };
  755. }
  756. return _typeof(obj);
  757. }
  758. module.exports = _typeof;
  759. /***/ }),
  760. /***/ "CH2o":
  761. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  762. "use strict";
  763. // ESM COMPAT FLAG
  764. __webpack_require__.r(__webpack_exports__);
  765. // EXPORTS
  766. __webpack_require__.d(__webpack_exports__, "default", function() { return /* binding */ LandingPage; });
  767. // EXTERNAL MODULE: external "react"
  768. var external_react_ = __webpack_require__("cDcd");
  769. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  770. // EXTERNAL MODULE: external "classnames"
  771. var external_classnames_ = __webpack_require__("K2gz");
  772. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  773. // EXTERNAL MODULE: external "@material-ui/core/styles"
  774. var styles_ = __webpack_require__("9Pu4");
  775. // EXTERNAL MODULE: ./components/Header/Header.js + 1 modules
  776. var Header = __webpack_require__("8x5e");
  777. // EXTERNAL MODULE: external "@material-ui/core"
  778. var core_ = __webpack_require__("KKbo");
  779. // EXTERNAL MODULE: external "@material-ui/icons/Favorite"
  780. var Favorite_ = __webpack_require__("Fm7H");
  781. // EXTERNAL MODULE: ./components/Grid/GridContainer.js
  782. var GridContainer = __webpack_require__("mtPR");
  783. // EXTERNAL MODULE: external "@material-ui/core/Grid"
  784. var Grid_ = __webpack_require__("JQ2V");
  785. var Grid_default = /*#__PURE__*/__webpack_require__.n(Grid_);
  786. // EXTERNAL MODULE: ./components/Grid/GridItem.js
  787. var GridItem = __webpack_require__("i4t8");
  788. // EXTERNAL MODULE: external "@material-ui/core/Paper"
  789. var Paper_ = __webpack_require__("qt1I");
  790. // EXTERNAL MODULE: ./components/Card/Card.js + 1 modules
  791. var Card = __webpack_require__("A2So");
  792. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit/components/footerStyle.js
  793. var footerStyle = __webpack_require__("oLCs");
  794. // EXTERNAL MODULE: ./assets/img/White.png
  795. var White = __webpack_require__("gpfI");
  796. // EXTERNAL MODULE: external "react-slick"
  797. var external_react_slick_ = __webpack_require__("O/hg");
  798. var external_react_slick_default = /*#__PURE__*/__webpack_require__.n(external_react_slick_);
  799. // CONCATENATED MODULE: ./components/Footer/FooterHome.js
  800. var __jsx = external_react_default.a.createElement;
  801. /*eslint-disable*/
  802. // import Styless from "components/Footer/footersosmed.css";
  803. const useStyles = Object(styles_["makeStyles"])(footerStyle["a" /* default */]);
  804. function Footer(props) {
  805. const classes = useStyles();
  806. const {
  807. whiteFont
  808. } = props;
  809. const footerClasses = external_classnames_default()({
  810. [classes.footer]: true,
  811. [classes.footerWhiteFont]: whiteFont
  812. });
  813. const aClasses = external_classnames_default()({
  814. [classes.a]: true,
  815. [classes.footerWhiteFont]: whiteFont
  816. });
  817. const settings = {
  818. dots: true,
  819. infinite: true,
  820. speed: 500,
  821. slidesToShow: 1,
  822. slidesToScroll: 1,
  823. autoplay: true,
  824. time: 5
  825. };
  826. return __jsx(GridItem["a" /* default */], {
  827. xs: 12
  828. }, __jsx("link", {
  829. rel: "stylesheet",
  830. href: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
  831. }), __jsx("div", {
  832. align: "center"
  833. }, __jsx(core_["List"], {
  834. className: classes.list
  835. }, __jsx(core_["ListItem"], {
  836. className: classes.inlineBlock
  837. }, __jsx("a", {
  838. href: "/yamaha/home",
  839. target: "_blank",
  840. className: classes.block
  841. }, " Yamaha ")), __jsx(core_["ListItem"], {
  842. className: classes.inlineBlock
  843. }, __jsx("a", {
  844. href: "/suzuki/home",
  845. target: "_blank",
  846. className: classes.block
  847. }, " Suzuki ")), __jsx(core_["ListItem"], {
  848. className: classes.inlineBlock
  849. }, __jsx("a", {
  850. href: "/honda/home",
  851. target: "_blank",
  852. className: classes.block
  853. }, " Honda ")), __jsx(core_["ListItem"], {
  854. className: classes.inlineBlock
  855. }, __jsx("a", {
  856. href: "/hino/home",
  857. target: "_blank",
  858. className: classes.block
  859. }, " Hino ")), __jsx(core_["ListItem"], {
  860. className: classes.inlineBlock
  861. }, __jsx("a", {
  862. href: "https://www.thamrin.mercedes-benz.co.id/en/desktop/passenger-cars.html",
  863. target: "_blank",
  864. className: classes.block
  865. }, " Mercedes Benz ")), __jsx(core_["ListItem"], {
  866. className: classes.inlineBlock
  867. }, __jsx("a", {
  868. href: "http://www.emilia-hotel.com/",
  869. target: "_blank",
  870. className: classes.block
  871. }, " Emilia Hotel ")), __jsx(core_["ListItem"], {
  872. className: classes.inlineBlock
  873. }, __jsx("a", {
  874. href: "https://www.instagram.com/palembangindahmall/?hl=id",
  875. target: "_blank",
  876. className: classes.block
  877. }, " Palembang Indah Mall ")), __jsx(core_["ListItem"], {
  878. className: classes.inlineBlock
  879. }, __jsx("a", {
  880. href: "http://bprberkatsejati.com/",
  881. target: "_blank",
  882. className: classes.block
  883. }, " BRP Berkat Sejati ")), __jsx(core_["ListItem"], {
  884. className: classes.inlineBlock
  885. }, __jsx("a", {
  886. href: "http://homes.thamrin.xyz/",
  887. target: "_blank",
  888. className: classes.block
  889. }, " Thamrin Homes ")))), __jsx("div", {
  890. align: "center"
  891. }, __jsx(core_["List"], {
  892. className: classes.list
  893. }, __jsx(core_["ListItem"], {
  894. className: classes.inlineBlock,
  895. style: {
  896. padding: "10px"
  897. }
  898. }, __jsx("a", {
  899. href: "#",
  900. target: "_blank",
  901. class: "fa fa-facebook"
  902. })), __jsx(core_["ListItem"], {
  903. className: classes.inlineBlock,
  904. style: {
  905. padding: "10px"
  906. }
  907. }, __jsx("a", {
  908. href: "#",
  909. target: "_blank",
  910. class: "fa fa-instagram"
  911. })), __jsx(core_["ListItem"], {
  912. className: classes.inlineBlock,
  913. style: {
  914. padding: "10px"
  915. }
  916. }, __jsx("a", {
  917. href: "#",
  918. target: "_blank",
  919. class: "fa fa-twitter"
  920. })), __jsx(core_["ListItem"], {
  921. className: classes.inlineBlock,
  922. style: {
  923. padding: "10px"
  924. }
  925. }, __jsx("a", {
  926. href: "#",
  927. target: "_blank",
  928. class: "fa fa-youtube"
  929. })))), __jsx("br", null), __jsx("br", null), __jsx("div", {
  930. align: "center"
  931. }, "\xA9 ", 1900 + new Date().getYear(), " , All Right Reserved", " ", " by", " ", " @Thamrin Group Company"), __jsx("br", null), __jsx("br", null));
  932. }
  933. // EXTERNAL MODULE: ./components/CustomButtons/Button.js + 1 modules
  934. var Button = __webpack_require__("Kg+a");
  935. // EXTERNAL MODULE: ./node_modules/next/link.js
  936. var next_link = __webpack_require__("YFqc");
  937. var link_default = /*#__PURE__*/__webpack_require__.n(next_link);
  938. // EXTERNAL MODULE: external "@material-ui/core/List"
  939. var List_ = __webpack_require__("0LMq");
  940. var List_default = /*#__PURE__*/__webpack_require__.n(List_);
  941. // EXTERNAL MODULE: external "@material-ui/core/ListItem"
  942. var ListItem_ = __webpack_require__("c25J");
  943. var ListItem_default = /*#__PURE__*/__webpack_require__.n(ListItem_);
  944. // EXTERNAL MODULE: external "@material-ui/core/Icon"
  945. var Icon_ = __webpack_require__("7vM9");
  946. var Icon_default = /*#__PURE__*/__webpack_require__.n(Icon_);
  947. // EXTERNAL MODULE: external "@material-ui/icons/LocalGroceryStore"
  948. var LocalGroceryStore_ = __webpack_require__("3REV");
  949. // EXTERNAL MODULE: external "@material-ui/icons"
  950. var icons_ = __webpack_require__("2kat");
  951. // EXTERNAL MODULE: ./components/CustomDropdown/CustomDropdown.js + 1 modules
  952. var CustomDropdown = __webpack_require__("QOEo");
  953. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit/components/headerLinksStyle.js + 1 modules
  954. var headerLinksStyle = __webpack_require__("0G1C");
  955. // EXTERNAL MODULE: ./assets/img/Blue.png
  956. var Blue = __webpack_require__("vcqE");
  957. var Blue_default = /*#__PURE__*/__webpack_require__.n(Blue);
  958. // CONCATENATED MODULE: ./components/Header/HeaderHome.js
  959. var HeaderHome_jsx = external_react_default.a.createElement;
  960. /*eslint-disable*/
  961. // @material-ui/core components
  962. // import People from "@material-ui/core/People";
  963. // @material-ui/icons
  964. // core components
  965. const HeaderHome_useStyles = Object(styles_["makeStyles"])(headerLinksStyle["a" /* default */]);
  966. function HeaderHome(props) {
  967. const classes = HeaderHome_useStyles();
  968. return HeaderHome_jsx("div", {
  969. align: "left"
  970. }, HeaderHome_jsx(List_default.a, {
  971. className: classes.list
  972. }, HeaderHome_jsx(ListItem_default.a, {
  973. className: classes.listItem
  974. }, HeaderHome_jsx(link_default.a, {
  975. href: "#"
  976. }, HeaderHome_jsx(Button["a" /* default */], {
  977. color: "transparent",
  978. className: classes.navLink
  979. }, HeaderHome_jsx("img", {
  980. src: Blue_default.a,
  981. width: "180px"
  982. })))), HeaderHome_jsx(ListItem_default.a, {
  983. className: classes.listItem
  984. }, HeaderHome_jsx(link_default.a, {
  985. href: "#"
  986. }, HeaderHome_jsx(Button["a" /* default */], {
  987. color: "transparent",
  988. className: classes.navLink,
  989. style: {
  990. marginTop: "10px"
  991. }
  992. }, HeaderHome_jsx(Icon_default.a, {
  993. className: classes.icons
  994. }, "home"), " Home"))), HeaderHome_jsx(ListItem_default.a, {
  995. className: classes.listItem
  996. }, HeaderHome_jsx(link_default.a, {
  997. href: "#section1"
  998. }, HeaderHome_jsx(Button["a" /* default */], {
  999. color: "transparent",
  1000. className: classes.navLink,
  1001. style: {
  1002. marginTop: "10px"
  1003. }
  1004. }, HeaderHome_jsx(Icon_default.a, {
  1005. className: classes.icons
  1006. }, "card_travel"), " Core Value"))), HeaderHome_jsx(ListItem_default.a, {
  1007. className: classes.listItem
  1008. }, HeaderHome_jsx(link_default.a, {
  1009. href: "#"
  1010. }, HeaderHome_jsx(Button["a" /* default */], {
  1011. color: "transparent",
  1012. className: classes.navLink,
  1013. style: {
  1014. marginTop: "10px"
  1015. }
  1016. }, HeaderHome_jsx(Icon_default.a, {
  1017. className: classes.icons
  1018. }, "business"), " Businees Partner"))), HeaderHome_jsx(ListItem_default.a, {
  1019. className: classes.listItem
  1020. }, HeaderHome_jsx(link_default.a, {
  1021. href: "#"
  1022. }, HeaderHome_jsx(Button["a" /* default */], {
  1023. color: "transparent",
  1024. className: classes.navLink,
  1025. style: {
  1026. marginTop: "10px"
  1027. }
  1028. }, HeaderHome_jsx(Icon_default.a, {
  1029. className: classes.icons
  1030. }, "perm_identity"), " About Us"))), HeaderHome_jsx(ListItem_default.a, {
  1031. className: classes.listItem
  1032. }, HeaderHome_jsx(link_default.a, {
  1033. href: "#"
  1034. }, HeaderHome_jsx(Button["a" /* default */], {
  1035. color: "transparent",
  1036. className: classes.navLink,
  1037. style: {
  1038. marginTop: "10px"
  1039. }
  1040. }, HeaderHome_jsx(Icon_default.a, {
  1041. className: classes.icons
  1042. }, "dashboard"), " Gallery")))));
  1043. }
  1044. // EXTERNAL MODULE: ./components/Parallax/Parallax.js + 1 modules
  1045. var Parallax = __webpack_require__("Z2Lm");
  1046. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  1047. var nextjs_material_kit = __webpack_require__("eDSW");
  1048. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/home.js
  1049. 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; }
  1050. 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; }
  1051. 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; }
  1052. const landingPageStyle = {
  1053. main: {
  1054. background: "#000000"
  1055. },
  1056. title: _objectSpread({}, nextjs_material_kit["v" /* title */], {
  1057. display: "inline-block",
  1058. position: "relative",
  1059. marginTop: "30px",
  1060. minHeight: "32px",
  1061. color: "#ffffff",
  1062. textDecoration: "none"
  1063. }),
  1064. subtitle: {
  1065. fontSize: "1.313rem",
  1066. maxWidth: "500px",
  1067. margin: "10px auto 0"
  1068. }
  1069. };
  1070. /* harmony default export */ var home = (landingPageStyle);
  1071. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/componentsSections/homeStyle.js
  1072. function homeStyle_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; }
  1073. function homeStyle_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { homeStyle_ownKeys(Object(source), true).forEach(function (key) { homeStyle_defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { homeStyle_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
  1074. function homeStyle_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; }
  1075. const notificationsStyles = {
  1076. section: {
  1077. backgroundColor: "#000000",
  1078. display: "block",
  1079. width: "100%",
  1080. position: "relative"
  1081. },
  1082. title: homeStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1083. marginTop: "30px",
  1084. minHeight: "32px",
  1085. textDecoration: "none"
  1086. }),
  1087. container: nextjs_material_kit["c" /* container */]
  1088. };
  1089. /* harmony default export */ var homeStyle = (notificationsStyles);
  1090. // EXTERNAL MODULE: ./assets/img/carousel/1.jpg
  1091. var _1 = __webpack_require__("aK6x");
  1092. // EXTERNAL MODULE: ./assets/img/carousel/2.jpg
  1093. var _2 = __webpack_require__("n6U9");
  1094. // EXTERNAL MODULE: ./assets/img/carousel/3.jpg
  1095. var _3 = __webpack_require__("QH4I");
  1096. var _3_default = /*#__PURE__*/__webpack_require__.n(_3);
  1097. // EXTERNAL MODULE: ./assets/img/carousel/4.jpg
  1098. var _4 = __webpack_require__("k7mh");
  1099. var _4_default = /*#__PURE__*/__webpack_require__.n(_4);
  1100. // CONCATENATED MODULE: ./pages-sections/home/Carousel.js
  1101. var Carousel_jsx = external_react_default.a.createElement;
  1102. const Carousel_useStyles = Object(styles_["makeStyles"])(homeStyle);
  1103. const DataCarousel = function () {
  1104. const classes = Carousel_useStyles();
  1105. const settings = {
  1106. dots: true,
  1107. infinite: true,
  1108. speed: 500,
  1109. slidesToShow: 1,
  1110. slidesToScroll: 1,
  1111. autoplay: true,
  1112. time: 5
  1113. };
  1114. return Carousel_jsx("div", {
  1115. className: classes.root
  1116. }, Carousel_jsx(Grid_default.a, {
  1117. item: true,
  1118. xs: 12,
  1119. sm: 12,
  1120. className: classes.marginAuto
  1121. }, Carousel_jsx(Card["a" /* default */], null, Carousel_jsx("div", {
  1122. className: "container"
  1123. }, Carousel_jsx(external_react_slick_default.a, settings, Carousel_jsx("img", {
  1124. src: _3_default.a,
  1125. alt: "First slide",
  1126. className: "slick-image"
  1127. }), Carousel_jsx("img", {
  1128. src: _4_default.a,
  1129. alt: "First slide",
  1130. className: "slick-image"
  1131. }))))));
  1132. };
  1133. /* harmony default export */ var Carousel = (DataCarousel);
  1134. // EXTERNAL MODULE: external "@material-ui/icons/Chat"
  1135. var Chat_ = __webpack_require__("HWfr");
  1136. // EXTERNAL MODULE: external "@material-ui/icons/VerifiedUser"
  1137. var VerifiedUser_ = __webpack_require__("M2SB");
  1138. // EXTERNAL MODULE: external "@material-ui/icons/Fingerprint"
  1139. var Fingerprint_ = __webpack_require__("Uo6P");
  1140. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/infoStyle.js
  1141. const infoStyle = {
  1142. infoArea: {
  1143. maxWidth: "360px",
  1144. margin: "0 auto",
  1145. padding: "0px"
  1146. },
  1147. iconWrapper: {
  1148. float: "left",
  1149. marginTop: "24px",
  1150. marginRight: "10px"
  1151. },
  1152. primary: {
  1153. color: nextjs_material_kit["p" /* primaryColor */]
  1154. },
  1155. warning: {
  1156. color: nextjs_material_kit["z" /* warningColor */]
  1157. },
  1158. danger: {
  1159. color: nextjs_material_kit["f" /* dangerColor */]
  1160. },
  1161. success: {
  1162. color: nextjs_material_kit["u" /* successColor */]
  1163. },
  1164. info: {
  1165. color: nextjs_material_kit["m" /* infoColor */]
  1166. },
  1167. rose: {
  1168. color: nextjs_material_kit["r" /* roseColor */]
  1169. },
  1170. gray: {
  1171. color: nextjs_material_kit["i" /* grayColor */]
  1172. },
  1173. icon: {
  1174. width: "36px",
  1175. height: "36px"
  1176. },
  1177. descriptionWrapper: {
  1178. color: nextjs_material_kit["i" /* grayColor */],
  1179. overflow: "hidden"
  1180. },
  1181. title: nextjs_material_kit["v" /* title */],
  1182. description: {
  1183. color: nextjs_material_kit["i" /* grayColor */],
  1184. overflow: "hidden",
  1185. marginTop: "0px",
  1186. fontSize: "14px"
  1187. },
  1188. iconWrapperVertical: {
  1189. float: "none"
  1190. },
  1191. iconVertical: {
  1192. width: "61px",
  1193. height: "61px"
  1194. }
  1195. };
  1196. /* harmony default export */ var components_infoStyle = (infoStyle);
  1197. // CONCATENATED MODULE: ./components/InfoArea/InfoArea.js
  1198. var InfoArea_jsx = external_react_default.a.createElement;
  1199. // nodejs library to set properties for components
  1200. // nodejs library that concatenates classes
  1201. // @material-ui/core components
  1202. const InfoArea_useStyles = Object(styles_["makeStyles"])(components_infoStyle);
  1203. function InfoArea(props) {
  1204. const classes = InfoArea_useStyles();
  1205. const {
  1206. title,
  1207. description,
  1208. iconColor,
  1209. vertical
  1210. } = props;
  1211. const iconWrapper = external_classnames_default()({
  1212. [classes.iconWrapper]: true,
  1213. [classes[iconColor]]: true,
  1214. [classes.iconWrapperVertical]: vertical
  1215. });
  1216. const iconClasses = external_classnames_default()({
  1217. [classes.icon]: true,
  1218. [classes.iconVertical]: vertical
  1219. });
  1220. return InfoArea_jsx("div", {
  1221. className: classes.infoArea
  1222. }, InfoArea_jsx("div", {
  1223. className: classes.descriptionWrapper
  1224. }, InfoArea_jsx("h4", {
  1225. className: classes.title
  1226. }, title), InfoArea_jsx("p", {
  1227. className: classes.description
  1228. }, description)));
  1229. }
  1230. InfoArea.defaultProps = {
  1231. iconColor: "gray"
  1232. };
  1233. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPageSections/productStyle.js
  1234. 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; }
  1235. 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; }
  1236. 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; }
  1237. const productStyle = {
  1238. section: {
  1239. padding: "70px 0",
  1240. textAlign: "center"
  1241. },
  1242. title: productStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1243. marginBottom: "1rem",
  1244. marginTop: "30px",
  1245. minHeight: "32px",
  1246. textDecoration: "none"
  1247. }),
  1248. description: {
  1249. color: "#999"
  1250. }
  1251. };
  1252. /* harmony default export */ var landingPageSections_productStyle = (productStyle);
  1253. // EXTERNAL MODULE: ./assets/img/core/core1.png
  1254. var core1 = __webpack_require__("HoRM");
  1255. var core1_default = /*#__PURE__*/__webpack_require__.n(core1);
  1256. // EXTERNAL MODULE: ./assets/img/core/core2.png
  1257. var core2 = __webpack_require__("XtlH");
  1258. var core2_default = /*#__PURE__*/__webpack_require__.n(core2);
  1259. // EXTERNAL MODULE: ./assets/img/core/core3.png
  1260. var core3 = __webpack_require__("ql2e");
  1261. var core3_default = /*#__PURE__*/__webpack_require__.n(core3);
  1262. // EXTERNAL MODULE: ./assets/img/core/core4.png
  1263. var core4 = __webpack_require__("qsPe");
  1264. var core4_default = /*#__PURE__*/__webpack_require__.n(core4);
  1265. // EXTERNAL MODULE: ./assets/img/core/core5.png
  1266. var core5 = __webpack_require__("ofq5");
  1267. var core5_default = /*#__PURE__*/__webpack_require__.n(core5);
  1268. // CONCATENATED MODULE: ./pages-sections/home/CoreValue.js
  1269. var CoreValue_jsx = external_react_default.a.createElement;
  1270. // @material-ui/core components
  1271. // @material-ui/icons
  1272. // core components
  1273. const CoreValue_useStyles = Object(styles_["makeStyles"])(landingPageSections_productStyle);
  1274. function ProductSection() {
  1275. const classes = CoreValue_useStyles();
  1276. return CoreValue_jsx("div", {
  1277. className: classes.section
  1278. }, CoreValue_jsx("h2", {
  1279. className: classes.title
  1280. }, "Thamrin Group Core Value"), CoreValue_jsx("div", {
  1281. align: "center"
  1282. }, CoreValue_jsx(Grid_default.a, {
  1283. container: true
  1284. }, CoreValue_jsx(GridItem["a" /* default */], {
  1285. xs: 4
  1286. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1287. align: "center"
  1288. }, CoreValue_jsx("img", {
  1289. src: core1_default.a
  1290. }), CoreValue_jsx(InfoArea, {
  1291. title: "TRUST",
  1292. iconColor: "success",
  1293. vertical: true
  1294. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1295. xs: 4
  1296. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1297. align: "center"
  1298. }, CoreValue_jsx("img", {
  1299. src: core2_default.a
  1300. }), CoreValue_jsx(InfoArea, {
  1301. title: "CUSTOMER FOCUS",
  1302. iconColor: "success",
  1303. vertical: true
  1304. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1305. xs: 4
  1306. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1307. align: "center"
  1308. }, CoreValue_jsx("img", {
  1309. src: core3_default.a
  1310. }), CoreValue_jsx(InfoArea, {
  1311. title: "COMMUNICATION",
  1312. iconColor: "success",
  1313. vertical: true
  1314. })))), CoreValue_jsx(Grid_default.a, {
  1315. container: true
  1316. }, CoreValue_jsx(GridItem["a" /* default */], {
  1317. xs: 6
  1318. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1319. align: "center"
  1320. }, CoreValue_jsx("img", {
  1321. src: core4_default.a
  1322. }), CoreValue_jsx(InfoArea, {
  1323. title: "CONTINUOUS IMPROVEMENT",
  1324. iconColor: "success",
  1325. vertical: true
  1326. }))), CoreValue_jsx(GridItem["a" /* default */], {
  1327. xs: 6
  1328. }, CoreValue_jsx("br", null), CoreValue_jsx("div", {
  1329. align: "center"
  1330. }, CoreValue_jsx("img", {
  1331. src: core5_default.a
  1332. }), CoreValue_jsx(InfoArea, {
  1333. title: "TEAMWORK",
  1334. iconColor: "success",
  1335. vertical: true
  1336. }))))));
  1337. }
  1338. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/pages/landingPageSections/workStyle.js
  1339. 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; }
  1340. 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; }
  1341. 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; }
  1342. const workStyle = {
  1343. section: {
  1344. padding: "70px 0"
  1345. },
  1346. title: workStyle_objectSpread({}, nextjs_material_kit["v" /* title */], {
  1347. marginBottom: "50px",
  1348. marginTop: "30px",
  1349. minHeight: "32px",
  1350. textDecoration: "none",
  1351. textAlign: "center"
  1352. }),
  1353. description: {
  1354. color: "#999",
  1355. textAlign: "center"
  1356. },
  1357. textCenter: {
  1358. textAlign: "center"
  1359. },
  1360. textArea: {
  1361. marginRight: "15px",
  1362. marginLeft: "15px"
  1363. }
  1364. };
  1365. /* harmony default export */ var landingPageSections_workStyle = (workStyle);
  1366. // EXTERNAL MODULE: external "@material-ui/core/Container"
  1367. var Container_ = __webpack_require__("Uynj");
  1368. // EXTERNAL MODULE: external "@material-ui/core/Typography"
  1369. var Typography_ = __webpack_require__("UVoM");
  1370. // EXTERNAL MODULE: ./pages-sections/home/business-partner.css
  1371. var business_partner = __webpack_require__("cpj4");
  1372. var business_partner_default = /*#__PURE__*/__webpack_require__.n(business_partner);
  1373. // EXTERNAL MODULE: ./assets/img/home/yamaha1.jpg
  1374. var yamaha1 = __webpack_require__("qY8J");
  1375. var yamaha1_default = /*#__PURE__*/__webpack_require__.n(yamaha1);
  1376. // EXTERNAL MODULE: ./assets/img/home/suzuki.jpg
  1377. var suzuki = __webpack_require__("J4G4");
  1378. var suzuki_default = /*#__PURE__*/__webpack_require__.n(suzuki);
  1379. // EXTERNAL MODULE: ./assets/img/home/mercedes.jpg
  1380. var mercedes = __webpack_require__("ovCH");
  1381. var mercedes_default = /*#__PURE__*/__webpack_require__.n(mercedes);
  1382. // EXTERNAL MODULE: ./assets/img/home/hino.jpg
  1383. var hino = __webpack_require__("AqwQ");
  1384. var hino_default = /*#__PURE__*/__webpack_require__.n(hino);
  1385. // EXTERNAL MODULE: ./assets/img/home/honda.jpg
  1386. var honda = __webpack_require__("djX/");
  1387. var honda_default = /*#__PURE__*/__webpack_require__.n(honda);
  1388. // EXTERNAL MODULE: ./assets/img/home/pim.jpg
  1389. var pim = __webpack_require__("1kN1");
  1390. var pim_default = /*#__PURE__*/__webpack_require__.n(pim);
  1391. // EXTERNAL MODULE: ./assets/img/home/emilia.jpg
  1392. var emilia = __webpack_require__("MXZv");
  1393. var emilia_default = /*#__PURE__*/__webpack_require__.n(emilia);
  1394. // EXTERNAL MODULE: ./assets/img/home/bpr.jpg
  1395. var bpr = __webpack_require__("4esR");
  1396. var bpr_default = /*#__PURE__*/__webpack_require__.n(bpr);
  1397. // EXTERNAL MODULE: ./assets/img/home/home.jpg
  1398. var home_home = __webpack_require__("BmGO");
  1399. var home_default = /*#__PURE__*/__webpack_require__.n(home_home);
  1400. // CONCATENATED MODULE: ./pages-sections/home/Businees-Partner.js
  1401. var Businees_Partner_jsx = external_react_default.a.createElement;
  1402. // core components
  1403. const Businees_Partner_useStyles = Object(styles_["makeStyles"])(landingPageSections_workStyle);
  1404. function WorkSection() {
  1405. const classes = Businees_Partner_useStyles();
  1406. console.log(business_partner_default.a.container);
  1407. return Businees_Partner_jsx("div", {
  1408. style: {
  1409. marginTop: "-30px"
  1410. }
  1411. }, Businees_Partner_jsx("br", null), Businees_Partner_jsx("h3", {
  1412. className: classes.title
  1413. }, "Thamrin Group Businees Partner"), Businees_Partner_jsx("div", {
  1414. className: classes.root
  1415. }, Businees_Partner_jsx(Grid_default.a, {
  1416. item: true,
  1417. xs: 12,
  1418. sm: 12,
  1419. className: classes.marginAuto
  1420. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1421. className: "container"
  1422. }, Businees_Partner_jsx("img", {
  1423. src: yamaha1_default.a,
  1424. alt: "Snow",
  1425. style: {
  1426. width: "100%"
  1427. }
  1428. }), Businees_Partner_jsx(Button["a" /* default */], {
  1429. href: "/yamaha/home",
  1430. target: "_blank",
  1431. className: "btn"
  1432. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1433. item: true,
  1434. xs: 12,
  1435. sm: 12,
  1436. style: {
  1437. marginTop: "-30px"
  1438. },
  1439. className: classes.marginAuto
  1440. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1441. className: "container"
  1442. }, Businees_Partner_jsx("img", {
  1443. src: suzuki_default.a,
  1444. alt: "Snow",
  1445. style: {
  1446. width: "100%"
  1447. }
  1448. }), Businees_Partner_jsx(Button["a" /* default */], {
  1449. href: "/suzuki/home",
  1450. target: "_blank",
  1451. className: "btn"
  1452. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1453. item: true,
  1454. xs: 12,
  1455. sm: 12,
  1456. style: {
  1457. marginTop: "-30px"
  1458. },
  1459. className: classes.marginAuto
  1460. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1461. className: "container"
  1462. }, Businees_Partner_jsx("img", {
  1463. src: hino_default.a,
  1464. alt: "Snow",
  1465. style: {
  1466. width: "100%"
  1467. }
  1468. }), Businees_Partner_jsx(Button["a" /* default */], {
  1469. href: "/hino/home",
  1470. target: "_blank",
  1471. className: "btn"
  1472. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1473. item: true,
  1474. xs: 12,
  1475. sm: 12,
  1476. style: {
  1477. marginTop: "-30px"
  1478. },
  1479. className: classes.marginAuto
  1480. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1481. className: "container"
  1482. }, Businees_Partner_jsx("img", {
  1483. src: honda_default.a,
  1484. alt: "Snow",
  1485. style: {
  1486. width: "100%"
  1487. }
  1488. }), Businees_Partner_jsx(Button["a" /* default */], {
  1489. href: "/honda/home",
  1490. target: "_blank",
  1491. className: "btn"
  1492. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1493. item: true,
  1494. xs: 12,
  1495. sm: 12,
  1496. style: {
  1497. marginTop: "-30px"
  1498. },
  1499. className: classes.marginAuto
  1500. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1501. className: "container"
  1502. }, Businees_Partner_jsx("img", {
  1503. src: mercedes_default.a,
  1504. alt: "Snow",
  1505. style: {
  1506. width: "100%"
  1507. }
  1508. }), Businees_Partner_jsx(Button["a" /* default */], {
  1509. href: "https://www.thamrin.mercedes-benz.co.id/en/desktop/passenger-cars.html",
  1510. target: "_blank",
  1511. className: "btn"
  1512. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1513. item: true,
  1514. xs: 12,
  1515. sm: 12,
  1516. style: {
  1517. marginTop: "-30px"
  1518. },
  1519. className: classes.marginAuto
  1520. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1521. className: "container"
  1522. }, Businees_Partner_jsx("img", {
  1523. src: bpr_default.a,
  1524. alt: "Snow",
  1525. style: {
  1526. width: "100%"
  1527. }
  1528. }), Businees_Partner_jsx(Button["a" /* default */], {
  1529. href: "http://bprberkatsejati.com/",
  1530. target: "_blank",
  1531. className: "btn"
  1532. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1533. item: true,
  1534. xs: 12,
  1535. sm: 12,
  1536. style: {
  1537. marginTop: "-30px"
  1538. },
  1539. className: classes.marginAuto
  1540. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1541. className: "container"
  1542. }, Businees_Partner_jsx("img", {
  1543. src: emilia_default.a,
  1544. alt: "Snow",
  1545. style: {
  1546. width: "100%"
  1547. }
  1548. }), Businees_Partner_jsx(Button["a" /* default */], {
  1549. href: "http://www.emilia-hotel.com/",
  1550. target: "_blank",
  1551. className: "btn"
  1552. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1553. item: true,
  1554. xs: 12,
  1555. sm: 12,
  1556. style: {
  1557. marginTop: "-30px"
  1558. },
  1559. className: classes.marginAuto
  1560. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1561. className: "container"
  1562. }, Businees_Partner_jsx("img", {
  1563. src: pim_default.a,
  1564. alt: "Snow",
  1565. style: {
  1566. width: "100%"
  1567. }
  1568. }), Businees_Partner_jsx(Button["a" /* default */], {
  1569. href: "https://www.instagram.com/palembangindahmall/?hl=id",
  1570. target: "_blank",
  1571. className: "btn"
  1572. }, "Visit Page")))), Businees_Partner_jsx(Grid_default.a, {
  1573. item: true,
  1574. xs: 12,
  1575. sm: 12,
  1576. style: {
  1577. marginTop: "-30px"
  1578. },
  1579. className: classes.marginAuto
  1580. }, Businees_Partner_jsx(Card["a" /* default */], null, Businees_Partner_jsx("div", {
  1581. className: "container"
  1582. }, Businees_Partner_jsx("img", {
  1583. src: home_default.a,
  1584. alt: "Snow",
  1585. style: {
  1586. width: "100%"
  1587. }
  1588. }), Businees_Partner_jsx(Button["a" /* default */], {
  1589. href: "http://homes.thamrin.xyz/",
  1590. target: "_blank",
  1591. className: "btn"
  1592. }, "Visit Page"))))));
  1593. }
  1594. // EXTERNAL MODULE: ./assets/img/gallery/1.jpg
  1595. var gallery_1 = __webpack_require__("K/Fe");
  1596. var gallery_1_default = /*#__PURE__*/__webpack_require__.n(gallery_1);
  1597. // EXTERNAL MODULE: ./assets/img/gallery/2.jpg
  1598. var gallery_2 = __webpack_require__("ewzQ");
  1599. var gallery_2_default = /*#__PURE__*/__webpack_require__.n(gallery_2);
  1600. // EXTERNAL MODULE: ./assets/img/gallery/3.jpg
  1601. var gallery_3 = __webpack_require__("pvnu");
  1602. var gallery_3_default = /*#__PURE__*/__webpack_require__.n(gallery_3);
  1603. // EXTERNAL MODULE: ./assets/img/gallery/4.jpg
  1604. var gallery_4 = __webpack_require__("+dZB");
  1605. var gallery_4_default = /*#__PURE__*/__webpack_require__.n(gallery_4);
  1606. // EXTERNAL MODULE: ./assets/img/gallery/5.jpg
  1607. var _5 = __webpack_require__("wmUz");
  1608. var _5_default = /*#__PURE__*/__webpack_require__.n(_5);
  1609. // EXTERNAL MODULE: ./assets/img/gallery/6.jpg
  1610. var _6 = __webpack_require__("fJ1K");
  1611. var _6_default = /*#__PURE__*/__webpack_require__.n(_6);
  1612. // EXTERNAL MODULE: ./assets/img/gallery/7.jpg
  1613. var _7 = __webpack_require__("+7RK");
  1614. var _7_default = /*#__PURE__*/__webpack_require__.n(_7);
  1615. // EXTERNAL MODULE: ./assets/img/gallery/8.jpg
  1616. var _8 = __webpack_require__("2wdC");
  1617. var _8_default = /*#__PURE__*/__webpack_require__.n(_8);
  1618. // CONCATENATED MODULE: ./pages-sections/home/gallery.js
  1619. var gallery_jsx = external_react_default.a.createElement;
  1620. // core components
  1621. //image
  1622. const gallery_useStyles = Object(styles_["makeStyles"])(landingPageSections_workStyle);
  1623. function gallery_WorkSection() {
  1624. const classes = gallery_useStyles();
  1625. return gallery_jsx("div", null, gallery_jsx("br", null), gallery_jsx("h3", {
  1626. className: classes.title
  1627. }, "Thamrin Group Gallery"), gallery_jsx("div", {
  1628. className: classes.section,
  1629. id: "notifications",
  1630. style: {
  1631. marginTop: "-150px"
  1632. }
  1633. }, gallery_jsx("div", {
  1634. className: classes.section
  1635. }, gallery_jsx("div", {
  1636. className: classes.container,
  1637. align: "center"
  1638. }, gallery_jsx(Grid_default.a, {
  1639. container: true,
  1640. style: {
  1641. padding: "10px"
  1642. }
  1643. }, gallery_jsx(Grid_default.a, {
  1644. item: true,
  1645. xs: 3,
  1646. style: {
  1647. padding: "10px"
  1648. }
  1649. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1650. src: gallery_1_default.a,
  1651. alt: "First slide",
  1652. className: "slick-image"
  1653. }))), gallery_jsx(Grid_default.a, {
  1654. item: true,
  1655. xs: 3,
  1656. style: {
  1657. padding: "10px"
  1658. }
  1659. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1660. src: gallery_2_default.a,
  1661. alt: "First slide",
  1662. className: "slick-image"
  1663. }))), gallery_jsx(Grid_default.a, {
  1664. item: true,
  1665. xs: 3,
  1666. style: {
  1667. padding: "10px"
  1668. }
  1669. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1670. src: gallery_3_default.a,
  1671. alt: "First slide",
  1672. className: "slick-image"
  1673. }))), gallery_jsx(Grid_default.a, {
  1674. item: true,
  1675. xs: 3,
  1676. style: {
  1677. padding: "10px"
  1678. }
  1679. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1680. src: gallery_4_default.a,
  1681. alt: "First slide",
  1682. className: "slick-image"
  1683. })))), gallery_jsx(Grid_default.a, {
  1684. container: true,
  1685. style: {
  1686. padding: "10px",
  1687. marginTop: "-80px"
  1688. }
  1689. }, gallery_jsx(Grid_default.a, {
  1690. item: true,
  1691. xs: 3,
  1692. style: {
  1693. padding: "10px"
  1694. }
  1695. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1696. src: _5_default.a,
  1697. alt: "First slide",
  1698. className: "slick-image"
  1699. }))), gallery_jsx(Grid_default.a, {
  1700. item: true,
  1701. xs: 3,
  1702. style: {
  1703. padding: "10px"
  1704. }
  1705. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1706. src: _6_default.a,
  1707. alt: "First slide",
  1708. className: "slick-image"
  1709. }))), gallery_jsx(Grid_default.a, {
  1710. item: true,
  1711. xs: 3,
  1712. style: {
  1713. padding: "10px"
  1714. }
  1715. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1716. src: _7_default.a,
  1717. alt: "First slide",
  1718. className: "slick-image"
  1719. }))), gallery_jsx(Grid_default.a, {
  1720. item: true,
  1721. xs: 3,
  1722. style: {
  1723. padding: "10px"
  1724. }
  1725. }, gallery_jsx(Card["a" /* default */], null, gallery_jsx("img", {
  1726. src: _8_default.a,
  1727. alt: "First slide",
  1728. className: "slick-image"
  1729. }))))))));
  1730. }
  1731. // EXTERNAL MODULE: ./pages/home.css
  1732. var pages_home = __webpack_require__("M9IG");
  1733. var pages_home_default = /*#__PURE__*/__webpack_require__.n(pages_home);
  1734. // EXTERNAL MODULE: ./assets/img/Black.png
  1735. var Black = __webpack_require__("7WxK");
  1736. // EXTERNAL MODULE: ./assets/img/wa.png
  1737. var wa = __webpack_require__("ZAH2");
  1738. // CONCATENATED MODULE: ./pages/home.js
  1739. var home_jsx = external_react_default.a.createElement;
  1740. // nodejs library that concatenates classes
  1741. // @material-ui/core components
  1742. // @material-ui/icons
  1743. // core components
  1744. // Sections for this page
  1745. //image
  1746. const dashboardRoutes = [];
  1747. const home_useStyles = Object(styles_["makeStyles"])(home);
  1748. function LandingPage(props) {
  1749. const classes = home_useStyles();
  1750. const rest = Object.assign({}, props);
  1751. console.log(pages_home_default.a.act);
  1752. return home_jsx("div", null, home_jsx("link", {
  1753. rel: "stylesheet",
  1754. href: "https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
  1755. }), home_jsx(Header["a" /* default */], {
  1756. color: "dark",
  1757. routes: dashboardRoutes,
  1758. leftLinks: home_jsx(HeaderHome, null),
  1759. fixed: true
  1760. }), home_jsx("div", {
  1761. className: external_classnames_default()(classes.main, classes.mainRaised),
  1762. style: {
  1763. marginTop: "70px"
  1764. }
  1765. }, home_jsx("div", {
  1766. className: classes.container
  1767. }, home_jsx(Carousel, null), home_jsx(WorkSection, null), home_jsx(gallery_WorkSection, null), home_jsx("a", {
  1768. href: "https://wa.me/+6287797315685",
  1769. className: "float",
  1770. target: "_blank"
  1771. }, home_jsx("i", {
  1772. className: "fa fa-whatsapp my-float"
  1773. })))), home_jsx("br", null), home_jsx(Footer, null));
  1774. }
  1775. /***/ }),
  1776. /***/ "EmCc":
  1777. /***/ (function(module, exports) {
  1778. module.exports = require("@material-ui/core/IconButton");
  1779. /***/ }),
  1780. /***/ "Fm7H":
  1781. /***/ (function(module, exports) {
  1782. module.exports = require("@material-ui/icons/Favorite");
  1783. /***/ }),
  1784. /***/ "HWfr":
  1785. /***/ (function(module, exports) {
  1786. module.exports = require("@material-ui/icons/Chat");
  1787. /***/ }),
  1788. /***/ "HoRM":
  1789. /***/ (function(module, exports) {
  1790. module.exports = "data:image/png;base64,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"
  1791. /***/ }),
  1792. /***/ "J4G4":
  1793. /***/ (function(module, exports) {
  1794. module.exports = "/_next/static/images/suzuki-c1132f96464338ff66d35172cd1ff61b.jpg";
  1795. /***/ }),
  1796. /***/ "JQ2V":
  1797. /***/ (function(module, exports) {
  1798. module.exports = require("@material-ui/core/Grid");
  1799. /***/ }),
  1800. /***/ "K/Fe":
  1801. /***/ (function(module, exports) {
  1802. module.exports = "/_next/static/images/1-65504329d828dc760730454885b8e63f.jpg";
  1803. /***/ }),
  1804. /***/ "K2gz":
  1805. /***/ (function(module, exports) {
  1806. module.exports = require("classnames");
  1807. /***/ }),
  1808. /***/ "KKbo":
  1809. /***/ (function(module, exports) {
  1810. module.exports = require("@material-ui/core");
  1811. /***/ }),
  1812. /***/ "Kg+a":
  1813. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  1814. "use strict";
  1815. // EXTERNAL MODULE: external "react"
  1816. var external_react_ = __webpack_require__("cDcd");
  1817. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  1818. // EXTERNAL MODULE: external "classnames"
  1819. var external_classnames_ = __webpack_require__("K2gz");
  1820. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  1821. // EXTERNAL MODULE: external "@material-ui/core/styles/makeStyles"
  1822. var makeStyles_ = __webpack_require__("8//M");
  1823. var makeStyles_default = /*#__PURE__*/__webpack_require__.n(makeStyles_);
  1824. // EXTERNAL MODULE: external "@material-ui/core/Button"
  1825. var Button_ = __webpack_require__("Wh1t");
  1826. var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
  1827. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  1828. var nextjs_material_kit = __webpack_require__("eDSW");
  1829. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/buttonStyle.js
  1830. const buttonStyle = {
  1831. button: {
  1832. minHeight: "auto",
  1833. minWidth: "auto",
  1834. backgroundColor: nextjs_material_kit["i" /* grayColor */],
  1835. color: "#FFFFFF",
  1836. 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)",
  1837. border: "none",
  1838. borderRadius: "3px",
  1839. position: "relative",
  1840. padding: "12px 30px",
  1841. margin: ".3125rem 1px",
  1842. fontSize: "12px",
  1843. fontWeight: "400",
  1844. textTransform: "uppercase",
  1845. letterSpacing: "0",
  1846. willChange: "box-shadow, transform",
  1847. transition: "box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1)",
  1848. lineHeight: "1.42857143",
  1849. textAlign: "center",
  1850. whiteSpace: "nowrap",
  1851. verticalAlign: "middle",
  1852. touchAction: "manipulation",
  1853. cursor: "pointer",
  1854. "&:hover,&:focus": {
  1855. color: "#FFFFFF",
  1856. backgroundColor: nextjs_material_kit["i" /* grayColor */],
  1857. 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)"
  1858. },
  1859. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  1860. position: "relative",
  1861. display: "inline-block",
  1862. top: "0",
  1863. fontSize: "1.1rem",
  1864. marginRight: "4px",
  1865. verticalAlign: "middle"
  1866. },
  1867. "& svg": {
  1868. position: "relative",
  1869. display: "inline-block",
  1870. top: "0",
  1871. width: "18px",
  1872. height: "18px",
  1873. marginRight: "4px",
  1874. verticalAlign: "middle"
  1875. },
  1876. "&$justIcon": {
  1877. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  1878. marginRight: "0px",
  1879. position: "absolute",
  1880. width: "100%",
  1881. transform: "none",
  1882. left: "0px",
  1883. top: "0px",
  1884. height: "100%",
  1885. lineHeight: "41px",
  1886. fontSize: "20px"
  1887. }
  1888. }
  1889. },
  1890. fullWidth: {
  1891. width: "100%"
  1892. },
  1893. primary: {
  1894. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  1895. 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)}`,
  1896. "&:hover,&:focus": {
  1897. backgroundColor: nextjs_material_kit["p" /* primaryColor */],
  1898. 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)}`
  1899. }
  1900. },
  1901. info: {
  1902. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  1903. 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)}`,
  1904. "&:hover,&:focus": {
  1905. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  1906. 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)}`
  1907. }
  1908. },
  1909. success: {
  1910. backgroundColor: nextjs_material_kit["u" /* successColor */],
  1911. 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)}`,
  1912. "&:hover,&:focus": {
  1913. backgroundColor: nextjs_material_kit["u" /* successColor */],
  1914. 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)}`
  1915. }
  1916. },
  1917. warning: {
  1918. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  1919. 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)}`,
  1920. "&:hover,&:focus": {
  1921. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  1922. 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)}`
  1923. }
  1924. },
  1925. danger: {
  1926. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  1927. 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)}`,
  1928. "&:hover,&:focus": {
  1929. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  1930. 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)}`
  1931. }
  1932. },
  1933. rose: {
  1934. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  1935. 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)}`,
  1936. "&:hover,&:focus": {
  1937. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  1938. 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)}`
  1939. }
  1940. },
  1941. white: {
  1942. "&,&:focus,&:hover,&:visited": {
  1943. backgroundColor: "#FFFFFF",
  1944. color: nextjs_material_kit["i" /* grayColor */]
  1945. }
  1946. },
  1947. twitter: {
  1948. backgroundColor: "#55acee",
  1949. color: "#fff",
  1950. 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)",
  1951. "&:hover,&:focus,&:visited": {
  1952. backgroundColor: "#55acee",
  1953. color: "#fff",
  1954. 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)"
  1955. }
  1956. },
  1957. facebook: {
  1958. backgroundColor: "#3b5998",
  1959. color: "#fff",
  1960. 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)",
  1961. "&:hover,&:focus": {
  1962. backgroundColor: "#3b5998",
  1963. color: "#fff",
  1964. 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)"
  1965. }
  1966. },
  1967. google: {
  1968. backgroundColor: "#dd4b39",
  1969. color: "#fff",
  1970. 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)",
  1971. "&:hover,&:focus": {
  1972. backgroundColor: "#dd4b39",
  1973. color: "#fff",
  1974. 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)"
  1975. }
  1976. },
  1977. github: {
  1978. backgroundColor: "#333333",
  1979. color: "#fff",
  1980. 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)",
  1981. "&:hover,&:focus": {
  1982. backgroundColor: "#333333",
  1983. color: "#fff",
  1984. 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)"
  1985. }
  1986. },
  1987. simple: {
  1988. "&,&:focus,&:hover,&:visited": {
  1989. color: "#FFFFFF",
  1990. background: "transparent",
  1991. boxShadow: "none"
  1992. },
  1993. "&$primary": {
  1994. "&,&:focus,&:hover,&:visited": {
  1995. color: nextjs_material_kit["p" /* primaryColor */]
  1996. }
  1997. },
  1998. "&$info": {
  1999. "&,&:focus,&:hover,&:visited": {
  2000. color: nextjs_material_kit["m" /* infoColor */]
  2001. }
  2002. },
  2003. "&$success": {
  2004. "&,&:focus,&:hover,&:visited": {
  2005. color: nextjs_material_kit["u" /* successColor */]
  2006. }
  2007. },
  2008. "&$warning": {
  2009. "&,&:focus,&:hover,&:visited": {
  2010. color: nextjs_material_kit["z" /* warningColor */]
  2011. }
  2012. },
  2013. "&$rose": {
  2014. "&,&:focus,&:hover,&:visited": {
  2015. color: nextjs_material_kit["r" /* roseColor */]
  2016. }
  2017. },
  2018. "&$danger": {
  2019. "&,&:focus,&:hover,&:visited": {
  2020. color: nextjs_material_kit["f" /* dangerColor */]
  2021. }
  2022. },
  2023. "&$twitter": {
  2024. "&,&:focus,&:hover,&:visited": {
  2025. color: "#55acee"
  2026. }
  2027. },
  2028. "&$facebook": {
  2029. "&,&:focus,&:hover,&:visited": {
  2030. color: "#3b5998"
  2031. }
  2032. },
  2033. "&$google": {
  2034. "&,&:focus,&:hover,&:visited": {
  2035. color: "#dd4b39"
  2036. }
  2037. },
  2038. "&$github": {
  2039. "&,&:focus,&:hover,&:visited": {
  2040. color: "#333333"
  2041. }
  2042. }
  2043. },
  2044. transparent: {
  2045. "&,&:focus,&:hover,&:visited": {
  2046. color: "inherit",
  2047. background: "transparent",
  2048. boxShadow: "none"
  2049. }
  2050. },
  2051. disabled: {
  2052. opacity: "0.65",
  2053. pointerEvents: "none"
  2054. },
  2055. lg: {
  2056. padding: "1.125rem 2.25rem",
  2057. fontSize: "0.875rem",
  2058. lineHeight: "1.333333",
  2059. borderRadius: "0.2rem"
  2060. },
  2061. sm: {
  2062. padding: "0.40625rem 1.25rem",
  2063. fontSize: "0.6875rem",
  2064. lineHeight: "1.5",
  2065. borderRadius: "0.2rem"
  2066. },
  2067. round: {
  2068. borderRadius: "30px"
  2069. },
  2070. block: {
  2071. width: "100% !important"
  2072. },
  2073. link: {
  2074. "&,&:hover,&:focus": {
  2075. backgroundColor: "transparent",
  2076. color: "#999999",
  2077. boxShadow: "none"
  2078. }
  2079. },
  2080. justIcon: {
  2081. paddingLeft: "12px",
  2082. paddingRight: "12px",
  2083. fontSize: "20px",
  2084. height: "41px",
  2085. minWidth: "41px",
  2086. width: "41px",
  2087. "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": {
  2088. marginRight: "0px"
  2089. },
  2090. "&$lg": {
  2091. height: "57px",
  2092. minWidth: "57px",
  2093. width: "57px",
  2094. lineHeight: "56px",
  2095. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2096. fontSize: "32px",
  2097. lineHeight: "56px"
  2098. },
  2099. "& svg": {
  2100. width: "32px",
  2101. height: "32px"
  2102. }
  2103. },
  2104. "&$sm": {
  2105. height: "30px",
  2106. minWidth: "30px",
  2107. width: "30px",
  2108. "& .fab,& .fas,& .far,& .fal,& .material-icons": {
  2109. fontSize: "17px",
  2110. lineHeight: "29px"
  2111. },
  2112. "& svg": {
  2113. width: "17px",
  2114. height: "17px"
  2115. }
  2116. }
  2117. }
  2118. };
  2119. /* harmony default export */ var components_buttonStyle = (buttonStyle);
  2120. // CONCATENATED MODULE: ./components/CustomButtons/Button.js
  2121. var __jsx = external_react_default.a.createElement;
  2122. 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); }
  2123. 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; }
  2124. 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; }
  2125. 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; }
  2126. 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; }
  2127. 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; }
  2128. // nodejs library to set properties for components
  2129. // nodejs library that concatenates classes
  2130. // @material-ui/core components
  2131. // core components
  2132. const makeComponentStyles = makeStyles_default()(() => _objectSpread({}, components_buttonStyle));
  2133. const RegularButton = external_react_default.a.forwardRef((props, ref) => {
  2134. const {
  2135. color,
  2136. round,
  2137. children,
  2138. fullWidth,
  2139. disabled,
  2140. simple,
  2141. size,
  2142. block,
  2143. link,
  2144. justIcon,
  2145. className
  2146. } = props,
  2147. rest = _objectWithoutProperties(props, ["color", "round", "children", "fullWidth", "disabled", "simple", "size", "block", "link", "justIcon", "className"]);
  2148. const classes = makeComponentStyles();
  2149. const btnClasses = external_classnames_default()({
  2150. [classes.button]: true,
  2151. [classes[size]]: size,
  2152. [classes[color]]: color,
  2153. [classes.round]: round,
  2154. [classes.fullWidth]: fullWidth,
  2155. [classes.disabled]: disabled,
  2156. [classes.simple]: simple,
  2157. [classes.block]: block,
  2158. [classes.link]: link,
  2159. [classes.justIcon]: justIcon,
  2160. [className]: className
  2161. });
  2162. return __jsx(Button_default.a, _extends({}, rest, {
  2163. ref: ref,
  2164. classes: {
  2165. root: btnClasses
  2166. }
  2167. }), children);
  2168. });
  2169. /* harmony default export */ var Button = __webpack_exports__["a"] = (RegularButton);
  2170. /***/ }),
  2171. /***/ "M2SB":
  2172. /***/ (function(module, exports) {
  2173. module.exports = require("@material-ui/icons/VerifiedUser");
  2174. /***/ }),
  2175. /***/ "M9IG":
  2176. /***/ (function(module, exports) {
  2177. /***/ }),
  2178. /***/ "MXZv":
  2179. /***/ (function(module, exports) {
  2180. module.exports = "/_next/static/images/emilia-d6ad9d26dda2a0eac3893d42b9bfcff8.jpg";
  2181. /***/ }),
  2182. /***/ "Ms0O":
  2183. /***/ (function(module, exports) {
  2184. module.exports = require("@material-ui/core/Toolbar");
  2185. /***/ }),
  2186. /***/ "O/hg":
  2187. /***/ (function(module, exports) {
  2188. module.exports = require("react-slick");
  2189. /***/ }),
  2190. /***/ "Osoz":
  2191. /***/ (function(module, exports) {
  2192. module.exports = require("next/dist/next-server/lib/router-context.js");
  2193. /***/ }),
  2194. /***/ "Q01v":
  2195. /***/ (function(module, exports) {
  2196. module.exports = require("@material-ui/core/Drawer");
  2197. /***/ }),
  2198. /***/ "QH4I":
  2199. /***/ (function(module, exports) {
  2200. module.exports = "/_next/static/images/3-5f2f0080fbbeb7e39946586cb6e0827d.jpg";
  2201. /***/ }),
  2202. /***/ "QOEo":
  2203. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2204. "use strict";
  2205. // EXPORTS
  2206. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CustomDropdown; });
  2207. // EXTERNAL MODULE: external "react"
  2208. var external_react_ = __webpack_require__("cDcd");
  2209. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  2210. // EXTERNAL MODULE: external "classnames"
  2211. var external_classnames_ = __webpack_require__("K2gz");
  2212. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  2213. // EXTERNAL MODULE: external "@material-ui/core/styles"
  2214. var styles_ = __webpack_require__("9Pu4");
  2215. // EXTERNAL MODULE: external "@material-ui/core/MenuItem"
  2216. var MenuItem_ = __webpack_require__("x54t");
  2217. var MenuItem_default = /*#__PURE__*/__webpack_require__.n(MenuItem_);
  2218. // EXTERNAL MODULE: external "@material-ui/core/MenuList"
  2219. var MenuList_ = __webpack_require__("xmQw");
  2220. var MenuList_default = /*#__PURE__*/__webpack_require__.n(MenuList_);
  2221. // EXTERNAL MODULE: external "@material-ui/core/ClickAwayListener"
  2222. var ClickAwayListener_ = __webpack_require__("31Yn");
  2223. var ClickAwayListener_default = /*#__PURE__*/__webpack_require__.n(ClickAwayListener_);
  2224. // EXTERNAL MODULE: external "@material-ui/core/Paper"
  2225. var Paper_ = __webpack_require__("qt1I");
  2226. var Paper_default = /*#__PURE__*/__webpack_require__.n(Paper_);
  2227. // EXTERNAL MODULE: external "@material-ui/core/Grow"
  2228. var Grow_ = __webpack_require__("mf1M");
  2229. var Grow_default = /*#__PURE__*/__webpack_require__.n(Grow_);
  2230. // EXTERNAL MODULE: external "@material-ui/core/Divider"
  2231. var Divider_ = __webpack_require__("nybW");
  2232. var Divider_default = /*#__PURE__*/__webpack_require__.n(Divider_);
  2233. // EXTERNAL MODULE: external "@material-ui/core/Icon"
  2234. var Icon_ = __webpack_require__("7vM9");
  2235. var Icon_default = /*#__PURE__*/__webpack_require__.n(Icon_);
  2236. // EXTERNAL MODULE: external "@material-ui/core/Popper"
  2237. var Popper_ = __webpack_require__("jD8W");
  2238. var Popper_default = /*#__PURE__*/__webpack_require__.n(Popper_);
  2239. // EXTERNAL MODULE: ./components/CustomButtons/Button.js + 1 modules
  2240. var Button = __webpack_require__("Kg+a");
  2241. // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js
  2242. var nextjs_material_kit = __webpack_require__("eDSW");
  2243. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/customDropdownStyle.js
  2244. 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; }
  2245. 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; }
  2246. 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; }
  2247. const customDropdownStyle = theme => ({
  2248. popperClose: {
  2249. pointerEvents: "none"
  2250. },
  2251. pooperNav: {
  2252. [theme.breakpoints.down("sm")]: {
  2253. position: "static !important",
  2254. left: "unset !important",
  2255. top: "unset !important",
  2256. transform: "none !important",
  2257. willChange: "none !important",
  2258. "& > div": {
  2259. boxShadow: "none !important",
  2260. marginLeft: "1.5rem",
  2261. marginRight: "1.5rem",
  2262. transition: "none !important",
  2263. marginTop: "0px !important",
  2264. marginBottom: "5px !important",
  2265. padding: "0px !important"
  2266. }
  2267. }
  2268. },
  2269. dropdown: {
  2270. borderRadius: "3px",
  2271. border: "0",
  2272. boxShadow: "0 2px 5px 0 rgba(0, 0, 0, 0.26)",
  2273. top: "100%",
  2274. zIndex: "1000",
  2275. minWidth: "160px",
  2276. padding: "5px 0",
  2277. margin: "2px 0 0",
  2278. fontSize: "14px",
  2279. textAlign: "left",
  2280. listStyle: "none",
  2281. backgroundColor: "#fff",
  2282. backgroundClip: "padding-box"
  2283. },
  2284. menuList: {
  2285. padding: "0"
  2286. },
  2287. popperResponsive: {
  2288. zIndex: "1200",
  2289. position: "absolute !important",
  2290. [theme.breakpoints.down("sm")]: {
  2291. zIndex: "1640",
  2292. position: "static !important",
  2293. float: "none",
  2294. width: "auto",
  2295. marginTop: "0",
  2296. backgroundColor: "transparent",
  2297. border: "0",
  2298. boxShadow: "none",
  2299. color: "black"
  2300. }
  2301. },
  2302. dropdownItem: _objectSpread({}, nextjs_material_kit["g" /* defaultFont */], {
  2303. fontSize: "13px",
  2304. padding: "10px 20px",
  2305. margin: "0 5px",
  2306. borderRadius: "2px",
  2307. position: "relative",
  2308. transition: "all 150ms linear",
  2309. display: "block",
  2310. clear: "both",
  2311. fontWeight: "400",
  2312. height: "fit-content",
  2313. color: "#333",
  2314. whiteSpace: "nowrap",
  2315. minHeight: "unset"
  2316. }),
  2317. blackHover: {
  2318. "&:hover": {
  2319. boxShadow: "0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(33, 33, 33, 0.4)",
  2320. backgroundColor: "#212121",
  2321. color: "#fff"
  2322. }
  2323. },
  2324. primaryHover: {
  2325. "&:hover": _objectSpread({
  2326. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2327. color: "#FFFFFF"
  2328. }, nextjs_material_kit["n" /* primaryBoxShadow */])
  2329. },
  2330. infoHover: {
  2331. "&:hover": _objectSpread({
  2332. backgroundColor: nextjs_material_kit["m" /* infoColor */],
  2333. color: "#FFFFFF"
  2334. }, nextjs_material_kit["k" /* infoBoxShadow */])
  2335. },
  2336. successHover: {
  2337. "&:hover": _objectSpread({
  2338. backgroundColor: nextjs_material_kit["u" /* successColor */],
  2339. color: "#FFFFFF"
  2340. }, nextjs_material_kit["s" /* successBoxShadow */])
  2341. },
  2342. warningHover: {
  2343. "&:hover": _objectSpread({
  2344. backgroundColor: nextjs_material_kit["z" /* warningColor */],
  2345. color: "#FFFFFF"
  2346. }, nextjs_material_kit["x" /* warningBoxShadow */])
  2347. },
  2348. dangerHover: {
  2349. "&:hover": _objectSpread({
  2350. backgroundColor: nextjs_material_kit["f" /* dangerColor */],
  2351. color: "#FFFFFF"
  2352. }, nextjs_material_kit["d" /* dangerBoxShadow */])
  2353. },
  2354. roseHover: {
  2355. "&:hover": _objectSpread({
  2356. backgroundColor: nextjs_material_kit["r" /* roseColor */],
  2357. color: "#FFFFFF"
  2358. }, nextjs_material_kit["q" /* roseBoxShadow */])
  2359. },
  2360. dropdownItemRTL: {
  2361. textAlign: "right"
  2362. },
  2363. dropdownDividerItem: {
  2364. margin: "5px 0",
  2365. backgroundColor: "rgba(0, 0, 0, 0.12)",
  2366. height: "1px",
  2367. overflow: "hidden"
  2368. },
  2369. buttonIcon: {
  2370. width: "20px",
  2371. height: "20px"
  2372. },
  2373. caret: {
  2374. transition: "all 150ms ease-in",
  2375. display: "inline-block",
  2376. width: "0",
  2377. height: "0",
  2378. marginLeft: "4px",
  2379. verticalAlign: "middle",
  2380. borderTop: "4px solid",
  2381. borderRight: "4px solid transparent",
  2382. borderLeft: "4px solid transparent"
  2383. },
  2384. caretActive: {
  2385. transform: "rotate(180deg)"
  2386. },
  2387. caretRTL: {
  2388. marginRight: "4px"
  2389. },
  2390. dropdownHeader: {
  2391. display: "block",
  2392. padding: "0.1875rem 1.25rem",
  2393. fontSize: "0.75rem",
  2394. lineHeight: "1.428571",
  2395. color: "#777",
  2396. whiteSpace: "nowrap",
  2397. fontWeight: "inherit",
  2398. marginTop: "10px",
  2399. minHeight: "unset",
  2400. "&:hover,&:focus": {
  2401. backgroundColor: "transparent",
  2402. cursor: "auto"
  2403. }
  2404. },
  2405. noLiPadding: {
  2406. padding: "0"
  2407. }
  2408. });
  2409. /* harmony default export */ var components_customDropdownStyle = (customDropdownStyle);
  2410. // CONCATENATED MODULE: ./components/CustomDropdown/CustomDropdown.js
  2411. var __jsx = external_react_default.a.createElement;
  2412. 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); }
  2413. // nodejs library that concatenates classes
  2414. // nodejs library to set properties for components
  2415. // @material-ui/core components
  2416. // core components
  2417. const useStyles = Object(styles_["makeStyles"])(components_customDropdownStyle);
  2418. function CustomDropdown(props) {
  2419. const [anchorEl, setAnchorEl] = external_react_default.a.useState(null);
  2420. const handleClick = event => {
  2421. if (anchorEl && anchorEl.contains(event.target)) {
  2422. setAnchorEl(null);
  2423. } else {
  2424. setAnchorEl(event.currentTarget);
  2425. }
  2426. };
  2427. const handleClose = param => {
  2428. setAnchorEl(null);
  2429. if (props && props.onClick) {
  2430. props.onClick(param);
  2431. }
  2432. };
  2433. const handleCloseAway = event => {
  2434. if (anchorEl.contains(event.target)) {
  2435. return;
  2436. }
  2437. setAnchorEl(null);
  2438. };
  2439. const classes = useStyles();
  2440. const {
  2441. buttonText,
  2442. buttonIcon,
  2443. dropdownList,
  2444. buttonProps,
  2445. dropup,
  2446. dropdownHeader,
  2447. caret,
  2448. hoverColor,
  2449. left,
  2450. rtlActive,
  2451. noLiPadding,
  2452. navDropdown
  2453. } = props;
  2454. const caretClasses = external_classnames_default()({
  2455. [classes.caret]: true,
  2456. [classes.caretActive]: Boolean(anchorEl),
  2457. [classes.caretRTL]: rtlActive
  2458. });
  2459. const dropdownItem = external_classnames_default()({
  2460. [classes.dropdownItem]: true,
  2461. [classes[hoverColor + "Hover"]]: true,
  2462. [classes.noLiPadding]: noLiPadding,
  2463. [classes.dropdownItemRTL]: rtlActive
  2464. });
  2465. let icon = null;
  2466. switch (typeof buttonIcon) {
  2467. case "object":
  2468. icon = __jsx(props.buttonIcon, {
  2469. className: classes.buttonIcon
  2470. });
  2471. break;
  2472. case "string":
  2473. icon = __jsx(Icon_default.a, {
  2474. className: classes.buttonIcon
  2475. }, props.buttonIcon);
  2476. break;
  2477. default:
  2478. icon = null;
  2479. break;
  2480. }
  2481. return __jsx("div", null, __jsx("div", null, __jsx(Button["a" /* default */], _extends({
  2482. "aria-label": "Notifications",
  2483. "aria-owns": anchorEl ? "menu-list" : null,
  2484. "aria-haspopup": "true"
  2485. }, buttonProps, {
  2486. onClick: handleClick
  2487. }), icon, buttonText !== undefined ? buttonText : null, caret ? __jsx("b", {
  2488. className: caretClasses
  2489. }) : null)), __jsx(Popper_default.a, {
  2490. open: Boolean(anchorEl),
  2491. anchorEl: anchorEl,
  2492. transition: true,
  2493. disablePortal: true,
  2494. placement: dropup ? left ? "top-start" : "top" : left ? "bottom-start" : "bottom",
  2495. className: external_classnames_default()({
  2496. [classes.popperClose]: !anchorEl,
  2497. [classes.popperResponsive]: true,
  2498. [classes.pooperNav]: Boolean(anchorEl) && navDropdown
  2499. })
  2500. }, () => __jsx(Grow_default.a, {
  2501. in: Boolean(anchorEl),
  2502. id: "menu-list",
  2503. style: dropup ? {
  2504. transformOrigin: "0 100% 0"
  2505. } : {
  2506. transformOrigin: "0 0 0"
  2507. }
  2508. }, __jsx(Paper_default.a, {
  2509. className: classes.dropdown
  2510. }, __jsx(ClickAwayListener_default.a, {
  2511. onClickAway: handleCloseAway
  2512. }, __jsx(MenuList_default.a, {
  2513. role: "menu",
  2514. className: classes.menuList
  2515. }, dropdownHeader !== undefined ? __jsx(MenuItem_default.a, {
  2516. onClick: () => handleClose(dropdownHeader),
  2517. className: classes.dropdownHeader
  2518. }, dropdownHeader) : null, dropdownList.map((prop, key) => {
  2519. if (prop.divider) {
  2520. return __jsx(Divider_default.a, {
  2521. key: key,
  2522. onClick: () => handleClose("divider"),
  2523. className: classes.dropdownDividerItem
  2524. });
  2525. }
  2526. return __jsx(MenuItem_default.a, {
  2527. key: key,
  2528. onClick: () => handleClose(prop),
  2529. className: dropdownItem
  2530. }, prop);
  2531. })))))));
  2532. }
  2533. CustomDropdown.defaultProps = {
  2534. caret: true,
  2535. hoverColor: "primary"
  2536. };
  2537. /***/ }),
  2538. /***/ "UVoM":
  2539. /***/ (function(module, exports) {
  2540. module.exports = require("@material-ui/core/Typography");
  2541. /***/ }),
  2542. /***/ "Uo6P":
  2543. /***/ (function(module, exports) {
  2544. module.exports = require("@material-ui/icons/Fingerprint");
  2545. /***/ }),
  2546. /***/ "Uynj":
  2547. /***/ (function(module, exports) {
  2548. module.exports = require("@material-ui/core/Container");
  2549. /***/ }),
  2550. /***/ "Wh1t":
  2551. /***/ (function(module, exports) {
  2552. module.exports = require("@material-ui/core/Button");
  2553. /***/ }),
  2554. /***/ "XtlH":
  2555. /***/ (function(module, exports) {
  2556. module.exports = "data:image/png;base64,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"
  2557. /***/ }),
  2558. /***/ "Y8uC":
  2559. /***/ (function(module, exports) {
  2560. module.exports = require("@material-ui/core/Hidden");
  2561. /***/ }),
  2562. /***/ "YFqc":
  2563. /***/ (function(module, exports, __webpack_require__) {
  2564. module.exports = __webpack_require__("cTJO")
  2565. /***/ }),
  2566. /***/ "YTqd":
  2567. /***/ (function(module, exports, __webpack_require__) {
  2568. "use strict";
  2569. Object.defineProperty(exports, "__esModule", {
  2570. value: true
  2571. }); // this isn't importing the escape-string-regex module
  2572. // to reduce bytes
  2573. function escapeRegex(str) {
  2574. return str.replace(/[|\\{}()[\]^$+*?.-]/g, '\\$&');
  2575. }
  2576. function getRouteRegex(normalizedRoute) {
  2577. // Escape all characters that could be considered RegEx
  2578. const escapedRoute = escapeRegex(normalizedRoute.replace(/\/$/, '') || '/');
  2579. const groups = {};
  2580. let groupIndex = 1;
  2581. const parameterizedRoute = escapedRoute.replace(/\/\\\[([^/]+?)\\\](?=\/|$)/g, (_, $1) => {
  2582. const isCatchAll = /^(\\\.){3}/.test($1);
  2583. groups[$1 // Un-escape key
  2584. .replace(/\\([|\\{}()[\]^$+*?.-])/g, '$1').replace(/^\.{3}/, '') // eslint-disable-next-line no-sequences
  2585. ] = {
  2586. pos: groupIndex++,
  2587. repeat: isCatchAll
  2588. };
  2589. return isCatchAll ? '/(.+?)' : '/([^/]+?)';
  2590. });
  2591. let namedParameterizedRoute; // dead code eliminate for browser since it's only needed
  2592. // while generating routes-manifest
  2593. if (true) {
  2594. namedParameterizedRoute = escapedRoute.replace(/\/\\\[([^/]+?)\\\](?=\/|$)/g, (_, $1) => {
  2595. const isCatchAll = /^(\\\.){3}/.test($1);
  2596. const key = $1 // Un-escape key
  2597. .replace(/\\([|\\{}()[\]^$+*?.-])/g, '$1').replace(/^\.{3}/, '');
  2598. return isCatchAll ? `/(?<${escapeRegex(key)}>.+?)` : `/(?<${escapeRegex(key)}>[^/]+?)`;
  2599. });
  2600. }
  2601. return Object.assign({
  2602. re: new RegExp('^' + parameterizedRoute + '(?:/)?$', 'i'),
  2603. groups
  2604. }, namedParameterizedRoute ? {
  2605. namedRegex: `^${namedParameterizedRoute}(?:/)?$`
  2606. } : {});
  2607. }
  2608. exports.getRouteRegex = getRouteRegex;
  2609. /***/ }),
  2610. /***/ "Z2Lm":
  2611. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  2612. "use strict";
  2613. // EXPORTS
  2614. __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Parallax; });
  2615. // EXTERNAL MODULE: external "react"
  2616. var external_react_ = __webpack_require__("cDcd");
  2617. var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_);
  2618. // EXTERNAL MODULE: external "classnames"
  2619. var external_classnames_ = __webpack_require__("K2gz");
  2620. var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_);
  2621. // EXTERNAL MODULE: external "@material-ui/core/styles"
  2622. var styles_ = __webpack_require__("9Pu4");
  2623. // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/parallaxStyle.js
  2624. const parallaxStyle = theme => ({
  2625. parallax: {
  2626. height: "90vh",
  2627. maxHeight: "1000px",
  2628. overflow: "hidden",
  2629. position: "relative",
  2630. backgroundPosition: "center top",
  2631. backgroundSize: "cover",
  2632. margin: "0",
  2633. padding: "0",
  2634. border: "0",
  2635. display: "flex",
  2636. alignItems: "center"
  2637. },
  2638. filter: {
  2639. "&:before": {
  2640. background: "#212121"
  2641. },
  2642. "&:after,&:before": {
  2643. position: "absolute",
  2644. zIndex: "1",
  2645. width: "100%",
  2646. height: "100%",
  2647. display: "block",
  2648. left: "0",
  2649. top: "0",
  2650. content: "''"
  2651. }
  2652. },
  2653. small: {
  2654. height: "380px"
  2655. },
  2656. parallaxResponsive: {
  2657. [theme.breakpoints.down("md")]: {
  2658. minHeight: "660px"
  2659. }
  2660. }
  2661. });
  2662. /* harmony default export */ var components_parallaxStyle = (parallaxStyle);
  2663. // CONCATENATED MODULE: ./components/Parallax/Parallax.js
  2664. var __jsx = external_react_default.a.createElement;
  2665. 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; }
  2666. 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; }
  2667. 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; }
  2668. // nodejs library that concatenates classes
  2669. // nodejs library to set properties for components
  2670. // @material-ui/core components
  2671. // core components
  2672. const useStyles = Object(styles_["makeStyles"])(components_parallaxStyle);
  2673. function Parallax(props) {
  2674. let windowScrollTop; // if (window.innerWidth >= 768) {
  2675. // windowScrollTop = window.pageYOffset / 3;
  2676. // } else {
  2677. // windowScrollTop = 0;
  2678. // }
  2679. const [transform, setTransform] = external_react_default.a.useState("translate3d(0,0px,0)");
  2680. external_react_default.a.useEffect(() => {
  2681. if (window.innerWidth >= 768) {
  2682. window.addEventListener("scroll", resetTransform);
  2683. }
  2684. return function cleanup() {
  2685. if (window.innerWidth >= 768) {
  2686. window.removeEventListener("scroll", resetTransform);
  2687. }
  2688. };
  2689. });
  2690. const resetTransform = () => {
  2691. var windowScrollTop = window.pageYOffset / 3;
  2692. setTransform("translate3d(0," + windowScrollTop + "px,0)");
  2693. };
  2694. const {
  2695. filter,
  2696. className,
  2697. children,
  2698. style,
  2699. image,
  2700. small,
  2701. responsive
  2702. } = props;
  2703. const classes = useStyles();
  2704. const parallaxClasses = external_classnames_default()({
  2705. [classes.parallax]: true,
  2706. [classes.filter]: filter,
  2707. [classes.small]: small,
  2708. [classes.parallaxResponsive]: responsive,
  2709. [className]: className !== undefined
  2710. });
  2711. return __jsx("div", {
  2712. className: parallaxClasses,
  2713. style: _objectSpread({}, style, {
  2714. backgroundImage: "url(" + image + ")",
  2715. transform: transform
  2716. })
  2717. }, children);
  2718. }
  2719. /***/ }),
  2720. /***/ "ZAH2":
  2721. /***/ (function(module, exports) {
  2722. module.exports = "/_next/static/images/wa-2ae55f7d04bded7d00a9e1d55df479f3.png";
  2723. /***/ }),
  2724. /***/ "aK6x":
  2725. /***/ (function(module, exports) {
  2726. module.exports = "/_next/static/images/1-416162d55345d3080e5f067b2bbba6d9.jpg";
  2727. /***/ }),
  2728. /***/ "bzos":
  2729. /***/ (function(module, exports) {
  2730. module.exports = require("url");
  2731. /***/ }),
  2732. /***/ "c25J":
  2733. /***/ (function(module, exports) {
  2734. module.exports = require("@material-ui/core/ListItem");
  2735. /***/ }),
  2736. /***/ "cDcd":
  2737. /***/ (function(module, exports) {
  2738. module.exports = require("react");
  2739. /***/ }),
  2740. /***/ "cTJO":
  2741. /***/ (function(module, exports, __webpack_require__) {
  2742. "use strict";
  2743. var _interopRequireDefault = __webpack_require__("AroE");
  2744. var _interopRequireWildcard = __webpack_require__("7KCV");
  2745. exports.__esModule = true;
  2746. exports.default = void 0;
  2747. var _react = _interopRequireWildcard(__webpack_require__("cDcd"));
  2748. var _url = __webpack_require__("bzos");
  2749. var _utils = __webpack_require__("kYf9");
  2750. var _router = _interopRequireDefault(__webpack_require__("nOHt"));
  2751. var _router2 = __webpack_require__("elyg");
  2752. function isLocal(href) {
  2753. var url = (0, _url.parse)(href, false, true);
  2754. var origin = (0, _url.parse)((0, _utils.getLocationOrigin)(), false, true);
  2755. return !url.host || url.protocol === origin.protocol && url.host === origin.host;
  2756. }
  2757. function memoizedFormatUrl(formatFunc) {
  2758. var lastHref = null;
  2759. var lastAs = null;
  2760. var lastResult = null;
  2761. return (href, as) => {
  2762. if (lastResult && href === lastHref && as === lastAs) {
  2763. return lastResult;
  2764. }
  2765. var result = formatFunc(href, as);
  2766. lastHref = href;
  2767. lastAs = as;
  2768. lastResult = result;
  2769. return result;
  2770. };
  2771. }
  2772. function formatUrl(url) {
  2773. return url && typeof url === 'object' ? (0, _utils.formatWithValidation)(url) : url;
  2774. }
  2775. var observer;
  2776. var listeners = new Map();
  2777. var IntersectionObserver = false ? undefined : null;
  2778. var prefetched = {};
  2779. function getObserver() {
  2780. // Return shared instance of IntersectionObserver if already created
  2781. if (observer) {
  2782. return observer;
  2783. } // Only create shared IntersectionObserver if supported in browser
  2784. if (!IntersectionObserver) {
  2785. return undefined;
  2786. }
  2787. return observer = new IntersectionObserver(entries => {
  2788. entries.forEach(entry => {
  2789. if (!listeners.has(entry.target)) {
  2790. return;
  2791. }
  2792. var cb = listeners.get(entry.target);
  2793. if (entry.isIntersecting || entry.intersectionRatio > 0) {
  2794. observer.unobserve(entry.target);
  2795. listeners.delete(entry.target);
  2796. cb();
  2797. }
  2798. });
  2799. }, {
  2800. rootMargin: '200px'
  2801. });
  2802. }
  2803. var listenToIntersections = (el, cb) => {
  2804. var observer = getObserver();
  2805. if (!observer) {
  2806. return () => {};
  2807. }
  2808. observer.observe(el);
  2809. listeners.set(el, cb);
  2810. return () => {
  2811. try {
  2812. observer.unobserve(el);
  2813. } catch (err) {
  2814. console.error(err);
  2815. }
  2816. listeners.delete(el);
  2817. };
  2818. };
  2819. class Link extends _react.Component {
  2820. constructor(props) {
  2821. super(props);
  2822. this.p = void 0;
  2823. this.cleanUpListeners = () => {};
  2824. this.formatUrls = memoizedFormatUrl((href, asHref) => {
  2825. return {
  2826. href: (0, _router2.addBasePath)(formatUrl(href)),
  2827. as: asHref ? (0, _router2.addBasePath)(formatUrl(asHref)) : asHref
  2828. };
  2829. });
  2830. this.linkClicked = e => {
  2831. var {
  2832. nodeName,
  2833. target
  2834. } = e.currentTarget;
  2835. if (nodeName === 'A' && (target && target !== '_self' || e.metaKey || e.ctrlKey || e.shiftKey || e.nativeEvent && e.nativeEvent.which === 2)) {
  2836. // ignore click for new tab / new window behavior
  2837. return;
  2838. }
  2839. var {
  2840. href,
  2841. as
  2842. } = this.formatUrls(this.props.href, this.props.as);
  2843. if (!isLocal(href)) {
  2844. // ignore click if it's outside our scope (e.g. https://google.com)
  2845. return;
  2846. }
  2847. var {
  2848. pathname
  2849. } = window.location;
  2850. href = (0, _url.resolve)(pathname, href);
  2851. as = as ? (0, _url.resolve)(pathname, as) : href;
  2852. e.preventDefault(); // avoid scroll for urls with anchor refs
  2853. var {
  2854. scroll
  2855. } = this.props;
  2856. if (scroll == null) {
  2857. scroll = as.indexOf('#') < 0;
  2858. } // replace state instead of push if prop is present
  2859. _router.default[this.props.replace ? 'replace' : 'push'](href, as, {
  2860. shallow: this.props.shallow
  2861. }).then(success => {
  2862. if (!success) return;
  2863. if (scroll) {
  2864. window.scrollTo(0, 0);
  2865. document.body.focus();
  2866. }
  2867. });
  2868. };
  2869. if (false) {}
  2870. this.p = props.prefetch !== false;
  2871. }
  2872. componentWillUnmount() {
  2873. this.cleanUpListeners();
  2874. }
  2875. getPaths() {
  2876. var {
  2877. pathname
  2878. } = window.location;
  2879. var {
  2880. href: parsedHref,
  2881. as: parsedAs
  2882. } = this.formatUrls(this.props.href, this.props.as);
  2883. var resolvedHref = (0, _url.resolve)(pathname, parsedHref);
  2884. return [resolvedHref, parsedAs ? (0, _url.resolve)(pathname, parsedAs) : resolvedHref];
  2885. }
  2886. handleRef(ref) {
  2887. if (this.p && IntersectionObserver && ref && ref.tagName) {
  2888. this.cleanUpListeners();
  2889. var isPrefetched = prefetched[this.getPaths().join( // Join on an invalid URI character
  2890. '%')];
  2891. if (!isPrefetched) {
  2892. this.cleanUpListeners = listenToIntersections(ref, () => {
  2893. this.prefetch();
  2894. });
  2895. }
  2896. }
  2897. } // The function is memoized so that no extra lifecycles are needed
  2898. // as per https://reactjs.org/blog/2018/06/07/you-probably-dont-need-derived-state.html
  2899. prefetch(options) {
  2900. if (!this.p || true) return; // Prefetch the JSON page if asked (only in the client)
  2901. var paths = this.getPaths(); // We need to handle a prefetch error here since we may be
  2902. // loading with priority which can reject but we don't
  2903. // want to force navigation since this is only a prefetch
  2904. _router.default.prefetch(paths[
  2905. /* href */
  2906. 0], paths[
  2907. /* asPath */
  2908. 1], options).catch(err => {
  2909. if (false) {}
  2910. });
  2911. prefetched[paths.join( // Join on an invalid URI character
  2912. '%')] = true;
  2913. }
  2914. render() {
  2915. var {
  2916. children
  2917. } = this.props;
  2918. var {
  2919. href,
  2920. as
  2921. } = 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
  2922. if (typeof children === 'string') {
  2923. children = _react.default.createElement("a", null, children);
  2924. } // This will return the first child, if multiple are provided it will throw an error
  2925. var child = _react.Children.only(children);
  2926. var props = {
  2927. ref: el => {
  2928. this.handleRef(el);
  2929. if (child && typeof child === 'object' && child.ref) {
  2930. if (typeof child.ref === 'function') child.ref(el);else if (typeof child.ref === 'object') {
  2931. child.ref.current = el;
  2932. }
  2933. }
  2934. },
  2935. onMouseEnter: e => {
  2936. if (child.props && typeof child.props.onMouseEnter === 'function') {
  2937. child.props.onMouseEnter(e);
  2938. }
  2939. this.prefetch({
  2940. priority: true
  2941. });
  2942. },
  2943. onClick: e => {
  2944. if (child.props && typeof child.props.onClick === 'function') {
  2945. child.props.onClick(e);
  2946. }
  2947. if (!e.defaultPrevented) {
  2948. this.linkClicked(e);
  2949. }
  2950. }
  2951. }; // If child is an <a> tag and doesn't have a href attribute, or if the 'passHref' property is
  2952. // defined, we specify the current 'href', so that repetition is not needed by the user
  2953. if (this.props.passHref || child.type === 'a' && !('href' in child.props)) {
  2954. props.href = as || href;
  2955. } // Add the ending slash to the paths. So, we can serve the
  2956. // "<page>/index.html" directly.
  2957. if (false) { var rewriteUrlForNextExport; }
  2958. return _react.default.cloneElement(child, props);
  2959. }
  2960. }
  2961. if (false) { var exact, PropTypes, warn; }
  2962. var _default = Link;
  2963. exports.default = _default;
  2964. /***/ }),
  2965. /***/ "cpj4":
  2966. /***/ (function(module, exports) {
  2967. /***/ }),
  2968. /***/ "dZ6Y":
  2969. /***/ (function(module, exports, __webpack_require__) {
  2970. "use strict";
  2971. /*
  2972. MIT License
  2973. Copyright (c) Jason Miller (https://jasonformat.com/)
  2974. 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:
  2975. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  2976. 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.
  2977. */
  2978. Object.defineProperty(exports, "__esModule", {
  2979. value: true
  2980. });
  2981. function mitt() {
  2982. const all = Object.create(null);
  2983. return {
  2984. on(type, handler) {
  2985. ;
  2986. (all[type] || (all[type] = [])).push(handler);
  2987. },
  2988. off(type, handler) {
  2989. if (all[type]) {
  2990. // tslint:disable-next-line:no-bitwise
  2991. all[type].splice(all[type].indexOf(handler) >>> 0, 1);
  2992. }
  2993. },
  2994. emit(type, ...evts) {
  2995. // eslint-disable-next-line array-callback-return
  2996. ;
  2997. (all[type] || []).slice().map(handler => {
  2998. handler(...evts);
  2999. });
  3000. }
  3001. };
  3002. }
  3003. exports.default = mitt;
  3004. /***/ }),
  3005. /***/ "djX/":
  3006. /***/ (function(module, exports) {
  3007. module.exports = "/_next/static/images/honda-a638f272ea2bcb2f799a3e1b3d9cb10c.jpg";
  3008. /***/ }),
  3009. /***/ "eDSW":
  3010. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3011. "use strict";
  3012. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return hexToRGBAlpha; });
  3013. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return drawerWidth; });
  3014. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return transition; });
  3015. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return container; });
  3016. /* unused harmony export conatinerFluid */
  3017. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return boxShadow; });
  3018. /* unused harmony export card */
  3019. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return defaultFont; });
  3020. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return primaryColor; });
  3021. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return warningColor; });
  3022. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return dangerColor; });
  3023. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return successColor; });
  3024. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return infoColor; });
  3025. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return roseColor; });
  3026. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return grayColor; });
  3027. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return primaryBoxShadow; });
  3028. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return infoBoxShadow; });
  3029. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return successBoxShadow; });
  3030. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return warningBoxShadow; });
  3031. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return dangerBoxShadow; });
  3032. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return roseBoxShadow; });
  3033. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return warningCardHeader; });
  3034. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return successCardHeader; });
  3035. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return dangerCardHeader; });
  3036. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return infoCardHeader; });
  3037. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return primaryCardHeader; });
  3038. /* unused harmony export roseCardHeader */
  3039. /* unused harmony export cardActions */
  3040. /* unused harmony export cardHeader */
  3041. /* unused harmony export defaultBoxShadow */
  3042. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return title; });
  3043. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return cardTitle; });
  3044. /* unused harmony export cardLink */
  3045. /* unused harmony export cardSubtitle */
  3046. 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; }
  3047. 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; }
  3048. 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; }
  3049. const hexColorToRGB = function (hexColor) {
  3050. let detectShorthand = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; // #000 vs #000000
  3051. hexColor = hexColor.replace(detectShorthand, function (m, r, g, b) {
  3052. return r + r + g + g + b + b;
  3053. });
  3054. const hex_array = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hexColor); // #000000 to #ffffff
  3055. return hex_array ? {
  3056. r: parseInt(hex_array[1], 16),
  3057. // 0-255
  3058. g: parseInt(hex_array[2], 16),
  3059. // 0-255
  3060. b: parseInt(hex_array[3], 16) // 0-255
  3061. } : null;
  3062. };
  3063. const hexToRGBAlpha = function (hexColor, alpha) {
  3064. let rgb = hexColorToRGB(hexColor);
  3065. return `rgba(${rgb.r},${rgb.g},${rgb.b},${alpha})`;
  3066. };
  3067. const drawerWidth = 260;
  3068. const transition = {
  3069. transition: "all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)"
  3070. };
  3071. const conatinerFluid = {
  3072. paddingRight: "15px",
  3073. paddingLeft: "15px",
  3074. marginRight: "auto",
  3075. marginLeft: "auto",
  3076. width: "100%"
  3077. };
  3078. const container = _objectSpread({}, conatinerFluid, {
  3079. "@media (min-width: 576px)": {
  3080. maxWidth: "540px"
  3081. },
  3082. "@media (min-width: 768px)": {
  3083. maxWidth: "720px"
  3084. },
  3085. "@media (min-width: 992px)": {
  3086. maxWidth: "960px"
  3087. },
  3088. "@media (min-width: 1200px)": {
  3089. maxWidth: "1140px"
  3090. }
  3091. });
  3092. const boxShadow = {
  3093. 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)"
  3094. };
  3095. const card = {
  3096. display: "inline-block",
  3097. position: "relative",
  3098. width: "100%",
  3099. margin: "25px 0",
  3100. boxShadow: "0 1px 4px 0 rgba(0, 0, 0, 0.14)",
  3101. borderRadius: "3px",
  3102. color: "rgba(0, 0, 0, 0.87)",
  3103. background: "#fff"
  3104. };
  3105. const defaultFont = {
  3106. fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif',
  3107. fontWeight: "300",
  3108. lineHeight: "1.5em"
  3109. };
  3110. const primaryColor = "#212121";
  3111. const warningColor = "#ff9800";
  3112. const dangerColor = "#f44336";
  3113. const successColor = "#4caf50";
  3114. const infoColor = "#212121";
  3115. const roseColor = "#e91e63";
  3116. const grayColor = "#ffffff";
  3117. const primaryBoxShadow = {
  3118. 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)}`
  3119. };
  3120. const infoBoxShadow = {
  3121. 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)}`
  3122. };
  3123. const successBoxShadow = {
  3124. 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)}`
  3125. };
  3126. const warningBoxShadow = {
  3127. 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)}`
  3128. };
  3129. const dangerBoxShadow = {
  3130. 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)}`
  3131. };
  3132. const roseBoxShadow = {
  3133. boxShadow: `0 4px 20px 0px ${hexToRGBAlpha("#000", 0.14)}, 0 7px 10px -5px ${hexToRGBAlpha(roseColor, 0.4)}`
  3134. };
  3135. const warningCardHeader = _objectSpread({
  3136. color: "#fff",
  3137. background: "linear-gradient(60deg, #ffa726, #fb8c00)"
  3138. }, warningBoxShadow);
  3139. const successCardHeader = _objectSpread({
  3140. color: "#fff",
  3141. background: "linear-gradient(60deg, #66bb6a, #43a047)"
  3142. }, successBoxShadow);
  3143. const dangerCardHeader = _objectSpread({
  3144. color: "#fff",
  3145. background: "linear-gradient(60deg, #ef5350, #e53935)"
  3146. }, dangerBoxShadow);
  3147. const infoCardHeader = _objectSpread({
  3148. color: "#fff",
  3149. background: "#212121"
  3150. }, infoBoxShadow);
  3151. const primaryCardHeader = _objectSpread({
  3152. color: "#fff",
  3153. background: "linear-gradient(60deg, #ab47bc, #8e24aa)"
  3154. }, primaryBoxShadow);
  3155. const roseCardHeader = _objectSpread({
  3156. color: "#fff",
  3157. background: "linear-gradient(60deg, #ec407a, #d81b60)"
  3158. }, roseBoxShadow);
  3159. const cardActions = _objectSpread({
  3160. margin: "0 20px 10px",
  3161. paddingTop: "10px",
  3162. borderTop: "1px solid #eeeeee",
  3163. height: "auto"
  3164. }, defaultFont);
  3165. const cardHeader = {
  3166. margin: "-30px 15px 0",
  3167. borderRadius: "3px",
  3168. padding: "15px"
  3169. };
  3170. const defaultBoxShadow = {
  3171. border: "0",
  3172. borderRadius: "3px",
  3173. 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)",
  3174. padding: "10px 0",
  3175. transition: "all 150ms ease 0s"
  3176. };
  3177. const title = {
  3178. color: "#ffffff",
  3179. margin: "1.75rem 0 0.875rem",
  3180. textDecoration: "none",
  3181. fontWeight: "700",
  3182. fontFamily: `"Roboto Slab", "Times New Roman", serif`
  3183. };
  3184. const cardTitle = _objectSpread({}, title, {
  3185. marginTop: ".625rem"
  3186. });
  3187. const cardLink = {
  3188. "& + $cardLink": {
  3189. marginLeft: "1.25rem"
  3190. }
  3191. };
  3192. const cardSubtitle = {
  3193. marginBottom: "0",
  3194. marginTop: "-.375rem"
  3195. };
  3196. /***/ }),
  3197. /***/ "elyg":
  3198. /***/ (function(module, exports, __webpack_require__) {
  3199. "use strict";
  3200. var __importDefault = this && this.__importDefault || function (mod) {
  3201. return mod && mod.__esModule ? mod : {
  3202. "default": mod
  3203. };
  3204. };
  3205. Object.defineProperty(exports, "__esModule", {
  3206. value: true
  3207. });
  3208. const url_1 = __webpack_require__("bzos");
  3209. const mitt_1 = __importDefault(__webpack_require__("dZ6Y"));
  3210. const utils_1 = __webpack_require__("g/15");
  3211. const is_dynamic_1 = __webpack_require__("/jkW");
  3212. const route_matcher_1 = __webpack_require__("gguc");
  3213. const route_regex_1 = __webpack_require__("YTqd");
  3214. const basePath = false || '';
  3215. function addBasePath(path) {
  3216. return path.indexOf(basePath) !== 0 ? basePath + path : path;
  3217. }
  3218. exports.addBasePath = addBasePath;
  3219. function delBasePath(path) {
  3220. return path.indexOf(basePath) === 0 ? path.substr(basePath.length) || '/' : path;
  3221. }
  3222. exports.delBasePath = delBasePath;
  3223. function toRoute(path) {
  3224. return path.replace(/\/$/, '') || '/';
  3225. }
  3226. const prepareRoute = path => toRoute(!path || path === '/' ? '/index' : path);
  3227. function fetchNextData(pathname, query, isServerRender, cb) {
  3228. let attempts = isServerRender ? 3 : 1;
  3229. function getResponse() {
  3230. return fetch(utils_1.formatWithValidation({
  3231. pathname: addBasePath( // @ts-ignore __NEXT_DATA__
  3232. `/_next/data/${__NEXT_DATA__.buildId}${delBasePath(pathname)}.json`),
  3233. query
  3234. }), {
  3235. // Cookies are required to be present for Next.js' SSG "Preview Mode".
  3236. // Cookies may also be required for `getServerSideProps`.
  3237. //
  3238. // > `fetch` won’t send cookies, unless you set the credentials init
  3239. // > option.
  3240. // https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
  3241. //
  3242. // > For maximum browser compatibility when it comes to sending &
  3243. // > receiving cookies, always supply the `credentials: 'same-origin'`
  3244. // > option instead of relying on the default.
  3245. // https://github.com/github/fetch#caveats
  3246. credentials: 'same-origin'
  3247. }).then(res => {
  3248. if (!res.ok) {
  3249. if (--attempts > 0 && res.status >= 500) {
  3250. return getResponse();
  3251. }
  3252. throw new Error(`Failed to load static props`);
  3253. }
  3254. return res.json();
  3255. });
  3256. }
  3257. return getResponse().then(data => {
  3258. return cb ? cb(data) : data;
  3259. }).catch(err => {
  3260. // We should only trigger a server-side transition if this was caused
  3261. // on a client-side transition. Otherwise, we'd get into an infinite
  3262. // loop.
  3263. if (!isServerRender) {
  3264. ;
  3265. err.code = 'PAGE_LOAD_ERROR';
  3266. }
  3267. throw err;
  3268. });
  3269. }
  3270. class Router {
  3271. constructor(pathname, query, as, {
  3272. initialProps,
  3273. pageLoader,
  3274. App,
  3275. wrapApp,
  3276. Component,
  3277. err,
  3278. subscription,
  3279. isFallback
  3280. }) {
  3281. // Static Data Cache
  3282. this.sdc = {};
  3283. this.onPopState = e => {
  3284. if (!e.state) {
  3285. // We get state as undefined for two reasons.
  3286. // 1. With older safari (< 8) and older chrome (< 34)
  3287. // 2. When the URL changed with #
  3288. //
  3289. // In the both cases, we don't need to proceed and change the route.
  3290. // (as it's already changed)
  3291. // But we can simply replace the state with the new changes.
  3292. // Actually, for (1) we don't need to nothing. But it's hard to detect that event.
  3293. // So, doing the following for (1) does no harm.
  3294. const {
  3295. pathname,
  3296. query
  3297. } = this;
  3298. this.changeState('replaceState', utils_1.formatWithValidation({
  3299. pathname,
  3300. query
  3301. }), utils_1.getURL());
  3302. return;
  3303. } // Make sure we don't re-render on initial load,
  3304. // can be caused by navigating back from an external site
  3305. if (e.state && this.isSsr && e.state.as === this.asPath && url_1.parse(e.state.url).pathname === this.pathname) {
  3306. return;
  3307. } // If the downstream application returns falsy, return.
  3308. // They will then be responsible for handling the event.
  3309. if (this._bps && !this._bps(e.state)) {
  3310. return;
  3311. }
  3312. const {
  3313. url,
  3314. as,
  3315. options
  3316. } = e.state;
  3317. if (false) {}
  3318. this.replace(url, as, options);
  3319. };
  3320. this._getStaticData = asPath => {
  3321. const pathname = prepareRoute(url_1.parse(asPath).pathname);
  3322. return true && this.sdc[pathname] ? Promise.resolve(this.sdc[pathname]) : fetchNextData(pathname, null, this.isSsr, data => this.sdc[pathname] = data);
  3323. };
  3324. this._getServerData = asPath => {
  3325. let {
  3326. pathname,
  3327. query
  3328. } = url_1.parse(asPath, true);
  3329. pathname = prepareRoute(pathname);
  3330. return fetchNextData(pathname, query, this.isSsr);
  3331. }; // represents the current component key
  3332. this.route = toRoute(pathname); // set up the component cache (by route keys)
  3333. this.components = {}; // We should not keep the cache, if there's an error
  3334. // Otherwise, this cause issues when when going back and
  3335. // come again to the errored page.
  3336. if (pathname !== '/_error') {
  3337. this.components[this.route] = {
  3338. Component,
  3339. props: initialProps,
  3340. err,
  3341. __N_SSG: initialProps && initialProps.__N_SSG,
  3342. __N_SSP: initialProps && initialProps.__N_SSP
  3343. };
  3344. }
  3345. this.components['/_app'] = {
  3346. Component: App
  3347. }; // Backwards compat for Router.router.events
  3348. // TODO: Should be remove the following major version as it was never documented
  3349. this.events = Router.events;
  3350. this.pageLoader = pageLoader;
  3351. this.pathname = pathname;
  3352. this.query = query; // if auto prerendered and dynamic route wait to update asPath
  3353. // until after mount to prevent hydration mismatch
  3354. this.asPath = // @ts-ignore this is temporarily global (attached to window)
  3355. is_dynamic_1.isDynamicRoute(pathname) && __NEXT_DATA__.autoExport ? pathname : as;
  3356. this.basePath = basePath;
  3357. this.sub = subscription;
  3358. this.clc = null;
  3359. this._wrapApp = wrapApp; // make sure to ignore extra popState in safari on navigating
  3360. // back from external site
  3361. this.isSsr = true;
  3362. this.isFallback = isFallback;
  3363. if (false) {}
  3364. } // @deprecated backwards compatibility even though it's a private method.
  3365. static _rewriteUrlForNextExport(url) {
  3366. if (false) {} else {
  3367. return url;
  3368. }
  3369. }
  3370. update(route, mod) {
  3371. const Component = mod.default || mod;
  3372. const data = this.components[route];
  3373. if (!data) {
  3374. throw new Error(`Cannot update unavailable route: ${route}`);
  3375. }
  3376. const newData = Object.assign(Object.assign({}, data), {
  3377. Component,
  3378. __N_SSG: mod.__N_SSG,
  3379. __N_SSP: mod.__N_SSP
  3380. });
  3381. this.components[route] = newData; // pages/_app.js updated
  3382. if (route === '/_app') {
  3383. this.notify(this.components[this.route]);
  3384. return;
  3385. }
  3386. if (route === this.route) {
  3387. this.notify(newData);
  3388. }
  3389. }
  3390. reload() {
  3391. window.location.reload();
  3392. }
  3393. /**
  3394. * Go back in history
  3395. */
  3396. back() {
  3397. window.history.back();
  3398. }
  3399. /**
  3400. * Performs a `pushState` with arguments
  3401. * @param url of the route
  3402. * @param as masks `url` for the browser
  3403. * @param options object you can define `shallow` and other options
  3404. */
  3405. push(url, as = url, options = {}) {
  3406. return this.change('pushState', url, as, options);
  3407. }
  3408. /**
  3409. * Performs a `replaceState` with arguments
  3410. * @param url of the route
  3411. * @param as masks `url` for the browser
  3412. * @param options object you can define `shallow` and other options
  3413. */
  3414. replace(url, as = url, options = {}) {
  3415. return this.change('replaceState', url, as, options);
  3416. }
  3417. change(method, _url, _as, options) {
  3418. return new Promise((resolve, reject) => {
  3419. if (!options._h) {
  3420. this.isSsr = false;
  3421. } // marking route changes as a navigation start entry
  3422. if (utils_1.ST) {
  3423. performance.mark('routeChange');
  3424. } // If url and as provided as an object representation,
  3425. // we'll format them into the string version here.
  3426. let url = typeof _url === 'object' ? utils_1.formatWithValidation(_url) : _url;
  3427. let as = typeof _as === 'object' ? utils_1.formatWithValidation(_as) : _as;
  3428. url = addBasePath(url);
  3429. as = addBasePath(as); // Add the ending slash to the paths. So, we can serve the
  3430. // "<page>/index.html" directly for the SSR page.
  3431. if (false) {}
  3432. this.abortComponentLoad(as); // If the url change is only related to a hash change
  3433. // We should not proceed. We should only change the state.
  3434. // WARNING: `_h` is an internal option for handing Next.js client-side
  3435. // hydration. Your app should _never_ use this property. It may change at
  3436. // any time without notice.
  3437. if (!options._h && this.onlyAHashChange(as)) {
  3438. this.asPath = as;
  3439. Router.events.emit('hashChangeStart', as);
  3440. this.changeState(method, url, as, options);
  3441. this.scrollToHash(as);
  3442. Router.events.emit('hashChangeComplete', as);
  3443. return resolve(true);
  3444. }
  3445. const {
  3446. pathname,
  3447. query,
  3448. protocol
  3449. } = url_1.parse(url, true);
  3450. if (!pathname || protocol) {
  3451. if (false) {}
  3452. return resolve(false);
  3453. } // If asked to change the current URL we should reload the current page
  3454. // (not location.reload() but reload getInitialProps and other Next.js stuffs)
  3455. // We also need to set the method = replaceState always
  3456. // as this should not go into the history (That's how browsers work)
  3457. // We should compare the new asPath to the current asPath, not the url
  3458. if (!this.urlIsNew(as)) {
  3459. method = 'replaceState';
  3460. }
  3461. const route = toRoute(pathname);
  3462. const {
  3463. shallow = false
  3464. } = options;
  3465. if (is_dynamic_1.isDynamicRoute(route)) {
  3466. const {
  3467. pathname: asPathname
  3468. } = url_1.parse(as);
  3469. const routeRegex = route_regex_1.getRouteRegex(route);
  3470. const routeMatch = route_matcher_1.getRouteMatcher(routeRegex)(asPathname);
  3471. if (!routeMatch) {
  3472. const missingParams = Object.keys(routeRegex.groups).filter(param => !query[param]);
  3473. if (missingParams.length > 0) {
  3474. if (false) {}
  3475. 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`));
  3476. }
  3477. } else {
  3478. // Merge params into `query`, overwriting any specified in search
  3479. Object.assign(query, routeMatch);
  3480. }
  3481. }
  3482. Router.events.emit('routeChangeStart', as); // If shallow is true and the route exists in the router cache we reuse the previous result
  3483. this.getRouteInfo(route, pathname, query, as, shallow).then(routeInfo => {
  3484. const {
  3485. error
  3486. } = routeInfo;
  3487. if (error && error.cancelled) {
  3488. return resolve(false);
  3489. }
  3490. Router.events.emit('beforeHistoryChange', as);
  3491. this.changeState(method, url, as, options);
  3492. if (false) {}
  3493. this.set(route, pathname, query, as, routeInfo);
  3494. if (error) {
  3495. Router.events.emit('routeChangeError', error, as);
  3496. throw error;
  3497. }
  3498. Router.events.emit('routeChangeComplete', as);
  3499. return resolve(true);
  3500. }, reject);
  3501. });
  3502. }
  3503. changeState(method, url, as, options = {}) {
  3504. if (false) {}
  3505. if (method !== 'pushState' || utils_1.getURL() !== as) {
  3506. window.history[method]({
  3507. url,
  3508. as,
  3509. options
  3510. }, // Most browsers currently ignores this parameter, although they may use it in the future.
  3511. // Passing the empty string here should be safe against future changes to the method.
  3512. // https://developer.mozilla.org/en-US/docs/Web/API/History/replaceState
  3513. '', as);
  3514. }
  3515. }
  3516. getRouteInfo(route, pathname, query, as, shallow = false) {
  3517. const cachedRouteInfo = this.components[route]; // If there is a shallow route transition possible
  3518. // If the route is already rendered on the screen.
  3519. if (shallow && cachedRouteInfo && this.route === route) {
  3520. return Promise.resolve(cachedRouteInfo);
  3521. }
  3522. const handleError = (err, loadErrorFail) => {
  3523. return new Promise(resolve => {
  3524. if (err.code === 'PAGE_LOAD_ERROR' || loadErrorFail) {
  3525. // If we can't load the page it could be one of following reasons
  3526. // 1. Page doesn't exists
  3527. // 2. Page does exist in a different zone
  3528. // 3. Internal error while loading the page
  3529. // So, doing a hard reload is the proper way to deal with this.
  3530. window.location.href = as; // Changing the URL doesn't block executing the current code path.
  3531. // So, we need to mark it as a cancelled error and stop the routing logic.
  3532. err.cancelled = true; // @ts-ignore TODO: fix the control flow here
  3533. return resolve({
  3534. error: err
  3535. });
  3536. }
  3537. if (err.cancelled) {
  3538. // @ts-ignore TODO: fix the control flow here
  3539. return resolve({
  3540. error: err
  3541. });
  3542. }
  3543. resolve(this.fetchComponent('/_error').then(res => {
  3544. const {
  3545. page: Component
  3546. } = res;
  3547. const routeInfo = {
  3548. Component,
  3549. err
  3550. };
  3551. return new Promise(resolve => {
  3552. this.getInitialProps(Component, {
  3553. err,
  3554. pathname,
  3555. query
  3556. }).then(props => {
  3557. routeInfo.props = props;
  3558. routeInfo.error = err;
  3559. resolve(routeInfo);
  3560. }, gipErr => {
  3561. console.error('Error in error page `getInitialProps`: ', gipErr);
  3562. routeInfo.error = err;
  3563. routeInfo.props = {};
  3564. resolve(routeInfo);
  3565. });
  3566. });
  3567. }).catch(err => handleError(err, true)));
  3568. });
  3569. };
  3570. return new Promise((resolve, reject) => {
  3571. if (cachedRouteInfo) {
  3572. return resolve(cachedRouteInfo);
  3573. }
  3574. this.fetchComponent(route).then(res => resolve({
  3575. Component: res.page,
  3576. __N_SSG: res.mod.__N_SSG,
  3577. __N_SSP: res.mod.__N_SSP
  3578. }), reject);
  3579. }).then(routeInfo => {
  3580. const {
  3581. Component,
  3582. __N_SSG,
  3583. __N_SSP
  3584. } = routeInfo;
  3585. if (false) {}
  3586. 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`
  3587. {
  3588. pathname,
  3589. query,
  3590. asPath: as
  3591. })).then(props => {
  3592. routeInfo.props = props;
  3593. this.components[route] = routeInfo;
  3594. return routeInfo;
  3595. });
  3596. }).catch(handleError);
  3597. }
  3598. set(route, pathname, query, as, data) {
  3599. this.isFallback = false;
  3600. this.route = route;
  3601. this.pathname = pathname;
  3602. this.query = query;
  3603. this.asPath = as;
  3604. this.notify(data);
  3605. }
  3606. /**
  3607. * Callback to execute before replacing router state
  3608. * @param cb callback to be executed
  3609. */
  3610. beforePopState(cb) {
  3611. this._bps = cb;
  3612. }
  3613. onlyAHashChange(as) {
  3614. if (!this.asPath) return false;
  3615. const [oldUrlNoHash, oldHash] = this.asPath.split('#');
  3616. const [newUrlNoHash, newHash] = as.split('#'); // Makes sure we scroll to the provided hash if the url/hash are the same
  3617. if (newHash && oldUrlNoHash === newUrlNoHash && oldHash === newHash) {
  3618. return true;
  3619. } // If the urls are change, there's more than a hash change
  3620. if (oldUrlNoHash !== newUrlNoHash) {
  3621. return false;
  3622. } // If the hash has changed, then it's a hash only change.
  3623. // This check is necessary to handle both the enter and
  3624. // leave hash === '' cases. The identity case falls through
  3625. // and is treated as a next reload.
  3626. return oldHash !== newHash;
  3627. }
  3628. scrollToHash(as) {
  3629. const [, hash] = as.split('#'); // Scroll to top if the hash is just `#` with no value
  3630. if (hash === '') {
  3631. window.scrollTo(0, 0);
  3632. return;
  3633. } // First we check if the element by id is found
  3634. const idEl = document.getElementById(hash);
  3635. if (idEl) {
  3636. idEl.scrollIntoView();
  3637. return;
  3638. } // If there's no element with the id, we check the `name` property
  3639. // To mirror browsers
  3640. const nameEl = document.getElementsByName(hash)[0];
  3641. if (nameEl) {
  3642. nameEl.scrollIntoView();
  3643. }
  3644. }
  3645. urlIsNew(asPath) {
  3646. return this.asPath !== asPath;
  3647. }
  3648. /**
  3649. * Prefetch page code, you may wait for the data during page rendering.
  3650. * This feature only works in production!
  3651. * @param url the href of prefetched page
  3652. * @param asPath the as path of the prefetched page
  3653. */
  3654. prefetch(url, asPath = url, options = {}) {
  3655. return new Promise((resolve, reject) => {
  3656. const {
  3657. pathname,
  3658. protocol
  3659. } = url_1.parse(url);
  3660. if (!pathname || protocol) {
  3661. if (false) {}
  3662. return;
  3663. } // Prefetch is not supported in development mode because it would trigger on-demand-entries
  3664. if (false) {}
  3665. const route = delBasePath(toRoute(pathname));
  3666. Promise.all([this.pageLoader.prefetchData(url, delBasePath(asPath)), this.pageLoader[options.priority ? 'loadPage' : 'prefetch'](route)]).then(() => resolve(), reject);
  3667. });
  3668. }
  3669. async fetchComponent(route) {
  3670. let cancelled = false;
  3671. const cancel = this.clc = () => {
  3672. cancelled = true;
  3673. };
  3674. route = delBasePath(route);
  3675. const componentResult = await this.pageLoader.loadPage(route);
  3676. if (cancelled) {
  3677. const error = new Error(`Abort fetching component for route: "${route}"`);
  3678. error.cancelled = true;
  3679. throw error;
  3680. }
  3681. if (cancel === this.clc) {
  3682. this.clc = null;
  3683. }
  3684. return componentResult;
  3685. }
  3686. _getData(fn) {
  3687. let cancelled = false;
  3688. const cancel = () => {
  3689. cancelled = true;
  3690. };
  3691. this.clc = cancel;
  3692. return fn().then(data => {
  3693. if (cancel === this.clc) {
  3694. this.clc = null;
  3695. }
  3696. if (cancelled) {
  3697. const err = new Error('Loading initial props cancelled');
  3698. err.cancelled = true;
  3699. throw err;
  3700. }
  3701. return data;
  3702. });
  3703. }
  3704. getInitialProps(Component, ctx) {
  3705. const {
  3706. Component: App
  3707. } = this.components['/_app'];
  3708. const AppTree = this._wrapApp(App);
  3709. ctx.AppTree = AppTree;
  3710. return utils_1.loadGetInitialProps(App, {
  3711. AppTree,
  3712. Component,
  3713. router: this,
  3714. ctx
  3715. });
  3716. }
  3717. abortComponentLoad(as) {
  3718. if (this.clc) {
  3719. const e = new Error('Route Cancelled');
  3720. e.cancelled = true;
  3721. Router.events.emit('routeChangeError', e, as);
  3722. this.clc();
  3723. this.clc = null;
  3724. }
  3725. }
  3726. notify(data) {
  3727. this.sub(data, this.components['/_app'].Component);
  3728. }
  3729. }
  3730. exports.default = Router;
  3731. Router.events = mitt_1.default();
  3732. /***/ }),
  3733. /***/ "ewzQ":
  3734. /***/ (function(module, exports) {
  3735. module.exports = "/_next/static/images/2-1080f82f8b1e678dc61ed590cf39b1b8.jpg";
  3736. /***/ }),
  3737. /***/ "fJ1K":
  3738. /***/ (function(module, exports) {
  3739. module.exports = "/_next/static/images/6-66e3aad6f5f3098dfdc1586ee76f2122.jpg";
  3740. /***/ }),
  3741. /***/ "g/15":
  3742. /***/ (function(module, exports, __webpack_require__) {
  3743. "use strict";
  3744. Object.defineProperty(exports, "__esModule", {
  3745. value: true
  3746. });
  3747. const url_1 = __webpack_require__("bzos");
  3748. /**
  3749. * Utils
  3750. */
  3751. function execOnce(fn) {
  3752. let used = false;
  3753. let result;
  3754. return (...args) => {
  3755. if (!used) {
  3756. used = true;
  3757. result = fn(...args);
  3758. }
  3759. return result;
  3760. };
  3761. }
  3762. exports.execOnce = execOnce;
  3763. function getLocationOrigin() {
  3764. const {
  3765. protocol,
  3766. hostname,
  3767. port
  3768. } = window.location;
  3769. return `${protocol}//${hostname}${port ? ':' + port : ''}`;
  3770. }
  3771. exports.getLocationOrigin = getLocationOrigin;
  3772. function getURL() {
  3773. const {
  3774. href
  3775. } = window.location;
  3776. const origin = getLocationOrigin();
  3777. return href.substring(origin.length);
  3778. }
  3779. exports.getURL = getURL;
  3780. function getDisplayName(Component) {
  3781. return typeof Component === 'string' ? Component : Component.displayName || Component.name || 'Unknown';
  3782. }
  3783. exports.getDisplayName = getDisplayName;
  3784. function isResSent(res) {
  3785. return res.finished || res.headersSent;
  3786. }
  3787. exports.isResSent = isResSent;
  3788. async function loadGetInitialProps(App, ctx) {
  3789. var _a;
  3790. if (false) {} // when called from _app `ctx` is nested in `ctx`
  3791. const res = ctx.res || ctx.ctx && ctx.ctx.res;
  3792. if (!App.getInitialProps) {
  3793. if (ctx.ctx && ctx.Component) {
  3794. // @ts-ignore pageProps default
  3795. return {
  3796. pageProps: await loadGetInitialProps(ctx.Component, ctx.ctx)
  3797. };
  3798. }
  3799. return {};
  3800. }
  3801. const props = await App.getInitialProps(ctx);
  3802. if (res && isResSent(res)) {
  3803. return props;
  3804. }
  3805. if (!props) {
  3806. const message = `"${getDisplayName(App)}.getInitialProps()" should resolve to an object. But found "${props}" instead.`;
  3807. throw new Error(message);
  3808. }
  3809. if (false) {}
  3810. return props;
  3811. }
  3812. exports.loadGetInitialProps = loadGetInitialProps;
  3813. exports.urlObjectKeys = ['auth', 'hash', 'host', 'hostname', 'href', 'path', 'pathname', 'port', 'protocol', 'query', 'search', 'slashes'];
  3814. function formatWithValidation(url, options) {
  3815. if (false) {}
  3816. return url_1.format(url, options);
  3817. }
  3818. exports.formatWithValidation = formatWithValidation;
  3819. exports.SP = typeof performance !== 'undefined';
  3820. exports.ST = exports.SP && typeof performance.mark === 'function' && typeof performance.measure === 'function';
  3821. /***/ }),
  3822. /***/ "gguc":
  3823. /***/ (function(module, exports, __webpack_require__) {
  3824. "use strict";
  3825. Object.defineProperty(exports, "__esModule", {
  3826. value: true
  3827. });
  3828. function getRouteMatcher(routeRegex) {
  3829. const {
  3830. re,
  3831. groups
  3832. } = routeRegex;
  3833. return pathname => {
  3834. const routeMatch = re.exec(pathname);
  3835. if (!routeMatch) {
  3836. return false;
  3837. }
  3838. const decode = param => {
  3839. try {
  3840. return decodeURIComponent(param);
  3841. } catch (_) {
  3842. const err = new Error('failed to decode param');
  3843. err.code = 'DECODE_FAILED';
  3844. throw err;
  3845. }
  3846. };
  3847. const params = {};
  3848. Object.keys(groups).forEach(slugName => {
  3849. const g = groups[slugName];
  3850. const m = routeMatch[g.pos];
  3851. if (m !== undefined) {
  3852. params[slugName] = ~m.indexOf('/') ? m.split('/').map(entry => decode(entry)) : g.repeat ? [decode(m)] : decode(m);
  3853. }
  3854. });
  3855. return params;
  3856. };
  3857. }
  3858. exports.getRouteMatcher = getRouteMatcher;
  3859. /***/ }),
  3860. /***/ "gpfI":
  3861. /***/ (function(module, exports) {
  3862. module.exports = "/_next/static/images/White-bd6f0737533faa5691f72c5d9b00aeb6.png";
  3863. /***/ }),
  3864. /***/ "i4t8":
  3865. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3866. "use strict";
  3867. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return GridItem; });
  3868. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
  3869. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
  3870. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("9Pu4");
  3871. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__);
  3872. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("JQ2V");
  3873. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__);
  3874. var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement;
  3875. 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); }
  3876. 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; }
  3877. 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; }
  3878. // nodejs library to set properties for components
  3879. // @material-ui/core components
  3880. const styles = {
  3881. grid: {
  3882. position: "relative",
  3883. width: "100%",
  3884. minHeight: "1px",
  3885. paddingRight: "15px",
  3886. paddingLeft: "15px",
  3887. flexBasis: "auto"
  3888. }
  3889. };
  3890. const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__["makeStyles"])(styles);
  3891. function GridItem(props) {
  3892. const classes = useStyles();
  3893. const {
  3894. children,
  3895. className
  3896. } = props,
  3897. rest = _objectWithoutProperties(props, ["children", "className"]);
  3898. return __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default.a, _extends({
  3899. item: true
  3900. }, rest, {
  3901. className: classes.grid + " " + className
  3902. }), children);
  3903. }
  3904. GridItem.defaultProps = {
  3905. className: ""
  3906. };
  3907. /***/ }),
  3908. /***/ "jD8W":
  3909. /***/ (function(module, exports) {
  3910. module.exports = require("@material-ui/core/Popper");
  3911. /***/ }),
  3912. /***/ "k7mh":
  3913. /***/ (function(module, exports) {
  3914. module.exports = "/_next/static/images/4-3d445bf1d593b7dd538445e4565e4c8a.jpg";
  3915. /***/ }),
  3916. /***/ "kYf9":
  3917. /***/ (function(module, exports) {
  3918. module.exports = require("next/dist/next-server/lib/utils.js");
  3919. /***/ }),
  3920. /***/ "mf1M":
  3921. /***/ (function(module, exports) {
  3922. module.exports = require("@material-ui/core/Grow");
  3923. /***/ }),
  3924. /***/ "mtPR":
  3925. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  3926. "use strict";
  3927. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return GridContainer; });
  3928. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd");
  3929. /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
  3930. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("9Pu4");
  3931. /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__);
  3932. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("JQ2V");
  3933. /* harmony import */ var _material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2__);
  3934. var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement;
  3935. 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); }
  3936. 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; }
  3937. 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; }
  3938. // nodejs library to set properties for components
  3939. // @material-ui/core components
  3940. const styles = {
  3941. grid: {
  3942. marginRight: "-15px",
  3943. marginLeft: "-15px",
  3944. width: "auto"
  3945. }
  3946. };
  3947. const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__["makeStyles"])(styles);
  3948. function GridContainer(props) {
  3949. const classes = useStyles();
  3950. const {
  3951. children,
  3952. className
  3953. } = props,
  3954. rest = _objectWithoutProperties(props, ["children", "className"]);
  3955. return __jsx(_material_ui_core_Grid__WEBPACK_IMPORTED_MODULE_2___default.a, _extends({
  3956. container: true
  3957. }, rest, {
  3958. className: classes.grid + " " + className
  3959. }), children);
  3960. }
  3961. GridContainer.defaultProps = {
  3962. className: ""
  3963. };
  3964. /***/ }),
  3965. /***/ "n6U9":
  3966. /***/ (function(module, exports) {
  3967. module.exports = "/_next/static/images/2-ab20be31e4afcad441ac2b169537f96e.jpg";
  3968. /***/ }),
  3969. /***/ "nOHt":
  3970. /***/ (function(module, exports, __webpack_require__) {
  3971. "use strict";
  3972. var _interopRequireWildcard = __webpack_require__("7KCV");
  3973. var _interopRequireDefault = __webpack_require__("AroE");
  3974. exports.__esModule = true;
  3975. exports.useRouter = useRouter;
  3976. exports.makePublicRouterInstance = makePublicRouterInstance;
  3977. exports.createRouter = exports.withRouter = exports.default = void 0;
  3978. var _react = _interopRequireDefault(__webpack_require__("cDcd"));
  3979. var _router2 = _interopRequireWildcard(__webpack_require__("elyg"));
  3980. exports.Router = _router2.default;
  3981. exports.NextRouter = _router2.NextRouter;
  3982. var _routerContext = __webpack_require__("Osoz");
  3983. var _withRouter = _interopRequireDefault(__webpack_require__("0Bsm"));
  3984. exports.withRouter = _withRouter.default;
  3985. /* global window */
  3986. var singletonRouter = {
  3987. router: null,
  3988. // holds the actual router instance
  3989. readyCallbacks: [],
  3990. ready(cb) {
  3991. if (this.router) return cb();
  3992. if (false) {}
  3993. }
  3994. }; // Create public properties and methods of the router in the singletonRouter
  3995. var urlPropertyFields = ['pathname', 'route', 'query', 'asPath', 'components', 'isFallback', 'basePath'];
  3996. var routerEvents = ['routeChangeStart', 'beforeHistoryChange', 'routeChangeComplete', 'routeChangeError', 'hashChangeStart', 'hashChangeComplete'];
  3997. 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
  3998. Object.defineProperty(singletonRouter, 'events', {
  3999. get() {
  4000. return _router2.default.events;
  4001. }
  4002. });
  4003. urlPropertyFields.forEach(field => {
  4004. // Here we need to use Object.defineProperty because, we need to return
  4005. // the property assigned to the actual router
  4006. // The value might get changed as we change routes and this is the
  4007. // proper way to access it
  4008. Object.defineProperty(singletonRouter, field, {
  4009. get() {
  4010. var router = getRouter();
  4011. return router[field];
  4012. }
  4013. });
  4014. });
  4015. coreMethodFields.forEach(field => {
  4016. // We don't really know the types here, so we add them later instead
  4017. ;
  4018. singletonRouter[field] = function () {
  4019. var router = getRouter();
  4020. return router[field](...arguments);
  4021. };
  4022. });
  4023. routerEvents.forEach(event => {
  4024. singletonRouter.ready(() => {
  4025. _router2.default.events.on(event, function () {
  4026. var eventField = "on" + event.charAt(0).toUpperCase() + event.substring(1);
  4027. var _singletonRouter = singletonRouter;
  4028. if (_singletonRouter[eventField]) {
  4029. try {
  4030. _singletonRouter[eventField](...arguments);
  4031. } catch (err) {
  4032. // tslint:disable-next-line:no-console
  4033. console.error("Error when running the Router event: " + eventField); // tslint:disable-next-line:no-console
  4034. console.error(err.message + "\n" + err.stack);
  4035. }
  4036. }
  4037. });
  4038. });
  4039. });
  4040. function getRouter() {
  4041. if (!singletonRouter.router) {
  4042. var message = 'No router instance found.\n' + 'You should only use "next/router" inside the client side of your app.\n';
  4043. throw new Error(message);
  4044. }
  4045. return singletonRouter.router;
  4046. } // Export the singletonRouter and this is the public API.
  4047. var _default = singletonRouter; // Reexport the withRoute HOC
  4048. exports.default = _default;
  4049. function useRouter() {
  4050. return _react.default.useContext(_routerContext.RouterContext);
  4051. } // INTERNAL APIS
  4052. // -------------
  4053. // (do not use following exports inside the app)
  4054. // Create a router and assign it as the singleton instance.
  4055. // This is used in client side when we are initilizing the app.
  4056. // This should **not** use inside the server.
  4057. var createRouter = function createRouter() {
  4058. for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
  4059. args[_key] = arguments[_key];
  4060. }
  4061. singletonRouter.router = new _router2.default(...args);
  4062. singletonRouter.readyCallbacks.forEach(cb => cb());
  4063. singletonRouter.readyCallbacks = [];
  4064. return singletonRouter.router;
  4065. }; // This function is used to create the `withRouter` router instance
  4066. exports.createRouter = createRouter;
  4067. function makePublicRouterInstance(router) {
  4068. var _router = router;
  4069. var instance = {};
  4070. for (var property of urlPropertyFields) {
  4071. if (typeof _router[property] === 'object') {
  4072. instance[property] = Object.assign({}, _router[property]); // makes sure query is not stateful
  4073. continue;
  4074. }
  4075. instance[property] = _router[property];
  4076. } // Events is a static property on the router, the router doesn't have to be initialized to use it
  4077. instance.events = _router2.default.events;
  4078. coreMethodFields.forEach(field => {
  4079. instance[field] = function () {
  4080. return _router[field](...arguments);
  4081. };
  4082. });
  4083. return instance;
  4084. }
  4085. /***/ }),
  4086. /***/ "nybW":
  4087. /***/ (function(module, exports) {
  4088. module.exports = require("@material-ui/core/Divider");
  4089. /***/ }),
  4090. /***/ "oLCs":
  4091. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  4092. "use strict";
  4093. /* harmony import */ var assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("eDSW");
  4094. const footerStyle = {
  4095. block: {
  4096. color: "inherit",
  4097. padding: "0.9375rem",
  4098. fontWeight: "500",
  4099. fontSize: "12px",
  4100. textTransform: "uppercase",
  4101. borderRadius: "3px",
  4102. textDecoration: "none",
  4103. position: "relative",
  4104. display: "block"
  4105. },
  4106. left: {
  4107. float: "left!important",
  4108. display: "block"
  4109. },
  4110. right: {
  4111. padding: "15px 0",
  4112. margin: "0",
  4113. float: "right!important"
  4114. },
  4115. footer: {
  4116. padding: "0.9375rem 0",
  4117. textAlign: "center",
  4118. display: "flex",
  4119. zIndex: "2",
  4120. position: "relative"
  4121. },
  4122. a: {
  4123. color: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* primaryColor */ "p"],
  4124. textDecoration: "none",
  4125. backgroundColor: "transparent"
  4126. },
  4127. footerWhiteFont: {
  4128. "&,&:hover,&:focus": {
  4129. color: "#FFFFFF"
  4130. }
  4131. },
  4132. container: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* container */ "c"],
  4133. list: {
  4134. marginBottom: "0",
  4135. padding: "0",
  4136. marginTop: "0"
  4137. },
  4138. inlineBlock: {
  4139. display: "inline-block",
  4140. padding: "0px",
  4141. width: "auto"
  4142. },
  4143. icon: {
  4144. width: "18px",
  4145. height: "18px",
  4146. position: "relative",
  4147. top: "3px"
  4148. }
  4149. };
  4150. /* harmony default export */ __webpack_exports__["a"] = (footerStyle);
  4151. /***/ }),
  4152. /***/ "ofq5":
  4153. /***/ (function(module, exports) {
  4154. module.exports = "data:image/png;base64,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"
  4155. /***/ }),
  4156. /***/ "ovCH":
  4157. /***/ (function(module, exports) {
  4158. module.exports = "/_next/static/images/mercedes-4556e45b752dfcddc36f5ee294a964d9.jpg";
  4159. /***/ }),
  4160. /***/ "pvnu":
  4161. /***/ (function(module, exports) {
  4162. module.exports = "/_next/static/images/3-7848a229413c4ca6244c39288cfc8cba.jpg";
  4163. /***/ }),
  4164. /***/ "qY8J":
  4165. /***/ (function(module, exports) {
  4166. module.exports = "/_next/static/images/yamaha1-1b8dd8e10a85975df2831e83c77088a9.jpg";
  4167. /***/ }),
  4168. /***/ "ql2e":
  4169. /***/ (function(module, exports) {
  4170. module.exports = "data:image/png;base64,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"
  4171. /***/ }),
  4172. /***/ "qsPe":
  4173. /***/ (function(module, exports) {
  4174. module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAYAAABxlTA0AAAABHNCSVQICAgIfAhkiAAACwpJREFUeF7tnXtUlVUWwH88pUYgJWHSFEzTUkvImhofqeiElpn5RlBU0nLUGVdrNTrNKjWfONZMzoyVRfk2e6k9VJTMHlpqWoJZqYmW5oiaSgQI3Htn7Uu3Ubjce77v3nMFuof1Lf64++y9z+/b7HvO+c63CQBs+Js2AgF+wNrY2hX7Aevl6wesma8fcK0DHEwQ13ANTWhsvxpzDfWop3scpvRf4ALfc4LjfG+/vuOYKT2uOnktBzflWm6mHS1oQQjBXnfUFwrLKOcbviGHfV6D7THga2lCFzrZI7UuNYnsD9nGMY57NCzTgBtwFXfSmRZc55EDNb3zIQ7zIR9xlnOmXDUF+EZak0g3Qgk1ZbS2dSqllC1s5Uu+Nuy6YcCd+D23cathQ3Whwyfs4BN2GhqKIcCJdOVmbjJkoK4J72AXH7NDeVjKgCVyb+UWZcV1WXAbH/Mpe5SGqAS4FS3pxV1KCn8tQhvZxAEOuR2uW8ARhDOUwTV2seB2hJoESihhNa9RQIFLC24B96E3zYnT5GbtVnuYPN5ho3nAN9CannSv3RQ0e7+ejRzmSLVWXEbwIPoTTbRmF2u3+pPk8xpvGAfcjKb04e7aPXofef826/mW75xaqzaCZaV2A6185GLtNvMVB+wrPWfNKeBgghlJKiGE1KiRd0zvRPT1MdX6lH/wJNszt/nc5zLKWMIK5Hfl5hSwbD3eQ2+fO1rZYPIzKST0v4WwiDBCwkKw2WwEBIjLzpvjc2u5ldKiUs4eO8uOZR+TNdf1N703BvoOG5xucToFfAe30/4yLYk7pXem3+z+hDcKr3hi6GmzgdVq5cjOI8zrOMdTbdX230suslehFMF3k4REsS9bm6S2jFr6AOHR4VrMlhSUMClyghbdovQIR8kiWw3wYAZyFZHanKmsuNeU3vaodfXn76kzAvjPGgH/wA+8xho1wCkkcyVXeDompf6pzw6ny5iuBAR6Ix9Ub1IA/ylyvJJPZoSKKGYFq9QAj2YEQQSZsWOoT6f0LqQ9P8o7udaN5QrAfzTknxFhCxZeZKka4AcYaUS3admFRYsIucI3U8GSgmImagQsEF5gsRrgdB8AHrPiQX6XfLvpvFteWo7NWnGsLjg02G2KEcATNAPOVAU8mjTTUanacWHhc9T7jfp5CZnb2uTHYuXEVycoPF14iSlZgETGRBAUEoy13EJQ6KVHBwTw+Mhxqu6ZknuRJWoRLDlYZ+uSfidpi0a7jTqHDwL3/H/PsW7aGj7M/MCla22T2tFxRGda39maqxo3sEd5YHAgFYAf0jks9Rw8iuFaHRm7Yhx3JN8BLlZlDgcs5RbyduUxu+MThn3qkt6VnhP/QNP2zSg6V8SEBnoBv8QytQgeqRnw9D0zaJYQqwRMInB0kGcpa1DGEFp1ac0sEzdJycmfhRarAk4j1Yhew7L/PL7A/uer0ooLihkXOVZF9LLLLGG5WgSnkaLV2QUnFxIRHaFsY36vDPZl5SrLXy5B2VGr3Jxu9ozQDHjO/gwa39hEiYNs1JzOO80jLR9Wkr+cQktVAQ9nmFY/Rz47msQHeyjbkDx8Ku8US8a/RG5WjnI/XwsuY6VaBKeSrNW3PlP6MnjWEOVpmjgjkC1lFjY+vYHVk6uu+bU6rKh8uepeRCpDFVWaF1tqWWkIsMOSgC4pLGH7ym0sHpdp3gENPZfzsloEp/gAcMb++TRRzMPOWFgtVuTau+Fzsp/ZXCNSxwpVwMMYouH+VlW5rHwlgUGBHtmSL8EAAji69wib/7OJrZnveaTPk84rWa0WwckM9sSOct+/bXmcNl3bmEoVlY3I8zhJH9/mHOXlv64iJ2uvsh/eElzFKzULsHjzr28XEtU0yltjtD8YlXdXtzyfTeZDL3hNr4oiZcBDGaSiz2sycz+bR2y8d8+/STTn5+UzqeVEr/npTtHLvKoWwUMY6E6X1z9/bMtU2nZr59WnG5Kf5fH9UwPn+yRlyGnLys3pSm4wA7wOUEVh9/REUueNoH7D+iriSjKSMorOFzG6gWcbRirGXuH1mg3Y4d2wjFR6je9taEPeFQCZzp048D0Pt5mkwsm0jDJgOVVZE1pKxnDueiiJsPphHs80JCc/N/YZtmS+q21orzo5Zek0RQzkfm1OmFGcmN6DwVOH0PDaitmG2fMTJw+fZEILfY+NlM9FDKhhgB03pX1SPKlzhhMXH2cKskTxoCB93y+vqx48GUA/M4Hmsz6J6T3toMOjwg2lDgG8bv5alk+uen7BG86/zlq1L7n+3OcNe9p1zNmewfW3t1KGLIBz38thes+pWnx7g3VqgO+nrxYHdCh9cs8/iItvrpwyct7dy7Sej+twhTW8qQa4n2bA/acM4I25VeeMZkYdn5TA1I3TlLsK4KmaAK9VB3yvssNmBKdnzyD2pliWP7qM7MzNZlRc0meNrWrkVKe0AvBjHtt0pmAtb6lF8H300eKAQ+n07Jm07dyG0gtl9pw4p98s0/YSkhJ4fP105Ty8880dzL5vpml7rjqu4201wH01A34ieybte7Sn8FwhIaEhnD91ni8/2s9TqU8aHvhzhxYRHRejtK9ss1pZM38NSyZXPaRn2LCTDm+qAr6Xe7xhr1odM+yA43/5vLiw2L5pbrFYOLjrIN/sPsSSKa4hpGWMpEdaT/tULShY7ait7Ev8e8wCNnshLTkb3Fu8oxbB92p+P25G9qxLADu8Ki0pxWax2aNRzpOdOX7G/pH8vlBUQr0rw4hqEsXVTaKw/nzmLDBQ/YnIT+d+IrmBvocJb7FeDbC8n6yzzcye7RSwM5tlF8rsL7HI8liukHrmzhNL9H6waivzU/6ubWhvs0ENsO5XuARw/EUpQtuIL1JcWlxK/yv1rlDlVa7KzelmTxJ3EYT6n55RQLOy5/gUsETvgjFPsykzy6iryvIWrGSxSQ1wD7pprQ9RAThB2XmPBG2wa/1OpvXRs3pz+CZF7t518jqt0wjuTEfC0fO+mjg020eAJXIXP/oSr86t+rTXo5vmpPOP/MhHbFeL4ATiidFYxuAvKybTfViit8d4ib6CMwXMS5nL7qzdWu04lEtZg8/4XA1wa1rRHLUD0ma975DUgYnPTqJRs0YYmWq5tGfDvnh54ZFFZGXqfz/5Yl/yOMrXHFADfDVRdMBHORJISu9F3wn9iImNIfSKUELD1AreyfZjWWkZ506e5f3VW8mc7NtzEBfT3M1nnKZi3n5xc5qDAwmkG12RSqqXsw2ZMpT6Dao+YT524JjPI9QVh3IsbOV9rFjVAItUW9rUuYKfuoJFCol+wX6n6quteCLFP/2F6NRuiRSpq654qMuiSLfRgUjU36VQc6duSUndtJ1UP1NxCVimau1oW7eIeHk0OeRyitPVanVbmE7mxJIu/K0qAQGbyz6XaNwCDiOM27ilxhVIutw3XMqR7+RTZInsqrkFLJ2jaWSfVfjb/wnk8gWnXaQGh6QSYBG+juZIsTp/q6jPI5dKUwYsyqReuxTF/zU3+VcQUhRUtRkCLErjaEYszVT11yk5KZ8oew5GmmHAjpx8PS19UtfHyGB0yUo9noMcIp9Thk2YAixWZHZxHXFE4b0XWAx774MOZ/jBnhKkILOZZhqww1gEEcQRi1TKrkutgB/tX2TuKly7G7PHgB0GZEn9W2JoSMNamzokFciWYz75nHdTOtwdWMPTNFWFstVZn/r2iJZLfqSaa01s5ZQjj3okWuUqpNDplqMnvnstgj1xoi739QPWfHf9gP2ANRPQrN4fwZoB/w90L4ku6aNymgAAAABJRU5ErkJggg=="
  4175. /***/ }),
  4176. /***/ "qt1I":
  4177. /***/ (function(module, exports) {
  4178. module.exports = require("@material-ui/core/Paper");
  4179. /***/ }),
  4180. /***/ "vcqE":
  4181. /***/ (function(module, exports) {
  4182. module.exports = "/_next/static/images/Blue-65ac076684958d807ddaaf34ef9647f9.png";
  4183. /***/ }),
  4184. /***/ "wmUz":
  4185. /***/ (function(module, exports) {
  4186. module.exports = "/_next/static/images/5-a327457d484718fd10bb3e23741bcee5.jpg";
  4187. /***/ }),
  4188. /***/ "x54t":
  4189. /***/ (function(module, exports) {
  4190. module.exports = require("@material-ui/core/MenuItem");
  4191. /***/ }),
  4192. /***/ "xmQw":
  4193. /***/ (function(module, exports) {
  4194. module.exports = require("@material-ui/core/MenuList");
  4195. /***/ })
  4196. /******/ });