{"version":3,"sources":["webpack:///./node_modules/react-bootstrap/esm/Image.js","webpack:///./src/pages/sustainability.jsx","webpack:///./src/components/HeaderExpanded/HeaderExpanded.jsx"],"names":["Image","string","bool","forwardRef","_ref","ref","bsPrefix","className","fluid","rounded","roundedCircle","thumbnail","props","classes","createElement","displayName","defaultProps","Sustainability","useEffect","window","scrollTo","name","content","title","image","process","xs","sm","src","alt","width","HeaderExpanded","backgroundImageStyle","backgroundImage","backgroundSize","backgroundPosition","backgroundRepeat","Header","noGutters","md","style"],"mappings":"8FAAA,uGAsCIA,GA5BQ,IAAUC,OAKb,IAAUC,KAKR,IAAUA,KAKJ,IAAUA,KAKd,IAAUA,KAQX,IAAMC,YAAW,SAAUC,EAAMC,GAC3C,IAAIC,EAAWF,EAAKE,SAChBC,EAAYH,EAAKG,UACjBC,EAAQJ,EAAKI,MACbC,EAAUL,EAAKK,QACfC,EAAgBN,EAAKM,cACrBC,EAAYP,EAAKO,UACjBC,EAAQ,YAA8BR,EAAM,CAAC,WAAY,YAAa,QAAS,UAAW,gBAAiB,cAE/GE,EAAW,YAAmBA,EAAU,OACxC,IAAIO,EAAU,IAAWL,GAASF,EAAW,SAAUG,GAAW,UAAWC,GAAiB,iBAAkBC,GAAaL,EAAW,cACxI,OAAoB,IAAMQ,cAAc,MAAO,YAAS,CAEtDT,IAAKA,GACJO,EAAO,CACRL,UAAW,IAAWA,EAAWM,UAGrCb,EAAMe,YAAc,QACpBf,EAAMgB,aAzBa,CACjBR,OAAO,EACPC,SAAS,EACTC,eAAe,EACfC,WAAW,GAsBE,O,kFC1Df,oHA2FeM,UArFf,WAKE,OAJAC,qBAAU,WACRC,OAAOC,SAAS,EAAG,KAClB,IAGD,oCAEE,kBAAC,IAAD,KACE,4DACA,0BACEC,KAAK,cACLC,QAAQ,gGAIZ,kBAAC,IAAD,CACEC,MAAM,+CACNC,MACEC,sFAGJ,kBAAC,IAAD,CAAWlB,UAAU,QACnB,kBAAC,IAAD,KACE,kBAAC,IAAD,CAAKmB,GAAI,GAAIC,GAAI,GACf,uBAAGpB,UAAU,cAAb,qSAOA,kjBAWA,+PAOF,kBAAC,IAAD,CAAKmB,GAAI,GAAIC,GAAI,EAAGpB,UAAU,uBAC5B,kBAAC,IAAD,CACEqB,IACEH,gFAEFI,IAAI,SACJC,MAAM,MACNvB,UAAU,MACVC,OAAK,IAGP,kBAAC,IAAD,CACEoB,IACEH,mFAEFI,IAAI,cACJC,MAAM,MACNvB,UAAU,MACVC,OAAK,IAEP,kBAAC,IAAD,CACEoB,IACEH,yGAGFI,IAAI,6BACJrB,OAAK,U,kCClFnB,iFA2CeuB,IAtCf,SAAwBnB,GAAQ,IACtBY,EAAiBZ,EAAjBY,MAAOD,EAAUX,EAAVW,MAEXS,EAAuB,CACzBC,gBAAgB,OAAQT,EAAT,IACfU,eAAgB,QAChBC,mBAAoB,eACpBC,iBAAkB,aAGdC,EACJ,kBAAC,IAAD,KACE,kBAAC,IAAD,CAAKC,WAAS,GACZ,kBAAC,IAAD,CAAKZ,GAAI,GAAIa,GAAI,EAAGhC,UAAU,uCAC5B,4BAAQA,UAAU,4CAA4CgB,MAMtE,OAAOC,EACL,kBAAC,IAAD,CACEhB,OAAK,EACLD,UAAU,wEAEV,yBAAKiC,MAAOR,EAAsBzB,UAAU,6BAC3C8B,GAGH,kBAAC,IAAD,CACE7B,OAAK,EACLD,UAAU,kFAET8B,K","file":"component---src-pages-sustainability-jsx-f6271f88c5bec1360a49.js","sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport classNames from 'classnames';\nimport React from 'react';\nimport PropTypes from 'prop-types';\nimport { useBootstrapPrefix } from './ThemeProvider';\nexport var propTypes = {\n /**\n * @default 'img'\n */\n bsPrefix: PropTypes.string,\n\n /**\n * Sets image as fluid image.\n */\n fluid: PropTypes.bool,\n\n /**\n * Sets image shape as rounded.\n */\n rounded: PropTypes.bool,\n\n /**\n * Sets image shape as circle.\n */\n roundedCircle: PropTypes.bool,\n\n /**\n * Sets image shape as thumbnail.\n */\n thumbnail: PropTypes.bool\n};\nvar defaultProps = {\n fluid: false,\n rounded: false,\n roundedCircle: false,\n thumbnail: false\n};\nvar Image = React.forwardRef(function (_ref, ref) {\n var bsPrefix = _ref.bsPrefix,\n className = _ref.className,\n fluid = _ref.fluid,\n rounded = _ref.rounded,\n roundedCircle = _ref.roundedCircle,\n thumbnail = _ref.thumbnail,\n props = _objectWithoutPropertiesLoose(_ref, [\"bsPrefix\", \"className\", \"fluid\", \"rounded\", \"roundedCircle\", \"thumbnail\"]);\n\n bsPrefix = useBootstrapPrefix(bsPrefix, 'img');\n var classes = classNames(fluid && bsPrefix + \"-fluid\", rounded && \"rounded\", roundedCircle && \"rounded-circle\", thumbnail && bsPrefix + \"-thumbnail\");\n return /*#__PURE__*/React.createElement(\"img\", _extends({\n // eslint-disable-line jsx-a11y/alt-text\n ref: ref\n }, props, {\n className: classNames(className, classes)\n }));\n});\nImage.displayName = 'Image';\nImage.defaultProps = defaultProps;\nexport default Image;","import React, { useEffect } from 'react';\nimport { Col, Container, Image, Row } from 'react-bootstrap';\nimport HeaderExpanded from '../components/HeaderExpanded/HeaderExpanded';\nimport '../styles/sustainability.scss';\nimport { Helmet } from 'react-helmet';\n\nfunction Sustainability() {\n useEffect(() => {\n window.scrollTo(0, 0);\n }, []);\n\n return (\n <>\n {/* Add meta tags inside here. */}\n \n HortPlus | Sustainability\n \n \n \n \n \n \n

\n HortPlus delivers solutions that are time-sensitive and critical\n to grower’s operations. We understand the intricacies of the\n primary sector and the challenges that are faced throughout the\n season. We believe in sustainable operation and building solutions\n that enable better resource use.\n

\n

\n HortPlus pioneered the development of digital decision support\n tools as the New Zealand Apple industry moved from calendar-based\n chemical spraying to a \"Futures\" Integrated Productivity Programme\n in the 2000s. The goal of this programme was to reduce sprays and\n residue levels and minimise environmental impact. Since then we\n have worked with a number of industries and firms to help them\n along this journey. With increasing market access compliance\n regulations and residue limits this has become a key part of\n industry programmes.\n

\n

\n For over 15 years HortPlus has continued to provide decision\n support tools that are used by growers and firms throughout New\n Zealand and we value our business relationships and the success of\n our clients over the long term.\n

\n \n \n \n\n \n \n \n
\n
\n \n );\n}\n\nexport default Sustainability;\n","import React from 'react';\nimport { Col, Container, Row } from 'react-bootstrap';\nimport './HeaderExpanded.scss';\nimport '../HomepageFrames/Frame.scss';\n\nfunction HeaderExpanded(props) {\n const { image, title } = props;\n\n var backgroundImageStyle = {\n backgroundImage: `url(${image})`,\n backgroundSize: 'cover',\n backgroundPosition: 'center right',\n backgroundRepeat: 'no-repeat'\n };\n\n const Header = (\n \n \n \n
{title}
\n \n
\n
\n );\n\n return image ? (\n \n
\n {Header}\n \n ) : (\n \n {Header}\n \n );\n}\n\nexport default HeaderExpanded;\n"],"sourceRoot":""}