module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = require('../../../../../ssr-module-cache.js'); /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ var threw = true; /******/ try { /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ threw = false; /******/ } finally { /******/ if(threw) delete installedModules[moduleId]; /******/ } /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 33); /******/ }) /************************************************************************/ /******/ ({ /***/ "2zww": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CardHeader; }); // EXTERNAL MODULE: external "react" var external_react_ = __webpack_require__("cDcd"); var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_); // EXTERNAL MODULE: external "classnames" var external_classnames_ = __webpack_require__("K2gz"); var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_); // EXTERNAL MODULE: external "@material-ui/core/styles" var styles_ = __webpack_require__("9Pu4"); // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js var nextjs_material_kit = __webpack_require__("eDSW"); // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardHeaderStyle.js const cardHeaderStyle = { cardHeader: { borderRadius: "3px", padding: "1rem 15px", marginLeft: "15px", marginRight: "15px", marginTop: "-30px", border: "0", marginBottom: "0" }, cardHeaderPlain: { marginLeft: "0px", marginRight: "0px" }, warningCardHeader: nextjs_material_kit["y" /* warningCardHeader */], successCardHeader: nextjs_material_kit["t" /* successCardHeader */], dangerCardHeader: nextjs_material_kit["e" /* dangerCardHeader */], infoCardHeader: nextjs_material_kit["l" /* infoCardHeader */], primaryCardHeader: nextjs_material_kit["o" /* primaryCardHeader */] }; /* harmony default export */ var components_cardHeaderStyle = (cardHeaderStyle); // CONCATENATED MODULE: ./components/Card/CardHeader.js var __jsx = external_react_default.a.createElement; 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); } 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; } 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; } // nodejs library that concatenates classes // nodejs library to set properties for components // @material-ui/core components // @material-ui/icons // core components const useStyles = Object(styles_["makeStyles"])(components_cardHeaderStyle); function CardHeader(props) { const classes = useStyles(); const { className, children, color, plain } = props, rest = _objectWithoutProperties(props, ["className", "children", "color", "plain"]); const cardHeaderClasses = external_classnames_default()({ [classes.cardHeader]: true, [classes[color + "CardHeader"]]: color, [classes.cardHeaderPlain]: plain, [className]: className !== undefined }); return __jsx("div", _extends({ className: cardHeaderClasses }, rest), children); } /***/ }), /***/ 33: /***/ (function(module, exports, __webpack_require__) { module.exports = __webpack_require__("b62h"); /***/ }), /***/ "7WNa": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("eDSW"); 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; } 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; } 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; } const notificationsStyles = { section: { backgroundColor: "#FFFFFF", display: "block", width: "100%", position: "relative", padding: "0" }, title: _objectSpread({}, assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* title */ "v"], { marginTop: "30px", minHeight: "32px", textDecoration: "none" }), container: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* container */ "c"] }; /* harmony default export */ __webpack_exports__["a"] = (notificationsStyles); /***/ }), /***/ "8//M": /***/ (function(module, exports) { module.exports = require("@material-ui/core/styles/makeStyles"); /***/ }), /***/ "9Pu4": /***/ (function(module, exports) { module.exports = require("@material-ui/core/styles"); /***/ }), /***/ "A2So": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ Card; }); // EXTERNAL MODULE: external "react" var external_react_ = __webpack_require__("cDcd"); var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_); // EXTERNAL MODULE: external "classnames" var external_classnames_ = __webpack_require__("K2gz"); var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_); // EXTERNAL MODULE: external "@material-ui/core/styles" var styles_ = __webpack_require__("9Pu4"); // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardStyle.js const cardStyle = { card: { border: "0", marginBottom: "30px", marginTop: "30px", borderRadius: "6px", color: "rgba(0, 0, 0, 0.87)", background: "#fff", width: "100%", 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)", position: "relative", display: "flex", flexDirection: "column", minWidth: "0", wordWrap: "break-word", fontSize: ".875rem", transition: "all 300ms linear" }, cardPlain: { background: "transparent", boxShadow: "none" }, cardCarousel: { overflow: "hidden" } }; /* harmony default export */ var components_cardStyle = (cardStyle); // CONCATENATED MODULE: ./components/Card/Card.js var __jsx = external_react_default.a.createElement; 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); } 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; } 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; } // nodejs library that concatenates classes // nodejs library to set properties for components // @material-ui/core components // @material-ui/icons // core components const useStyles = Object(styles_["makeStyles"])(components_cardStyle); function Card(props) { const classes = useStyles(); const { className, children, plain, carousel } = props, rest = _objectWithoutProperties(props, ["className", "children", "plain", "carousel"]); const cardClasses = external_classnames_default()({ [classes.card]: true, [classes.cardPlain]: plain, [classes.cardCarousel]: carousel, [className]: className !== undefined }); return __jsx("div", _extends({ className: cardClasses }, rest), children); } /***/ }), /***/ "K2gz": /***/ (function(module, exports) { module.exports = require("classnames"); /***/ }), /***/ "K2z0": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Footer; }); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("K2gz"); /* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _material_ui_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("KKbo"); /* harmony import */ var _material_ui_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__); /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("9Pu4"); /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__); /* harmony import */ var components_CustomButtons_Button_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("Kg+a"); /* harmony import */ var assets_jss_nextjs_material_kit_components_footerStyle_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("oLCs"); var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement; /*eslint-disable*/ // nodejs library to set properties for components // nodejs library that concatenates classes // material-ui core components const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_3__["makeStyles"])(assets_jss_nextjs_material_kit_components_footerStyle_js__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"]); function Footer(props) { const classes = useStyles(); const { whiteFont } = props; const footerClasses = classnames__WEBPACK_IMPORTED_MODULE_1___default()({ [classes.footer]: true, [classes.footerWhiteFont]: whiteFont }); const aClasses = classnames__WEBPACK_IMPORTED_MODULE_1___default()({ [classes.a]: true, [classes.footerWhiteFont]: whiteFont }); return __jsx("footer", { className: footerClasses }, __jsx("div", { className: classes.container }, __jsx("div", null, __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["List"], { justify: "center", className: classes.list }, __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "tugas_fungsi", className: classes.block }, "Tugas & Fungsi")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "sejarah", className: classes.block }, "Sejarah Perusahaan")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "profile", className: classes.block }, "Profil Perusahaan")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "tata_kelola", className: classes.block }, "Tata Kelola Perusahaan")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "struktur_organisasi", className: classes.block }, "Struktur Organisasi")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "saham", className: classes.block }, "Kepemilikan Saham")), __jsx(_material_ui_core__WEBPACK_IMPORTED_MODULE_2__["ListItem"], { className: classes.inlineBlock }, __jsx("a", { href: "penghargaan", className: classes.block }, "Penghargaan")))))); } /***/ }), /***/ "KKbo": /***/ (function(module, exports) { module.exports = require("@material-ui/core"); /***/ }), /***/ "Kg+a": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // EXTERNAL MODULE: external "react" var external_react_ = __webpack_require__("cDcd"); var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_); // EXTERNAL MODULE: external "classnames" var external_classnames_ = __webpack_require__("K2gz"); var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_); // EXTERNAL MODULE: external "@material-ui/core/styles/makeStyles" var makeStyles_ = __webpack_require__("8//M"); var makeStyles_default = /*#__PURE__*/__webpack_require__.n(makeStyles_); // EXTERNAL MODULE: external "@material-ui/core/Button" var Button_ = __webpack_require__("Wh1t"); var Button_default = /*#__PURE__*/__webpack_require__.n(Button_); // EXTERNAL MODULE: ./assets/jss/nextjs-material-kit.js var nextjs_material_kit = __webpack_require__("eDSW"); // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/buttonStyle.js const buttonStyle = { button: { minHeight: "auto", minWidth: "auto", backgroundColor: nextjs_material_kit["i" /* grayColor */], color: "#FFFFFF", 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)", border: "none", borderRadius: "3px", position: "relative", padding: "12px 30px", margin: ".3125rem 1px", fontSize: "12px", fontWeight: "400", textTransform: "uppercase", letterSpacing: "0", willChange: "box-shadow, transform", transition: "box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1)", lineHeight: "1.42857143", textAlign: "center", whiteSpace: "nowrap", verticalAlign: "middle", touchAction: "manipulation", cursor: "pointer", "&:hover,&:focus": { color: "#FFFFFF", backgroundColor: nextjs_material_kit["i" /* grayColor */], 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)" }, "& .fab,& .fas,& .far,& .fal,& .material-icons": { position: "relative", display: "inline-block", top: "0", fontSize: "1.1rem", marginRight: "4px", verticalAlign: "middle" }, "& svg": { position: "relative", display: "inline-block", top: "0", width: "18px", height: "18px", marginRight: "4px", verticalAlign: "middle" }, "&$justIcon": { "& .fab,& .fas,& .far,& .fal,& .material-icons": { marginRight: "0px", position: "absolute", width: "100%", transform: "none", left: "0px", top: "0px", height: "100%", lineHeight: "41px", fontSize: "20px" } } }, fullWidth: { width: "100%" }, primary: { backgroundColor: nextjs_material_kit["p" /* primaryColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["p" /* primaryColor */], 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)}` } }, info: { backgroundColor: nextjs_material_kit["m" /* infoColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["m" /* infoColor */], 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)}` } }, success: { backgroundColor: nextjs_material_kit["u" /* successColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["u" /* successColor */], 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)}` } }, warning: { backgroundColor: nextjs_material_kit["z" /* warningColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["z" /* warningColor */], 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)}` } }, danger: { backgroundColor: nextjs_material_kit["f" /* dangerColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["f" /* dangerColor */], 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)}` } }, rose: { backgroundColor: nextjs_material_kit["r" /* roseColor */], 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)}`, "&:hover,&:focus": { backgroundColor: nextjs_material_kit["r" /* roseColor */], 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)}` } }, white: { "&,&:focus,&:hover,&:visited": { backgroundColor: "#FFFFFF", color: nextjs_material_kit["i" /* grayColor */] } }, twitter: { backgroundColor: "#55acee", color: "#fff", 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)", "&:hover,&:focus,&:visited": { backgroundColor: "#55acee", color: "#fff", 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)" } }, facebook: { backgroundColor: "#3b5998", color: "#fff", 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)", "&:hover,&:focus": { backgroundColor: "#3b5998", color: "#fff", 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)" } }, google: { backgroundColor: "#dd4b39", color: "#fff", 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)", "&:hover,&:focus": { backgroundColor: "#dd4b39", color: "#fff", 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)" } }, github: { backgroundColor: "#333333", color: "#fff", 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)", "&:hover,&:focus": { backgroundColor: "#333333", color: "#fff", 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)" } }, simple: { "&,&:focus,&:hover,&:visited": { color: "#FFFFFF", background: "transparent", boxShadow: "none" }, "&$primary": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["p" /* primaryColor */] } }, "&$info": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["m" /* infoColor */] } }, "&$success": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["u" /* successColor */] } }, "&$warning": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["z" /* warningColor */] } }, "&$rose": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["r" /* roseColor */] } }, "&$danger": { "&,&:focus,&:hover,&:visited": { color: nextjs_material_kit["f" /* dangerColor */] } }, "&$twitter": { "&,&:focus,&:hover,&:visited": { color: "#55acee" } }, "&$facebook": { "&,&:focus,&:hover,&:visited": { color: "#3b5998" } }, "&$google": { "&,&:focus,&:hover,&:visited": { color: "#dd4b39" } }, "&$github": { "&,&:focus,&:hover,&:visited": { color: "#333333" } } }, transparent: { "&,&:focus,&:hover,&:visited": { color: "inherit", background: "transparent", boxShadow: "none" } }, disabled: { opacity: "0.65", pointerEvents: "none" }, lg: { padding: "1.125rem 2.25rem", fontSize: "0.875rem", lineHeight: "1.333333", borderRadius: "0.2rem" }, sm: { padding: "0.40625rem 1.25rem", fontSize: "0.6875rem", lineHeight: "1.5", borderRadius: "0.2rem" }, round: { borderRadius: "30px" }, block: { width: "100% !important" }, link: { "&,&:hover,&:focus": { backgroundColor: "transparent", color: "#999999", boxShadow: "none" } }, justIcon: { paddingLeft: "12px", paddingRight: "12px", fontSize: "20px", height: "41px", minWidth: "41px", width: "41px", "& .fab,& .fas,& .far,& .fal,& svg,& .material-icons": { marginRight: "0px" }, "&$lg": { height: "57px", minWidth: "57px", width: "57px", lineHeight: "56px", "& .fab,& .fas,& .far,& .fal,& .material-icons": { fontSize: "32px", lineHeight: "56px" }, "& svg": { width: "32px", height: "32px" } }, "&$sm": { height: "30px", minWidth: "30px", width: "30px", "& .fab,& .fas,& .far,& .fal,& .material-icons": { fontSize: "17px", lineHeight: "29px" }, "& svg": { width: "17px", height: "17px" } } } }; /* harmony default export */ var components_buttonStyle = (buttonStyle); // CONCATENATED MODULE: ./components/CustomButtons/Button.js var __jsx = external_react_default.a.createElement; 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); } 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; } 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; } 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; } 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; } 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; } // nodejs library to set properties for components // nodejs library that concatenates classes // @material-ui/core components // core components const makeComponentStyles = makeStyles_default()(() => _objectSpread({}, components_buttonStyle)); const RegularButton = external_react_default.a.forwardRef((props, ref) => { const { color, round, children, fullWidth, disabled, simple, size, block, link, justIcon, className } = props, rest = _objectWithoutProperties(props, ["color", "round", "children", "fullWidth", "disabled", "simple", "size", "block", "link", "justIcon", "className"]); const classes = makeComponentStyles(); const btnClasses = external_classnames_default()({ [classes.button]: true, [classes[size]]: size, [classes[color]]: color, [classes.round]: round, [classes.fullWidth]: fullWidth, [classes.disabled]: disabled, [classes.simple]: simple, [classes.block]: block, [classes.link]: link, [classes.justIcon]: justIcon, [className]: className }); return __jsx(Button_default.a, _extends({}, rest, { ref: ref, classes: { root: btnClasses } }), children); }); /* harmony default export */ var Button = __webpack_exports__["a"] = (RegularButton); /***/ }), /***/ "UsYt": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // EXPORTS __webpack_require__.d(__webpack_exports__, "a", function() { return /* binding */ CardBody; }); // EXTERNAL MODULE: external "react" var external_react_ = __webpack_require__("cDcd"); var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_); // EXTERNAL MODULE: external "classnames" var external_classnames_ = __webpack_require__("K2gz"); var external_classnames_default = /*#__PURE__*/__webpack_require__.n(external_classnames_); // EXTERNAL MODULE: external "@material-ui/core/styles" var styles_ = __webpack_require__("9Pu4"); // CONCATENATED MODULE: ./assets/jss/nextjs-material-kit/components/cardBodyStyle.js const cardBodyStyle = { cardBody: { padding: "0.9375rem 1.875rem", flex: "1 1 auto" } }; /* harmony default export */ var components_cardBodyStyle = (cardBodyStyle); // CONCATENATED MODULE: ./components/Card/CardBody.js var __jsx = external_react_default.a.createElement; 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); } 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; } 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; } // nodejs library that concatenates classes // nodejs library to set properties for components // @material-ui/core components // @material-ui/icons // core components const useStyles = Object(styles_["makeStyles"])(components_cardBodyStyle); function CardBody(props) { const classes = useStyles(); const { className, children } = props, rest = _objectWithoutProperties(props, ["className", "children"]); const cardBodyClasses = external_classnames_default()({ [classes.cardBody]: true, [className]: className !== undefined }); return __jsx("div", _extends({ className: cardBodyClasses }, rest), children); } /***/ }), /***/ "Wh1t": /***/ (function(module, exports) { module.exports = require("@material-ui/core/Button"); /***/ }), /***/ "b62h": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("cDcd"); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("9Pu4"); /* harmony import */ var _material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var assets_jss_nextjs_material_kit_pages_componentsSections_notificationsStyles_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("7WNa"); /* harmony import */ var components_Card_Card_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("A2So"); /* harmony import */ var components_Card_CardBody_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("UsYt"); /* harmony import */ var components_Card_CardHeader_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("2zww"); /* harmony import */ var components_Header_LinkCompany_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__("K2z0"); var __jsx = react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement; 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; } 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; } const useStyles = Object(_material_ui_core_styles__WEBPACK_IMPORTED_MODULE_1__["makeStyles"])(assets_jss_nextjs_material_kit_pages_componentsSections_notificationsStyles_js__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"]); const DataSaham = function (_ref) { let { backend, businessPartners, service, carousel } = _ref, props = _objectWithoutProperties(_ref, ["backend", "businessPartners", "service", "carousel"]); const classes = useStyles(); return __jsx("div", null, __jsx(components_Card_Card_js__WEBPACK_IMPORTED_MODULE_3__[/* default */ "a"], { className: classes.textCenter, align: "center", style: { padding: "5px" } }, __jsx("div", { align: "center" }, __jsx(components_Card_CardHeader_js__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"], { color: "info", justify: "center" }, __jsx(components_Header_LinkCompany_js__WEBPACK_IMPORTED_MODULE_6__[/* default */ "a"], null))), __jsx(components_Card_CardBody_js__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"], null, __jsx("div", { align: "center" }, __jsx("img", { src: "http://3.bp.blogspot.com/-_dTNAAE-TMY/VL3Zyiti2OI/AAAAAAAAAT0/YSd7Ok_3I0k/s1600/Thamrin-brother-loker.png" })), __jsx("h1", { className: classes.cardTitle }, __jsx("b", null, "Kepemilikan Saham Thamrin Group")), __jsx("p", null, "Thamrin Group adalah perusahaan terkemuka di Sumatera Selatan & Bengkulu dengan fokus bisnis pada sektor otomotif dan properti"), __jsx("h3", null, "Visi"), __jsx("p", null, "Berdampak bagi masyarakat melalui SDM yang dimiliki, pelayanan prima & pengembangan usaha secara berkelanjutan dengan membangun perusahaan yang terpercaya & memiliki reputasi yang baik"), __jsx("h3", null, "Misi"), __jsx("p", null, "1. Melayani 21,7 juta pelanggan di tahun 2022"), __jsx("p", null, "2. Mengembangkan pemimpin yang sukses"), __jsx("p", null, "3. Mengelola proses administrasi yang simple & excellent"), __jsx("p", null, "4. Mendukung continuous improvement")))); }; /* harmony default export */ __webpack_exports__["default"] = (DataSaham); /***/ }), /***/ "cDcd": /***/ (function(module, exports) { module.exports = require("react"); /***/ }), /***/ "eDSW": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return hexToRGBAlpha; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return drawerWidth; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return transition; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return container; }); /* unused harmony export conatinerFluid */ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return boxShadow; }); /* unused harmony export card */ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return defaultFont; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return primaryColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return warningColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return dangerColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return successColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return infoColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return roseColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return grayColor; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return primaryBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return infoBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return successBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return warningBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return dangerBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return roseBoxShadow; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return warningCardHeader; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return successCardHeader; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return dangerCardHeader; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return infoCardHeader; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return primaryCardHeader; }); /* unused harmony export roseCardHeader */ /* unused harmony export cardActions */ /* unused harmony export cardHeader */ /* unused harmony export defaultBoxShadow */ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return title; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return cardTitle; }); /* unused harmony export cardLink */ /* unused harmony export cardSubtitle */ 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; } 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; } 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; } const hexColorToRGB = function (hexColor) { let detectShorthand = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; // #000 vs #000000 hexColor = hexColor.replace(detectShorthand, function (m, r, g, b) { return r + r + g + g + b + b; }); const hex_array = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hexColor); // #000000 to #ffffff return hex_array ? { r: parseInt(hex_array[1], 16), // 0-255 g: parseInt(hex_array[2], 16), // 0-255 b: parseInt(hex_array[3], 16) // 0-255 } : null; }; const hexToRGBAlpha = function (hexColor, alpha) { let rgb = hexColorToRGB(hexColor); return `rgba(${rgb.r},${rgb.g},${rgb.b},${alpha})`; }; const drawerWidth = 260; const transition = { transition: "all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1)" }; const conatinerFluid = { paddingRight: "15px", paddingLeft: "15px", marginRight: "auto", marginLeft: "auto", width: "100%" }; const container = _objectSpread({}, conatinerFluid, { "@media (min-width: 576px)": { maxWidth: "540px" }, "@media (min-width: 768px)": { maxWidth: "720px" }, "@media (min-width: 992px)": { maxWidth: "960px" }, "@media (min-width: 1200px)": { maxWidth: "1140px" } }); const boxShadow = { 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)" }; const card = { display: "inline-block", position: "relative", width: "100%", margin: "25px 0", boxShadow: "0 1px 4px 0 rgba(0, 0, 0, 0.14)", borderRadius: "3px", color: "rgba(0, 0, 0, 0.87)", background: "#fff" }; const defaultFont = { fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', fontWeight: "300", lineHeight: "1.5em" }; const primaryColor = "#212121"; const warningColor = "#ff9800"; const dangerColor = "#f44336"; const successColor = "#4caf50"; const infoColor = "#212121"; const roseColor = "#e91e63"; const grayColor = "#ffffff"; const primaryBoxShadow = { 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)}` }; const infoBoxShadow = { 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)}` }; const successBoxShadow = { 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)}` }; const warningBoxShadow = { 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)}` }; const dangerBoxShadow = { 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)}` }; const roseBoxShadow = { boxShadow: `0 4px 20px 0px ${hexToRGBAlpha("#000", 0.14)}, 0 7px 10px -5px ${hexToRGBAlpha(roseColor, 0.4)}` }; const warningCardHeader = _objectSpread({ color: "#fff", background: "linear-gradient(60deg, #ffa726, #fb8c00)" }, warningBoxShadow); const successCardHeader = _objectSpread({ color: "#fff", background: "linear-gradient(60deg, #66bb6a, #43a047)" }, successBoxShadow); const dangerCardHeader = _objectSpread({ color: "#fff", background: "linear-gradient(60deg, #ef5350, #e53935)" }, dangerBoxShadow); const infoCardHeader = _objectSpread({ color: "#fff", background: "#212121" }, infoBoxShadow); const primaryCardHeader = _objectSpread({ color: "#fff", background: "linear-gradient(60deg, #ab47bc, #8e24aa)" }, primaryBoxShadow); const roseCardHeader = _objectSpread({ color: "#fff", background: "linear-gradient(60deg, #ec407a, #d81b60)" }, roseBoxShadow); const cardActions = _objectSpread({ margin: "0 20px 10px", paddingTop: "10px", borderTop: "1px solid #eeeeee", height: "auto" }, defaultFont); const cardHeader = { margin: "-30px 15px 0", borderRadius: "3px", padding: "15px" }; const defaultBoxShadow = { border: "0", borderRadius: "3px", 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)", padding: "10px 0", transition: "all 150ms ease 0s" }; const title = { color: "#ffffff", margin: "1.75rem 0 0.875rem", textDecoration: "none", fontWeight: "700", fontFamily: `"Roboto Slab", "Times New Roman", serif` }; const cardTitle = _objectSpread({}, title, { marginTop: ".625rem" }); const cardLink = { "& + $cardLink": { marginLeft: "1.25rem" } }; const cardSubtitle = { marginBottom: "0", marginTop: "-.375rem" }; /***/ }), /***/ "oLCs": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("eDSW"); const footerStyle = { block: { color: "inherit", padding: "0.9375rem", fontWeight: "500", fontSize: "12px", textTransform: "uppercase", borderRadius: "3px", textDecoration: "none", position: "relative", display: "block" }, left: { float: "left!important", display: "block" }, right: { padding: "15px 0", margin: "0", float: "right!important" }, footer: { padding: "0.9375rem 0", textAlign: "center", display: "flex", zIndex: "2", position: "relative" }, a: { color: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* primaryColor */ "p"], textDecoration: "none", backgroundColor: "transparent" }, footerWhiteFont: { "&,&:hover,&:focus": { color: "#FFFFFF" } }, container: assets_jss_nextjs_material_kit_js__WEBPACK_IMPORTED_MODULE_0__[/* container */ "c"], list: { marginBottom: "0", padding: "0", marginTop: "0" }, inlineBlock: { display: "inline-block", padding: "0px", width: "auto" }, icon: { width: "18px", height: "18px", position: "relative", top: "3px" } }; /* harmony default export */ __webpack_exports__["a"] = (footerStyle); /***/ }) /******/ });