{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/2Kn7x6oKnqXS7OcDRai6/jdeE41O7MkBVAFZGAE4R/wJG7By13k-2.js"],
  "sourcesContent": ["import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as i}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,Link as n}from\"framer\";import{motion as r}from\"framer-motion\";import*as a from\"react\";import{Youtube as o}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";export const richText=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/i(\"h4\",{children:[\"Good news: \",/*#__PURE__*/e(\"strong\",{children:\"We are officially a Certified B Corporation\"})]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s something we\u2019ve been quietly working towards for a while, and now it\u2019s official. This milestone reflects what we\u2019ve been building from day one: doing things the right way, not just the easy way.\"}),/*#__PURE__*/e(\"p\",{children:\"Becoming a B Corp means we\u2019re part of a global movement using business as a force for good. It shows we\u2019re here for the long run, and we want to help move the delivery industry forward.\"}),/*#__PURE__*/e(\"h3\",{children:\"What is a B Corp, exactly?\"}),/*#__PURE__*/e(\"p\",{children:\"B Corps are companies that meet the highest standards of social and environmental performance, transparency, and accountability. The certification isn\u2019t handed out lightly. Companies are rigorously scored across everything from governance and environmental impact to how they treat their people.\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle scored 105.6 out of 200 points. The average business scores around 50.9. So yes, we\u2019re proud, but we know there\u2019s still much work to do.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"525\",src:\"https://framerusercontent.com/images/NFwA0rcYvfBQVQ65jkkshgMZnU.png\",srcSet:\"https://framerusercontent.com/images/NFwA0rcYvfBQVQ65jkkshgMZnU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NFwA0rcYvfBQVQ65jkkshgMZnU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NFwA0rcYvfBQVQ65jkkshgMZnU.png 1750w\",style:{aspectRatio:\"1750 / 1050\"},width:\"875\"}),/*#__PURE__*/e(\"h3\",{children:\"Why this matters to us\"}),/*#__PURE__*/e(\"p\",{children:\"From the beginning, we\u2019ve chosen electric cargo bikes over diesel vans. We\u2019ve built a delivery model where the greenest option is also the most logical one - for brands and for consumers. It's fast, reliable, and emission-free. We measure our impact, listen to feedback from couriers and partners, and keep improving. \"}),/*#__PURE__*/i(\"blockquote\",{children:[/*#__PURE__*/e(\"p\",{children:\"\u201CB Corp is a great moment for us. It shows what\u2019s possible when you build with purpose from the start.\u201D\"}),/*#__PURE__*/i(\"p\",{children:[\"\u2014 \",/*#__PURE__*/e(\"strong\",{children:\"Tim van Alphen\"}),\", Co-founder of Sparqle\"]})]}),/*#__PURE__*/e(\"h3\",{children:\"More than a badge\"}),/*#__PURE__*/i(\"p\",{children:[\"Our mission has always been simple: \",/*#__PURE__*/e(\"strong\",{children:\"make delivery better\"}),\" - not only for the planet, but also for the people and companies sending and receiving parcels every day.\"]}),/*#__PURE__*/e(\"p\",{children:\"That\u2019s why becoming a B Corp means more than hitting a score: it\u2019s about creating long-term value, for people, partners, and the planet.\"}),/*#__PURE__*/e(\"p\",{children:\"That\u2019s something we think about in everything we build. From branded tracking and real-time updates that keep customers informed, to a platform that reduces delivery issues and support tickets. Our performance dashboard gives partners full control of their delivery operations, and our emissions insights make measuring and reporting simple.\"}),/*#__PURE__*/e(\"p\",{children:\"We believe the delivery experience should reflect your brand, and actually add value to it. In the end, we\u2019re not just here to deliver parcels. We\u2019re here to help brands grow by making logistics more sustainable, more transparent, and overall just more enjoyable for consumers.\"}),/*#__PURE__*/e(\"h3\",{children:\"A short video to mark the moment \uD83C\uDFA5\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\",children:i=>/*#__PURE__*/e(o,{...i,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=LW_5pM7HSP0\"})})}),/*#__PURE__*/e(\"p\",{children:\"We made a short video to bring this milestone to life, about our mission and share what becoming a B Corp really means to us.\"}),/*#__PURE__*/e(\"h3\",{children:\"What\u2019s next?\"}),/*#__PURE__*/i(\"p\",{children:[\"This is just the beginning. We\u2019ll continue to grow - expanding coverage, improving our platform, and we\u2019ll keep scaling our impact, with some exciting customer launches on the way. \",/*#__PURE__*/e(\"strong\",{children:\"\uD83D\uDC40\"})]}),/*#__PURE__*/e(\"p\",{children:\"B Corp helps hold us accountable as we grow, and pushes us to keep doing better.\"}),/*#__PURE__*/e(\"h3\",{children:\"Be part of our community\"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re a brand looking for a more sustainable way to deliver, and level up your customer experience, we\u2019d love to talk.\"}),/*#__PURE__*/i(\"p\",{children:[\"\uD83D\uDC49 \",/*#__PURE__*/e(n,{href:\"https://www.youtube.com/watch?v=LW_5pM7HSP0\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Watch the video\"})}),\", share the news, or drop us a message.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Let our deliveries move your business forward.\"})})]});export const richText1=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Sparqle, we\u2019re excited to introduce our newly rebranded website, designed to reflect our vision for a delivery ecosystem where speed, reliability, and sustainability come together. Our mission is to exceed customer expectations while minimising our environmental impact.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s what makes Sparqle unique, driven by four core values that shape everything we do:\"}),/*#__PURE__*/e(\"h2\",{children:\"Enhanced Efficiency\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle has one powerful differentiator: in-house innovation. We ensure control over the entire delivery process by building our proprietary routing engine and advanced rider app in-house. From volume overviews to diverse delivery options, our platform empowers retailers with guaranteed efficiency and reliability. Leveraging AI, we streamline the delivery journey, enabling speedy deliveries and the best-in-class on-time delivery rates. With a focus on operations and being one of the first companies to optimise bike routes, we ensure a seamless experience for both retailers and consumers, all while making sure it\u2019s captured in our extensive delivery reporting.\\xa0 \\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/e(\"h2\",{children:\"Sustainability Built-in\"}),/*#__PURE__*/e(\"p\",{children:\"Sustainability isn't just a buzzword at Sparqle; it's our commitment. We go beyond carbon offsets and vague promises \u2013 we offer transparent, verifiable carbon footprint reporting, empowering you to meet compliance needs and demonstrate your commitment to the environment. We relentlessly optimise routes to minimise emissions and embrace e-cargo bikes and electric vehicles, reducing our environmental impact and contributing to cleaner cities. Our dedication to minimising environmental impact extends beyond just our operations \u2013 it's ingrained in every aspect of our business, ensuring that retailers can align with their sustainability goals while delivering exceptional service to their customers.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"255\",src:\"https://framerusercontent.com/images/c9KgoMp0JBF7aMv5GcNpsmKzk.png\",srcSet:\"https://framerusercontent.com/images/c9KgoMp0JBF7aMv5GcNpsmKzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/c9KgoMp0JBF7aMv5GcNpsmKzk.png 990w\",style:{aspectRatio:\"990 / 510\"},width:\"495\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Creating Seamless Consumer Experiences\"}),/*#__PURE__*/e(\"p\",{children:\"At Sparqle, customer experience is the core of what we do. Our end-to-end platform provides the tools such as our checkout components, track-and-trace and data insights, enabling retailers to deliver exceptional customer journeys. We fight the black box of delivery information ensuring that everything from optimal delivery times to personalised preferences are transparent and built with the customer in mind. Our advanced tracking system provides a seamless and reliable delivery experience, leading to increased NPS scores and conversion rates.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"As the retail landscape evolves, one thing stands out \u2013 Sparqle isn't just a delivery partner; we're here to make a difference. With us, you get more than just a service; you get a reliable ally in tackling the delivery challenges. Our commitment to innovation, transparency, and sustainability means you can trust us to navigate the delivery landscape with you.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Commitment to Transparency and Collaboration\"}),/*#__PURE__*/e(\"p\",{children:\"Transparency isn\u2019t an option; it\u2019s our ethos. We believe in empowering riders, fostering collaboration with local logistics partners and empowering consumers to take control of their deliveries. By sharing our advanced technology with local partners, we are creating a collaborative ecosystem of transparency, ethical practices, and collective progress towards a more efficient and sustainable logistics future.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"267\",src:\"https://framerusercontent.com/images/DPAr0NACUC5S0hEnPIB0gds8.png\",srcSet:\"https://framerusercontent.com/images/DPAr0NACUC5S0hEnPIB0gds8.png?scale-down-to=512 512w,https://framerusercontent.com/images/DPAr0NACUC5S0hEnPIB0gds8.png 930w\",style:{aspectRatio:\"930 / 535\"},width:\"465\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:\"Join Us in Making Deliveries Emission-Free\"}),/*#__PURE__*/e(\"p\",{children:\"Explore our new website and discover how Sparqle is dedicated to positively changing the delivery industry with our commitment to efficiency, sustainability, seamless customer experiences, and transparency. Thank you for being part of our journey.\"}),/*#__PURE__*/e(\"p\",{children:\"By embracing these values and with a fresh new website, Sparqle aspires to be a driver of change in the delivery industry, benefiting businesses, and the environment alike. We look forward to partnering with you in this mission.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Reach out to us via the contact button below, and let\u2019s make a positive impact together.\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});export const richText2=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Nowadays the way products reach consumers is more important than ever. Last-mile delivery is a critical component of the delivery process since it is the last touchpoint between brands and consumers. However, it is not only about being fast and efficient; sustainability now plays an important role too. Below are five benefits of sustainable last-mile delivery for your brand.\"}),/*#__PURE__*/e(\"h2\",{children:\"1. Addressing the Increasing Consumer Expectations of Sustainability\"}),/*#__PURE__*/i(\"p\",{children:[\"Customers are also becoming more conscious of the environmental cost of the products they use. There is an increased demand for products from companies that are environmentally friendly. A \",/*#__PURE__*/e(n,{href:\"https://www.capgemini.com/wp-content/uploads/2020/07/20-06_9880_Sustainability-in-CPR_Final_Web-1.pdf\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"survey\"})}),\" by Capgemini Research Institute indicated that 60% of consumers are hesitant to buy from organisations they perceive to be unsustainable.\"]}),/*#__PURE__*/e(\"p\",{children:\"Sustainable delivery solutions include the use of electric vehicles or bike delivery services, which can help minimise carbon emissions. This helps the environment and makes brands more attractive to consumers with similar values.\"}),/*#__PURE__*/e(\"h2\",{children:\"2. Improve Operational Efficiency\"}),/*#__PURE__*/e(\"p\",{children:\"Sustainable delivery solutions can enhance efficiency. For instance, electric vehicles can lower fuel expenses and repair costs compared to more polluting conventional vehicles. Also, using route optimisation technology can reduce the distance and number of needed vehicles, therefore cutting down on costs and emissions.\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle adopted technology to plan the delivery routes in a way that makes them as efficient as possible. This minimises our carbon footprint and enables us to offer a better customer experience.\"}),/*#__PURE__*/e(\"h2\",{children:\"3. Enhance Your Brand Image\"}),/*#__PURE__*/e(\"p\",{children:\"In the dynamic retail landscape, last-mile delivery is about timely and accurate deliveries, transparency, sustainable practices and exceeding customers\u2019 expectations consistently. Therefore it is important to have a good brand image in today\u2019s competitive landscape.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"When you embrace sustainable practices, you can build a better image and perception for your brand and set yourself apart from competitors. Consumers are more likely to support brands that are willing to make changes towards sustainability.\"}),/*#__PURE__*/e(\"h2\",{children:\"4. Meet the Growing Compliance Demands\"}),/*#__PURE__*/e(\"p\",{children:\"The governments and other regulatory authorities of the world are setting higher standards of environmental compliance, which in turn is exerting pressure on organisations to reduce their environmental footprint. By implementing sustainable last-mile delivery practices, you can be ahead of these regulations and avoid any fines or penalties that may arise.\"}),/*#__PURE__*/e(\"h2\",{children:\"5. Contribute to a Better Future\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, implementing sustainable last-mile delivery strategies is not only about achieving business advantages; it is about making a difference and creating a positive change for our world. Transportation is one of the largest sources of greenhouse gas emissions, and last-mile delivery is a large component of that.\"}),/*#__PURE__*/e(\"p\",{children:\"Your brand can contribute to the fight against climate change by cutting emissions and adopting environmentally friendly delivery options. By doing this, there is a win-win situation; appealing to customers who wish to make a difference through their purchases while having a positive impact on the planet.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"If you want to employ sustainable delivery methods for your brand, contact us below.\"})})]});export const richText3=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In the dynamic delivery and retail landscape where sustainability and seamless customer experiences are key, Sparqle and De Koffiejongens have come together to redefine the coffee delivery experience. This partnership emphasises the shared commitment to environmental responsibility and is a step forward in delivering customers smooth and personalised delivery experiences.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Sparqle?\"}),/*#__PURE__*/e(\"p\",{children:\"When asked about their decision to collaborate with Sparqle, De Koffiejongens mentioned several factors. They highlighted the value match of the two companies, specifically their strong dedication to sustainability and eco-friendly decisions. Moreover, Sparqle\u2019s delivery services, which are both effective and reliable, along with their last-mile logistics expertise, make them an ideal partner for De Koffiejongens.\\xa0\"}),/*#__PURE__*/i(\"p\",{children:[\"\u201CA\",/*#__PURE__*/e(\"em\",{children:\"t De Koffiejongens, we make conscious choices in everything we do. Sparqle fits well within our values as a company. It is a young and entrepreneurial company with a focus on green, efficiency, and a rider-first principle.\u201D\"})]}),/*#__PURE__*/e(\"h2\",{children:\"Cooperation and Future Outlook\"}),/*#__PURE__*/e(\"p\",{children:\"The partnership between De Koffiejongens and Sparqle has been characterised by good teamwork and the same effort for the quality of service Sparqle has proven to be a reliable partner in delivering quality service and responding to the dynamic requirements of De Koffiejongens. This lays a foundation for strong collaboration for the future, \u201CSparq\u2019ling\u201D as Koffiejongens\u2019s COO mentions.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/i(\"em\",{children:[\"\u201CSo far, we see that quality and speed are high on Sparqle\u2019s agenda. Everything is tested in detail to ensure customers have an optimal experience.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"To create a pleasant customer journey, the last mile is extremely important. Our delivery partners are the only ones with physical contact with the customer. That's why we want this moment to be right: sustainable and on time. Because Sparqle shares the same values \u200B\u200Bas De Koffiejongens, we experience a perfect match.\u201D\"]})}),/*#__PURE__*/e(\"h2\",{children:\"Recommendation from De Koffiejongens\"}),/*#__PURE__*/e(\"p\",{children:\"Based on their experience, De Koffiejongens recommends Sparqle to other companies seeking a reliable and sustainable delivery partner.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u200D\u201CWe would definitely recommend Sparqle. From our first contact to the launch, we have been very satisfied with Sparqle. The young team already feels very experienced thanks to the right knowledge and speed.\u201D\"})}),/*#__PURE__*/e(\"h2\",{children:\"About De Koffiejongens\"}),/*#__PURE__*/e(\"p\",{children:\"Koffiejongens is a company devoted to changing the coffee sector through its approach to sustainability and quality. The company focuses on providing 100% biodegradable cups made eco-friendly from plants that can be disposed of without harming the environment. Certified with the Rainforest Alliance quality mark, their coffee ensures the farmers' better living and environment-friendly practices. They use environmentally conscious cardboard packaging, which involves the use of sustainable materials and practices. Koffiejongens now runs its deliveries environmentally friendly through Sparqle thereby reducing pollution. Since 2021, they have been CO\u2082 neutral and they got certified as B Corp in 2023, thus setting a good example in environmental responsibility.\"}),/*#__PURE__*/e(\"h2\",{children:\"About Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle is a leading sustainable delivery solution, connecting retailers and e-commerce brands with sustainable delivery methods. Sparqle stands out in the delivery industry by prioritising efficiency, reliability, and sustainability. Our in-house developed software guarantees seamless operations for retailers and exceptional experiences for consumers. Sustainability is more than just a goal; it's ingrained in everything we do, from transparent carbon footprint reporting to our commitment to emission-free logistics. We place a premium on customer experience, offering advanced tracking systems and consumer data insights, while promoting transparency and collaboration throughout our network. Sparqle is setting new standards in the delivery industry, benefiting businesses, communities, and the environment alike.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/i(\"em\",{children:[/*#__PURE__*/e(\"strong\",{children:\"\u201C\"}),\"At Sparqle, sustainability is the main reason for our mission and partnerships. We are happy to work together with De Koffiejongens, a company that has the same environmental values as us,\u201D mentions Sparqle\u2019s co-founder Tim van Alphen. \u201CThe 100% biodegradable coffee capsules of De Koffiejongens are proof of their commitment to reducing waste and creating a greener planet.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Sparqle provides the most eco-friendly method of delivering De Koffiejongens products using cargo bikes in various cities. This partnership not only improves the customer experience but also significantly cuts down our carbon footprint. Our goal is to improve the delivery processes to achieve maximum efficiency and fair pricing, ensuring consumers will get their coffee in an environmentally friendly way.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"We believe that sustainable practices should be included in every part of the product, including delivery, which is key to long-term customer satisfaction and loyalty. Together with De Koffiejongens, we are at the forefront of the shift towards a more sustainable future.\u201D\"]})}),/*#__PURE__*/e(\"p\",{children:\"Through this partnership, De Koffiejongens and Sparqle are changing the coffee landscape with high-quality sustainable coffee cups delivered efficiently with a seamless customer experience.\"})]});export const richText4=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Earth Day is an annual event that marks a reminder of the importance of environmental conservation and sustainability and encourages people from all over the globe to come together and take action for a healthier planet and brighter future. At Sparqle, sustainability is at the core of everything we do. That\u2019s why, to mark Earth Day 2024, we wanted to share and celebrate how our team incorporates sustainability into their daily lives. Hear more from the Sparqle team below.\"}),/*#__PURE__*/e(\"h2\",{children:\"Walter Jansma, Engineering Lead\"}),/*#__PURE__*/e(\"p\",{children:\"One sustainable practice I've embraced is using reusable packaging whenever possible. Whether it's taking your shopping bags to the supermarket or using containers for food storage instead of cling foil, it\u2019s a simple yet effective way to minimise waste. You won\u2019t save the world with it, but it\u2019s a small step that aligns with a broader commitment to living more sustainably.\u200D\"}),/*#__PURE__*/e(\"p\",{children:\"I believe adopting a sustainable mindset in general is key. Whenever you're purchasing something new, it's important to pause and ask yourself if you need it, or if there might be a more sustainable alternative available. This approach not only helps in making more environmentally friendly choices but also often leads to discovering innovative and better solutions.\"}),/*#__PURE__*/e(\"p\",{children:\"I always use my (non-electric) bike to navigate the city, which not only gives me a bit of exercise but also gets me around the city with zero emissions. For longer distances, I rely on public transport or shared vehicle services like Sixt or MyWheels. I\u2019m excited about the shared vehicle concept\u2014it reduces the number of cars on the road and is even good for your wallet if you don\u2019t ride that often! I'm hopeful that these services will grow and expand their coverage, making it unnecessary for me to ever purchase a car!\"}),/*#__PURE__*/e(\"h2\",{children:\"Roos Teunissen, Head of Operations\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I've fully embraced buying and selling second-hand products such as clothing to reduce the demand for new garments. Once in a while I also take a two-month stop from non-essential purchases to reassess my consumption habits. Reducing consumption behaviour decreases waste by extending the lifecycle of existing clothing items instead of throwing them away. This practice also minimises the environmental impact associated with the production of new clothing, including water usage, energy consumption, and carbon emissions.\"}),/*#__PURE__*/e(\"p\",{children:\"I recommend exploring various platforms for second-hand items and implementing periodic breaks from non-essential purchases. It fosters mindful consumption and supports sustainability.\"}),/*#__PURE__*/e(\"p\",{children:\"\u200DAnother sustainable practice I prioritise is buying seasonal foods, which reduces the need for extensive transportation and supports local farmers. By choosing in-season produce, I minimize the environmental impact associated with long-distance food transportation\"}),/*#__PURE__*/e(\"h2\",{children:\"Miruna \u021Ai\u021B, Marketing\"}),/*#__PURE__*/e(\"p\",{children:\"There are many small practices I embrace daily. From thinking about how I could reuse certain objects I extend their lifetime to repairing clothes instead of throwing them and adopting a more plant-based diet. I buy second-hand as much as possible; if not, I buy from more conscious brands with a longer lifetime. On the same note, to extend the lifetime of my old clothes, I sell them on different platforms online. Other times, it\u2019s just the small practice of using a reusable shopping bag and bringing my reusable water bottle with me, including when travelling, to try and avoid single-use packaging.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"I believe a combination of reducing, reusing, recycling, repairing, and rethinking is the way to go when we want to adopt more sustainable practices. We can make our contribution whether we choose to take public transport more often, get emission-free deliveries ;), eat seasonally, buy second-hand, repair clothes or reduce overall consumption. It can look very different for everyone, so I would recommend starting small and exploring what works for you. All these seemingly small, but conscious daily efforts can have an impact if adopted at large.\"}),/*#__PURE__*/e(\"p\",{children:\"\u200DSustainability can indeed take some research and time and often the sustainable option is not the fastest, nor the most convenient one. The practices I mentioned are of course not changing the world, but I like to believe that if everyone would be more considerate towards their actions on our planet and rethink some of their consumption behaviour, we would get to a better place in the future.\"})]});export const richText5=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Have you ever had a positive online shopping experience that was later spoiled by the delivery process? Despite a positive initial experience and a great product, a poor delivery experience can overshadow everything else and leave a lasting negative impression of the company. Businesses can do everything right in the sales experience, but if they neglect the final leg of the customer journey, it can undo all their efforts and cause permanent damage to their brand reputation and customer loyalty. In today's dynamic retail landscape, delivering not just products but seamless experiences has become key.\"}),/*#__PURE__*/e(\"h2\",{children:\"What is last-mile delivery and why a seamless customer experience is an important part of it?\"}),/*#__PURE__*/e(\"p\",{children:\"Last mile delivery is the final stage of the delivery process where customer orders are moved from a transportation hub or fulfilment centre to customers\u2019 address. It\u2019s known as the last leg of the delivery journey and is a crucial last connection between retailers or e-commerce brands and their customers.\"}),/*#__PURE__*/i(\"p\",{children:[\"Oftentimes, it\u2019s the most challenging and expensive phase of the supply chain and holds important weight in shaping the customers\u2019 perception of a company\u2019s service and products. It\u2019s a truth that customer expectations are changing at a rapid speed. A\",/*#__PURE__*/e(n,{href:\"https://www.accenture.com/us-en/insights/song/customer-experience-index#:~:text=in%20their%20lives.-,Why%20is%20great%20customer%20experience%20important%3F,and%20brand%20at%20the%20forefront\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\" study\"})}),\" from Accenture suggested that 64% of consumers wish companies would respond faster to meet their changing needs while 88% of executives think that customers are changing faster than their business can keep up.\\xa0 Thus, it\u2019s essential to have reliable partners for last-mile deliveries that can keep up with the evolving needs of customers and contribute to a seamless customer experience.\"]}),/*#__PURE__*/e(\"p\",{children:\"Customer experience, on the other hand, can be described as the perception a customer or a company has of a brand. It goes beyond using a product or a service; it includes both pre-purchase touchpoints and post-purchase interactions, such as delivery. Every interaction contributes to the overall customer experience, and each interaction has the potential to either strengthen the bond with the customer or weaken it completely.\\xa0 A positive customer experience is an effective way to differentiate from competitors and create a smooth and efficient connection between the brand and the customer.\\xa0\u200D\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"There is only one question left to answer: why should retailers and e-commerce brands care about customer experience in last-mile delivery?\\xa0\"})}),/*#__PURE__*/e(\"h2\",{children:\"Better brand perception\"}),/*#__PURE__*/e(\"p\",{children:\"The last-mile delivery experience is often the final touchpoint between the customer and the brand. A reliable and seamless experience can influence how customers perceive the brand. Efficient and reliable last-mile deliveries enhance the brand image, showing the brand as trustworthy and customer-centric. At the same time, it can encourage positive word-of-mouth and customer recommendations.\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Competitive advantage\"}),/*#__PURE__*/e(\"p\",{children:\"In this dynamic retail landscape, last-mile delivery is about timely and accurate deliveries, transparency, sustainable practices and exceeding customers\u2019 expectations consistently. This puts immense pressure on brands to choose the right delivery partner amidst a sea of options. Being able to do this offers brands a competitive edge and it enables them to stand out in a crowded market and attract more customers.\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Customer Satisfaction Leads to Customer Loyalty\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"The final stage of delivery, known as last-mile delivery, holds significant importance because it\u2019s where customers see, feel and experience the brand. In some cases, it\u2019s the only touchpoint businesses have with customers. It\u2019s concerning that 85% of customers said that a poor delivery experience would prevent them from ordering from the same company again.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"The list of customer expectations is long and evolving: same-day or next-day delivery options, real-time tracking, fair-priced shipping rates, the ability to schedule deliveries according to their preferences and sustainable delivery practices. But businesses that understand and exceed these changing expectations win in the long term. Satisfied customers are more likely to make repeat purchases. By ensuring a positive delivery experience, retailers and e-commerce brands can encourage customers to return.\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Final Thoughts\"}),/*#__PURE__*/e(\"p\",{children:\"Finally, the last-mile delivery experience is a key touchpoint that can either make or break customers\u2019 perception and brand loyalty. We believe that in this last stage, brands should be doing more than just meeting customer expectations. Retailers who see delivery as part of the product can build customer satisfaction and brand loyalty in the long run.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"By providing reliable, transparent, and sustainable delivery options, Sparqle enables brands to improve their brand image, build trust, and develop lasting relationships with their customers. However, sustainable delivery is only one part of our service. In addition, we have the technical capabilities to give customers complete freedom during the delivery process. Through Sparqle, retailers and e-commerce brands can transform delivery into a smooth and personalised experience that reinforces brand perception and generates customer loyalty.\u200D\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Curious about how we can ensure a seamless customer experience for your last-mile delivery? Contact us.\"})})]});export const richText6=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Embark on a journey through the bustling streets of busy cities as we unveil the untold stories of Sparqle\u2019s dedicated riders and hub managers. We will delve into the daily lives, challenges and wins of those who bring sustainable deliveries to customers\u2019 doorsteps. 'Life of a Rider' offers a behind-the-scenes look at the human faces behind Sparqle\u2019s innovative approach to urban logistics. In the second blog post of the series, Daniel shares his experiences, challenges, and insights into what it means to be a rider at Sparqle.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Sparqle Connection\"}),/*#__PURE__*/e(\"p\",{children:\"The Sparqle journey for Daniel began as a search for a job that would provide flexibility, outdoor work and also a touch of sustainability. He was bored of indoor jobs and while searching online for opportunities, he came across Sparqle. Working outdoors and having a flexible schedule, together with Sparqle\u2019s dedication to sustainability drew his attention instantly. Therefore, he started working for Sparqle, which he considers \u201Cseven times better\u201D than his previous experiences.\"}),/*#__PURE__*/e(\"h2\",{children:\"Choosing Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"Daniel\u2019s motivation to be a rider with Sparqle is driven by the fact that he can be a source of happiness for people by delivering Bloomon flowers. The act of delivering a flower bouquet can make a customer\u2019s day better and bring a smile to their face. What motivated him even stronger is the fact that Sparqle uses e-bikes and other sustainable practices which are in line with his interest in sustainability. He likes that he has the opportunity to contribute to cutting down on carbon emissions in last-mile delivery while at work.\"}),/*#__PURE__*/e(\"p\",{children:\"His favourite thing about being a Sparqle rider is the feeling of being outdoors and the peace that comes with it, especially during long shifts on nice days. As with any other job, being a rider has its difficulties: from bad weather to customers not answering the intercom. However, he finds a way to adjust, and each delivery is done with the same level of care and dedication customers are used to from Sparqle. \\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Life on Wheels\"}),/*#__PURE__*/e(\"p\",{children:\"Day-to-day for Daniel is about loading the e-bikes with colourful flowers before he goes on his delivery route. He receives many compliments when riding the big Sparqle cargo bike even though at the beginning, the bike looked intimidating to him because of its size, now it gives him the feeling of responsibility. Every encounter from compliments on the bike to expressions of gratitude from customers is a reminder of the value of his work. Aside from work, he has a keen interest in renewable energy and energy efficiency, aligning his values with Sparqle\u2019s values and commitment to sustainability. That makes for a perfect duo, as he looks forward to contributing to Sparqle\u2019s mission of sustainable urban logistics.\"}),/*#__PURE__*/e(\"h6\",{children:\"Would you like to learn more about how we foster a collaborative ecosystem that empowers riders, partners, and retailers? Reach out to us below and let's explore together exciting opportunities for sustainable delivery solutions.\"})]});export const richText7=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/i(\"p\",{children:[\"The newest research from the Transport & Environment (T&E) advocacy group, highlighted \",/*#__PURE__*/e(n,{href:\"https://www.euronews.com/green/2024/03/20/problem-child-transport-on-track-to-produce-nearly-half-of-europes-emissions-by-2030\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"here\"})}),\", paints a gloomy picture of the European transport sector. While general emissions are dropping, the emissions from the transportation sector have increased by more than a quarter since 1990. The positive side of the story however is that transport emissions peaked in 2007, the negative side is that transportation has decarbonised at a rate more than three times slower than the whole economy. Following this, without any action taken, transport will be responsible for 45% of Europe's gas emissions by 2030.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"In 2030, nearly half of the continent\u2019s emissions will come from mobility, making it the problem child of Europe\u2019s climate efforts. Decarbonising the sector as quickly as possible is now vital if the continent is to reach zero emissions by 2050,\" emphasises William Todts, executive director of T&E.'})}),/*#__PURE__*/e(\"p\",{children:\"The main sources of transport emissions in the EU, as the research suggests, are cars that run on petrol and diesel, which constitute more than 40% of the transport emissions. In general, road transport, comprising cars and trucks, is responsible for 70% of all emissions from transportation. Shipping companies have no motivation to enhance efficiency because nothing is forcing them to do so. Therefore, the delivery sector, including last-mile delivery, has big gaps for improvement to be filled by innovative companies committed to sustainable and efficient practices. It is worrying that European shipping is supposed to reach one-third of total transport emissions unless the current policies change, so action needs to be taken.\"}),/*#__PURE__*/e(\"p\",{children:\"The report points out the possible solutions for the future among which it is important to introduce green fuels to aviation and shipping, invest in the infrastructure and convert vehicles into electric ones to achieve substantial emissions reduction. As Todts mentions, \u201CCars, trucks, and vans can be cheaply electrified with batteries and renewables. This is now some of the lowest-hanging fruit in climate action.\u201D\"}),/*#__PURE__*/e(\"p\",{children:\"The fact that transport could account for almost half of Europe's emissions by 2030 is alarming. William Todts from T&E draws attention to the urgency of decarbonizing the transport sector to reach zero emissions by 2050. At Sparqle, our dedication to transforming last-mile deliveries into a sustainable and efficiency-driven model is only a small part of this complicated puzzle. We are actively working to make our cities cleaner by implementing e-cargo bikes and electric vehicles, route optimization for minimal emissions, and providing verifiable carbon footprint reports. However, we acknowledge that our efforts, although substantial, are only a part of the overall solution which requires a systemic change.\"}),/*#__PURE__*/e(\"p\",{children:\"The road towards a sustainable future is a joint effort of all the stakeholders, governments promoting electric vehicles, and businesses adopting zero-emission logistics. The scale of the challenge is huge, but we are determined to contribute especially when platforms like ours show that emissions can be significantly cut. This is about clean technology and fostering collaboration with local logistic partners on the foundation of trust, mutual progress and sustainability. Only by encouraging a collaborative environment, we can scale our impact and drive more positive change in logistics and last-mile delivery.\"}),/*#__PURE__*/e(\"p\",{children:\"We must work together to build a zero-emission future. Sparqle calls on industry, policymakers, and the public to join this effort. The question is not if we can afford to change but if we can afford not to. Let\u2019s join forces and work together to make deliveries emission-free. Contact us below to join the effort.\\xa0\"})]});export const richText8=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The retail landscape is evolving at breakneck speed, and with it, consumer expectations for delivery. Gone are the days of waiting weeks for your order; today's customers demand same-day or next-day delivery, real-time tracking, and the ability to schedule deliveries at their convenience. This puts immense pressure on retailers to find the right delivery partner \u2013 a partner who can navigate the increasingly complex world of speed, reliability, and sustainability. But choosing the right partner is no easy feat. The market is flooded with options, each with its strengths and weaknesses. Let's delve into the three key trends shaping the delivery landscape and explore the delivery dilemma faced by modern retailers:\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"1. The Rise of the Demanding Customer:\"})}),/*#__PURE__*/i(\"p\",{children:[\"Today's customers are \",/*#__PURE__*/e(\"strong\",{children:\"in control\"}),\". They expect \",/*#__PURE__*/e(\"strong\",{children:\"instant gratification\"}),\", and anything less than speedy delivery, real-time updates, and flexible scheduling options can lead to dissatisfaction and lost business. Unfortunately, many traditional delivery companies haven't kept pace with this evolving demand. Their reliance on \",/*#__PURE__*/e(\"strong\",{children:\"third-party contractors \"}),\"often leads to \",/*#__PURE__*/e(\"strong\",{children:\"inconsistent service, delays, and a lack of transparency\"}),\". Additionally, their \",/*#__PURE__*/e(\"strong\",{children:\"lack of technological investment\"}),\" results in \",/*#__PURE__*/e(\"strong\",{children:\"inefficient routing and tracking\"}),\", further hindering the customer experience.\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"2. Sustainability at the Forefront:\"})}),/*#__PURE__*/i(\"p\",{children:[\"Consumers are increasingly \",/*#__PURE__*/e(\"strong\",{children:\"eco-conscious\"}),\", and they expect their retailers to be too. This has sparked a surge in demand for \",/*#__PURE__*/e(\"strong\",{children:\"sustainable delivery practices\"}),\". However, many delivery companies struggle to implement such practices effectively. They often lack the \",/*#__PURE__*/e(\"strong\",{children:\"advanced technology\"}),\" needed to optimise routes and minimise emissions, and their reliance on \",/*#__PURE__*/e(\"strong\",{children:\"fossil-fuel-powered vehicles\"}),\" contributes significantly to environmental damage. Additionally, the \",/*#__PURE__*/e(\"strong\",{children:\"complex network of subcontractors\"}),\" in many delivery systems makes it difficult to track and ensure \",/*#__PURE__*/e(\"strong\",{children:\"ethical treatment of riders.\"})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"3. Last-mile deliveries lack efficient technology to drive change:\"})}),/*#__PURE__*/i(\"p\",{children:[\"In the world of logistics, where efficiency is paramount and delivery times are scrutinised, the \",/*#__PURE__*/e(\"strong\",{children:\"absence of smart technology in last-mile deliveries\"}),\" remains a notable gap. As packages traverse the intricate web of supply chains, they often encounter roadblocks and inefficiencies in the final leg of their journey\u2014the last mile.\"]}),/*#__PURE__*/i(\"p\",{children:[\"Traditional last-mile delivery methods rely heavily on conventional practices, resulting in \",/*#__PURE__*/e(\"strong\",{children:\"missed opportunities for optimisation\"}),\". While innovations such as \",/*#__PURE__*/e(\"strong\",{children:\"route optimisation algorithms\"}),\" and \",/*#__PURE__*/e(\"strong\",{children:\"real-time tracking systems\"}),\" have revolutionised other aspects of the delivery process, their integration into the last mile has been slower and less widespread. This lag in technological advancement hinders the ability of delivery companies to \",/*#__PURE__*/e(\"strong\",{children:\"meet the evolving demands of consumers \"}),\"and \",/*#__PURE__*/e(\"strong\",{children:\"adapt to the challenges of modern logistics\"}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"So, what's the solution to this delivery dilemma?\"})}),/*#__PURE__*/i(\"p\",{children:[\"Imagine a delivery ecosystem where \",/*#__PURE__*/e(\"strong\",{children:\"speed, reliability, and sustainability seamlessly converge\"}),\", empowering you to \",/*#__PURE__*/e(\"strong\",{children:\"exceed customer expectations while minimising your environmental impact\"}),\". That's the Sparqle difference, and it\u2019s possible because of the 4 core values that underpin our technology:\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Enhanced Efficiency:\"})}),/*#__PURE__*/e(\"p\",{children:\"Sparqle bridges these gaps with one powerful differentiator: in-house innovation. By building our proprietary routing engine and advanced rider app in-house, we ensure control over the entire delivery process. From volume overviews to diverse delivery options, our platform empowers retailers with guaranteed efficiency and reliability. Leveraging AI, we streamline the delivery journey, enabling speedy deliveries and the best-in-class on-time delivery rates. With a focus on operations and being one of the first companies to optimise bike routes, we ensure a seamless experience for both retailers and consumers, all while making sure it\u2019s captured in our extensive delivery reporting.\\xa0\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Sustainability Built-in:\"})}),/*#__PURE__*/e(\"p\",{children:\"Sustainability isn't just a buzzword at Sparqle; it's our commitment. We go beyond carbon offsets and vague promises \u2013 we offer transparent, verifiable carbon footprint reporting, empowering you to meet compliance needs and demonstrate your commitment to the environment. We relentlessly optimise routes to minimise emissions and embrace e-cargo bikes and electric vehicles, reducing our environmental impact and contributing to cleaner cities. Our dedication to minimising environmental impact extends beyond just our operations \u2013 it's ingrained in every aspect of our business, ensuring that retailers can align with their sustainability goals while delivering exceptional service to their customers.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Unlocking Seamless Consumer Experiences:\"})}),/*#__PURE__*/e(\"p\",{children:\"At Sparqle, customer experience is paramount. Our end-to-end platform provides unmatched consumer data insights, enabling retailers to deliver exceptional customer journeys. We fight the black box of delivery information ensuring that everything from optimal delivery times to personalised preferences are transparent and built with the customer in mind. That is why our advanced tracking system ensures a seamless and reliable delivery experience, leading to increased NPS scores and conversion rates.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"As the retail landscape evolves, one thing stands out \u2013 Sparqle isn't just a delivery partner; we're here to make a difference. With us, you get more than just a service; you get a reliable ally in tackling the challenges of delivery. Our commitment to innovation, transparency, and sustainability means you can trust us to navigate the ever-changing delivery landscape with you.\"}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"strong\",{children:\"Commitment to Transparency and Collaboration:\"})}),/*#__PURE__*/e(\"p\",{children:\"Transparency isn\u2019t an option; it\u2019s our ethos. We believe in empowering riders, fostering collaboration with local logistics partners and empowering consumers to take control of their deliveries. By sharing our advanced technology with local partners, we are creating a collaborative ecosystem of transparency, ethical practices, and collective progress towards a more efficient and sustainable logistics future.\\xa0\"}),/*#__PURE__*/e(\"h6\",{children:\"Are you ready to join us in building a sustainable future or would you like to learn more about Sparqle's approach to deliveries? Then reach out to us via the contact button.\"})]});export const richText9=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In a world where seamless delivery experiences and sustainable practices are key, Sparqle and Bloomon joined forces to transform the floral delivery landscape. As Sparqle champions progressive technology, efficient deliveries, and sustainable impact, Bloomon revolutionises the floral industry with its commitment to quality, creativity, and environmental responsibility. Together, we embark on a journey to redefine flower deliveries, ensuring that each bouquet arrives fresh, vibrant, and emission-free at the customer's doorstep.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Sparqle?\"}),/*#__PURE__*/e(\"p\",{children:\"With consumer expectations for same-day deliveries, real-time tracking, and sustainability soaring, retailers are challenged to select the right delivery partner from numerous options. Bloomon chose Sparqle as its delivery partner due to several key factors, including Sparqle's strong commitment to sustainability, efficient and reliable delivery services, and expertise in last-mile logistics.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"Primarily, Sparqle demonstrated a strong commitment to sustainability, aligning with our company values,\" says Mathijs de Jong, Bloomon\u2019s Logistics Manager. \"Their efficient and reliable delivery services, coupled with their expertise in last-mile logistics made them a natural fit for our needs.\"'})}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1113\",src:\"https://framerusercontent.com/images/eS7yhZYclT0qmvxrewiniKRQAE.jpeg\",srcSet:\"https://framerusercontent.com/images/eS7yhZYclT0qmvxrewiniKRQAE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eS7yhZYclT0qmvxrewiniKRQAE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eS7yhZYclT0qmvxrewiniKRQAE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eS7yhZYclT0qmvxrewiniKRQAE.jpeg 2954w\",style:{aspectRatio:\"2954 / 2227\"},width:\"1477\"}),/*#__PURE__*/e(\"h2\",{children:\"Cooperation and Future Outlook\"}),/*#__PURE__*/e(\"p\",{children:\"Bloomon's partnership with Sparqle has been characterized by good cooperation and a shared commitment to quality service. Bloomon highlights Sparqle's outstanding dedication to meeting evolving needs, setting a solid foundation for future collaboration.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201COur cooperation with Sparqle has been great so far. Sparqle's dedication to delivering quality service and their responsiveness to our evolving needs have been outstanding. Looking ahead, we see our partnership continuing as we explore opportunities for further collaboration in the field of sustainable logistics.\\\"\"})}),/*#__PURE__*/e(\"p\",{children:\"As a result of the partnership with Sparqle, Bloomon experiences an improvement in its sustainability.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201CThrough Sparqle's use of eco-friendly transportation methods, we have reduced our carbon footprint, contributing to our sustainability goals and earning positive feedback from environmentally conscious customers,\u201D adds Mathijs.\\xa0\"})}),/*#__PURE__*/e(\"h2\",{children:\"Recommendation from Bloomon\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"Based on their experience, Bloomon recommends Sparqle to other companies seeking a reliable and sustainable delivery partner.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"I would definitely recommend Sparqle to other companies seeking a reliable and sustainable delivery partner,\" concludes Mathijs, Bloomon\u2019s Logistics Manager. \"Sparqle\\'s commitment to quality and their environmentally conscious business model make them a valuable partner for any organization.\"'})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",height:\"1419\",src:\"https://framerusercontent.com/images/Dg3rF8YBvgwCEzq8BogLegYmc.jpeg\",srcSet:\"https://framerusercontent.com/images/Dg3rF8YBvgwCEzq8BogLegYmc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Dg3rF8YBvgwCEzq8BogLegYmc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dg3rF8YBvgwCEzq8BogLegYmc.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dg3rF8YBvgwCEzq8BogLegYmc.jpeg 4000w\",style:{aspectRatio:\"4000 / 2839\"},width:\"2000\"}),/*#__PURE__*/e(\"h2\",{children:\"About Bloomon\"}),/*#__PURE__*/e(\"p\",{children:\"Bloomon revolutionises the online floral experience by offering unique, seasonal collections sourced directly from growers. By cutting out the middleman and purchasing directly from growers, Bloomon ensures that their flowers are as fresh as can be which allows customers to enjoy them for longer. As a B-Corp, Bloomon is dedicated to sustainability, offering climate-neutral products and carefully packaging its flowers with recycled materials. Founded in 2014 and operating in five countries, Bloomon ensures top-notch quality and environmental responsibility with every bouquet. With a focus on reducing their carbon footprint and making a positive impact locally and internationally, Bloomon strives to deliver flowers that make people happy and contribute to a healthier planet.\"}),/*#__PURE__*/e(\"h2\",{children:\"About Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle is a leading sustainable delivery solution, offering a platform that connects retailers and e-commerce brands with sustainable delivery methods. Sparqle stands out in the delivery industry by prioritising efficiency, reliability, and sustainability. Our in-house innovation, including our proprietary routing engine and advanced rider app, ensures smooth operations for retailers and top-notch experiences for consumers. Sustainability is more than just a goal; it's ingrained in everything we do, from transparent carbon footprint reporting to our commitment to emission-free logistics. We place a premium on customer experience, offering advanced tracking systems and consumer data insights, while promoting transparency and collaboration throughout our network. Sparqle is setting new standards in the delivery industry, benefiting businesses, communities, and the environment alike.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201CBloomon is heavily focused on their people, their products, and the planet, which aligns perfectly with the values we hold at Sparqle.\u201D mentions Sparqle co-founder Tim van Alphen.\\xa0\u201CAdditionally, we aim to reduce emissions and increase customer satisfaction. Sparqle wants to lead the transition towards a more sustainable future, collaborating with companies like Bloomon, that share our vision. We offer Bloomon deliveries with our cargo bikes in multiple cities, aiming to enhance customer experience while providing emission-free delivery.\\xa0 Sparqle seeks to optimise processes, which result in efficiency and fair pricing. We believe that only those companies that view delivery as an integral part of the product will boost customer satisfaction and loyalty in the long term.\u201D\"})}),/*#__PURE__*/e(\"p\",{children:\"United by a shared commitment to sustainability and innovation, Bloomon and Sparqle are changing the floral industry's landscape.\"}),/*#__PURE__*/i(\"h6\",{children:[\"Ready to bloom with sustainable and seamless delivery? \",/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/business\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Join us\"})}),\" in building a sustainable future and \",/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/business\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"reach out\"})}),\" to Sparqle today.\"]})]});export const richText10=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Embark on a journey through the bustling streets of busy cities as we unveil the untold stories of Sparqle\u2019s dedicated riders and hub managers. We will delve into the daily lives, challenges and wins of those who bring sustainable deliveries to customer\u2019s doorsteps. 'Life of a Rider' offers a behind-the-scenes look at the human faces behind Sparqle\u2019s innovative approach to urban logistics. In this first blog post, Matthias from Germany shares his experiences, challenges, and insights into what it means to be a rider at Sparqle.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Sparqle Connection\"}),/*#__PURE__*/e(\"p\",{children:\"Matthias\u2019 journey with Sparqle began through a chance encounter with co-founder Tim when they shared a common interest in soccer. Fast forward to today, Matthias continues to support Sparqle, being drawn by its vision and commitment to positive impact. Having previously worked for big delivery companies like Uber Eats, Flink, and Getir, Matthias enjoys Sparqle's unique approach and commitment to sustainability.\\xa0\\xa0\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Life on Wheels\"}),/*#__PURE__*/e(\"p\",{children:\"For Matthias, the decision to become a delivery rider came from a desire for flexibility and a joy for movement. Embracing the bicycle culture of the bustling streets of Amsterdam, Matthias found himself drawn to the freedom and mobility delivery riding offered. Despite the challenges that come with it, including the rainy and sometimes unpredictable weather of Amsterdam, Matthias knows the city like 'the back of his hand', so he navigates with ease, ensuring timely deliveries.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"I just enjoy being outside and moving, I\u2019m tired of office jobs. I did IT for 7 years and I\u2019m just tired of sitting behind a laptop. [...] I also really started to enjoy the big cargo bike, people respect you in traffic.\"'})}),/*#__PURE__*/e(\"h2\",{children:\"Recommendation from Grapedistrict\"}),/*#__PURE__*/e(\"p\",{children:\"Based on their initial experiences, Grapedistrict recommends Sparqle to other companies, citing the positive working relationship and Sparqle's commitment to reliability, efficiency, and customer service.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201CI would recommend Sparqle to other companies due to the positive working relationship,\u201D says Grapedistrict\u2019s Supply Chain Manager. \u201CThey consistently meet their commitments, ensuring deliveries are made promptly and efficiently.\u201D\"})}),/*#__PURE__*/e(\"h2\",{children:\"Choosing Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"What sets Sparqle apart for Matthias is its hybrid business model, which prioritizes both the rider's well-being and customer satisfaction. Unlike other companies, Sparqle places a premium on rider welfare, offering competitive rates and fostering a supportive work environment. For Matthias, this rider-first approach was a game-changer, prompting him to choose Sparqle over other delivery companies giants.\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"Motivation Against Challenges\"}),/*#__PURE__*/e(\"p\",{children:\"While Matthias enjoys the flexibility and freedom that delivery riding offers, he acknowledges the challenges that come with the job. From struggling with bad weather to anything else that comes ahead, he faces each obstacle driven by his passion for staying active and engaged. Despite the occasional setbacks, Matthias finds motivation in Sparqle\u2019s innovative spirit and the opportunity to gain insights into the different businesses and industries Sparqle collaborates with.\"}),/*#__PURE__*/e(\"h2\",{children:\"Deliveries with a Smile\"}),/*#__PURE__*/e(\"p\",{children:\"With a friendly smile and a warm greeting, Matthias brings a personal touch to each delivery, often catching customers off guard with the simple question 'How are you?' Amused, he says, 'They stop for a second, stunned because they don\u2019t expect an interaction.' After the initial shock, they realize, 'Oh, he asked me how I am,' and they smile. For Matthias, these interactions serve as a reminder of the power of human connection and the joy it brings amidst the busy city life.\"}),/*#__PURE__*/e(\"h2\",{children:\"Looking Ahead\"}),/*#__PURE__*/e(\"p\",{children:\"As Matthias continues his journey with Sparqle, he remains optimistic about the future and the opportunities it holds. With a newfound sense of purpose and a commitment to self-care, Matthias looks forward to embracing new challenges and contributing to Sparqle's mission of sustainable urban logistics.\"}),/*#__PURE__*/e(\"p\",{children:\"Stay tuned for more insights from our 'Life of a Rider' series, where we uncover the untold stories of Sparqle's dedicated riders.\"}),/*#__PURE__*/i(\"h6\",{children:[\"Ready to partner with Sparqle or do you have more questions? \",/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/business\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"Reach out\"})}),\" to explore exciting opportunities for sustainable delivery solutions.\"]})]});export const richText11=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In a rapidly evolving landscape, where sustainability is paramount, Grapedistrict and Sparqle have established a strategic partnership to revolutionize last-mile delivery within the wine sector. This partnership emphasizes the shared commitment to environmental responsibility and is a step forward in delivering exceptional delivery experiences to customers.\"}),/*#__PURE__*/e(\"h2\",{children:\"Why Sparqle?\"}),/*#__PURE__*/e(\"p\",{children:\"When asked about their decision to partner with Sparqle, Grapedistrict highlighted several key factors. They emphasized confidence in Sparqle's professionalism and attention to detail in deliveries, along with the crucial aspect of sustainability, which resonates deeply with Grapedistrict's core values.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"We chose Sparqle because we have confidence in the professionalism and carefulness of Sparqle\\'s deliveries. Additionally, sustainability was also an important aspect of the decision.\"'})}),/*#__PURE__*/e(\"h2\",{children:\"Cooperation and Future Outlook\"}),/*#__PURE__*/e(\"p\",{children:\"Grapedistrict's experience with Sparqle has been positive, with the partnership characterized by strong support and guidance in implementing local delivery solutions. Looking ahead, Grapedistrict sees ample opportunities for Sparqle to further enhance its mission and strategy by focusing on delivering smoother, more efficient, and personalized experiences for customers.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"We are well supported and advised in our search for how to implement local delivery in our company.\"'})}),/*#__PURE__*/e(\"h2\",{children:\"Recommendation from Grapedistrict\"}),/*#__PURE__*/e(\"p\",{children:\"Based on their initial experiences, Grapedistrict recommends Sparqle to other companies, citing the positive working relationship and Sparqle's commitment to reliability, efficiency, and customer service.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"\u201CI would recommend Sparqle to other companies due to the positive working relationship,\u201D says Grapedistrict\u2019s Supply Chain Manager. \u201CThey consistently meet their commitments, ensuring deliveries are made promptly and efficiently.\u201D\"})}),/*#__PURE__*/e(\"h2\",{children:\"From Grapedistrict's Perspective\"}),/*#__PURE__*/e(\"p\",{children:\"Grapedistrict is on a mission to democratize access to high-quality wines, offering carefully curated selections from small-scale winemakers. They prioritize sustainability, quality, and taste. Through direct imports and rigorous selection processes, Grapedistrict delivers quality wines while supporting small-scale producers and offering unparalleled customer service.\"}),/*#__PURE__*/e(\"h2\",{children:\"About Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle is a leading sustainable delivery solution, offering a platform that connects retailers and e-commerce brands with sustainable delivery methods. Focused on innovation, efficiency, and sustainability, Sparqle is setting new standards in the delivery industry, benefiting businesses, communities, and the environment alike.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"We are very happy to collaborate with Grapedistrict,\" says Sparqle co-founder Tim van Alphen. \"Sparqle aims to be the leader in the transition to a more sustainable future, by joining forces with like-minded businesses like Grapedistrict. We believe that companies that consider delivery to be an integral part of their product offering will not only increase customer satisfaction but will also build deeper customer loyalty over the long term.\"'})}),/*#__PURE__*/e(\"p\",{children:\"Through their partnership, Grapedistrict and Sparqle are not just delivering wine; they're delivering excellence and sustainability, setting a new standard for logistics in the wine industry and beyond.\"}),/*#__PURE__*/i(\"p\",{children:[\"Ready to raise a glass to sustainability and exceptional delivery? Join the movement towards greener urban logistics and reach out to us \",/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/business\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"here\"})}),\".\"]})]});export const richText12=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"AMSTERDAM\"}),\", February 22 - Sparqle, a leading platform of sustainable delivery solutions, announced the successful completion of a \u20AC1.2 million investment round. The funding was led by a group of business angels including the former Managing Director of Deliveroo EU, former CTO of Just Eat Takeaway, and Bloomon founder, alongside Graduate Entrepreneur Fund. The infusion of capital will accelerate the further development of Sparqle's technology platform, expand its sustainable delivery network, and fast-track its expansion into additional European countries.\"]}),/*#__PURE__*/e(\"p\",{children:\"With a vision set on reshaping the delivery landscape, Sparqle's platform offers a seamless integration between retailers, e-commerce brands, and sustainable delivery methods. Through its proprietary software, rider app, and dedicated fleet of e-cargo bikes and electric vehicles, Sparqle optimizes delivery routes for maximum efficiency and minimal environmental impact. This strategy ensures prompt, reliable deliveries, highlighting Sparqle's commitment to reducing carbon footprints and addressing urban congestion and pollution challenges.\"}),/*#__PURE__*/e(\"h3\",{children:'Ruurd Tjeerdema, Co-founder of Sparqle: \"The logistics sector holds untapped potential for innovation, particularly in sustainability and efficiency. This investment propels us forward, allowing us to bring our vision of cleaner, more liveable cities to life. Our approach not only addresses the urgent need for greener solutions but also keeps cost efficiency in focus.\"'}),/*#__PURE__*/e(\"p\",{children:\"Building on this foundation, Sparqle's strategy is uniquely positioned to meet the challenges of urban congestion and pollution, offering a scalable solution that meets the growing regulatory demands for emission-free city logistics.\"}),/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Tim van Alphen, Co-founder of Sparqle\"}),\": \u201CAs cities move towards emission-free zones, Sparqle's platform emerges as a solution for businesses aiming to meet sustainability targets without compromising on efficiency. Additionally, our commitment to transparency and sustainability is directly in line with the objectives of the recently enacted Corporate Sustainability Reporting Directive (CSRD), which mandates comprehensive reporting on environmental impact and CO2 emissions for companies operating within the EU. Our detailed sustainability reporting is designed to meet these requirements, ensuring that our partners can confidently demonstrate their contribution to sustainable urban logistics.\u201D\"]}),/*#__PURE__*/i(\"p\",{children:[\"With an extensive fleet of electric cargo bikes and vehicles already operational, Sparqle is not only leading the sustainable delivery movement, but is also strategically expanding its reach across Europe.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"For more information about Sparqle, visit \",/*#__PURE__*/e(n,{href:\"https://sparqle.com/\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"https://sparqle.com\"})}),\".\"]}),/*#__PURE__*/e(\"h2\",{children:\"About Sparqle\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle is a leading sustainable delivery solution, offering a platform that connects retailers and e-commerce brands with sustainable delivery methods. Focused on innovation, efficiency, and sustainability, Sparqle is setting new standards in the delivery industry, benefiting businesses, communities, and the environment alike.\"}),/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"For more information contact:\"}),/*#__PURE__*/e(\"br\",{}),\"Tim van Alphen\",/*#__PURE__*/e(\"br\",{}),\"Co-Founder\",/*#__PURE__*/e(\"br\",{}),\"Sparqle Technologies B.V.\",/*#__PURE__*/e(\"br\",{}),\"IJsbaanpad 2, 1067 CV Amsterdam\",/*#__PURE__*/e(\"br\",{}),\"M: +31 (0)6 10 19 91 77\",/*#__PURE__*/e(\"br\",{}),\"E: \",/*#__PURE__*/e(n,{href:\"mailto:tim.vanalphen@sparqle.com\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"tim.vanalphen@sparqle.com\"})}),/*#__PURE__*/e(\"br\",{}),\"W: \",/*#__PURE__*/e(n,{href:\"https://sparqle.com/\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:\"https://sparqle.com\"})})]})]});export const richText13=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Imagine a world where same-day delivery isn't a luxury, but a standard, and it doesn't come at the cost of underpaid couriers working under challenging conditions. Picture a delivery service that's as vibrant and fresh as the fruit in your morning smoothie. When we first delved into the delivery sector, we knew it was a vital part of our everyday lives. Whether it's ensuring that your groceries arrive just in time for a family dinner, supplying a much-needed hangover remedy, or delivering a thoughtful birthday gift to your loved ones from afar, the sector serves us all. However, we were shocked by the harsh realities behind the scenes. It's become increasingly clear that something needs to change in this rapidly growing same-day delivery sector. We knew it was high time to make that change, and so Sparqle was born.\"}),/*#__PURE__*/e(\"h2\",{children:\"A New Spin on Deliveries\"}),/*#__PURE__*/e(\"p\",{children:\"The experience on both ends of the spectrum \u2013 courier and consumer \u2013 has been far from ideal. As consumers, we've all had our share of frustrations with late deliveries, mishandled items, vague notes substituting for missed parcels, and the dreaded inflexible delivery slots.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:\"When we took a closer look at the courier's perspective, we understood the root of these issues. The world of delivery drivers is riddled with underpayment, little support or transparency, unfair penalties, and harsh working conditions. It's high time we ask - how did we let this happen?\"}),/*#__PURE__*/e(\"h2\",{children:\"We deliver the Sparqle to your doorstep\"}),/*#__PURE__*/e(\"p\",{children:\"Our vision at Sparqle is simple - to become the driving force behind Europe\u2019s last-mile delivery industry as the most sustainable, reliable, and Riders-First delivery platform. We aim to provide more flexibility, fair pay, improved working conditions, efficient delivery routes, on-the-job benefits, and much more.\"}),/*#__PURE__*/e(\"p\",{children:\"At Sparqle, we believe that when couriers are treated with respect and dignity, the positive effects cascade down to our partners and their customers. We're committed to creating a comfortable, safe environment for our riders, where they feel valued and protected. We work with a live support team to make work as smooth as possible, all accessible via the Sparqle rider app.\"}),/*#__PURE__*/e(\"h2\",{children:\"Delivering Change with Sparqle\"}),/*#__PURE__*/i(\"p\",{children:[\"Your voices have been heard, and Sparqle is here to give the last-mile delivery industry the makeover it so desperately needs. Are you ready to join the revolution? \",/*#__PURE__*/e(\"br\",{}),\"Email us at \",/*#__PURE__*/e(n,{href:\"mailto:tim@joinsparqle.com\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"strong\",{children:\"tim@joinsparqle.com\"})})}),\" for any inquiries, comments, or suggestions.\"]})]});export const richText14=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/blog/exploring-the-thriving-world-of-last-mile-bike-delivery-a-bike-courier-at-sparqle#\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"br\",{})})}),\"In the fast-paced world of last-mile delivery, bike couriers have emerged as unsung heroes, offering swift and eco-friendly solutions for urban logistics. With the increasing demand for sustainable delivery options, bike courier jobs have become highly sought-after, especially in bike-friendly cities where Sparqle is active such as Amsterdam, Rotterdam, The Hague and Utrecht. In this article, we'll explore the excitement of bike delivery jobs, uncovering the opportunities and benefits that come with being part of this green revolution.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Rise of Bike Couriers in Urban Delivery\"}),/*#__PURE__*/e(\"p\",{children:\"In bustling urban centres, bike couriers have become the go-to solution for efficient last-mile deliveries. Their agility and ability to navigate through traffic-clogged streets make them invaluable for on-time deliveries. Embracing eco-friendly bike delivery services has gained popularity as businesses and consumers seek sustainable alternatives.\"}),/*#__PURE__*/e(\"h2\",{children:\"Bike Delivery Jobs in the Netherlands\"}),/*#__PURE__*/e(\"p\",{children:\"The Netherlands, renowned for its bicycle-friendly infrastructure, presents a thriving hub for bike courier opportunities. As the city embraces sustainability, more businesses are recognizing the advantages of employing bike couriers. Whether it's delivering packages, parcels, or food orders, bike courier jobs in the Randstad offer a dynamic and fulfilling career path.\"}),/*#__PURE__*/e(\"h2\",{children:\"Embracing the Role of a Cycling Courier\"}),/*#__PURE__*/e(\"p\",{children:\"For those with a passion for cycling and the freedom of the open road, a cycling courier job offers the perfect fit. As a cycling courier, you not only contribute to a cleaner environment but also maintain an active and healthy lifestyle while on the job.\"}),/*#__PURE__*/e(\"h2\",{children:\"Unleashing the Potential of Rider Jobs\"}),/*#__PURE__*/e(\"p\",{children:\"Dedicated cycling enthusiasts can turn their passion into a profession through fixed and flexible rider jobs. These positions offer competitive compensation and additional benefits, making them an attractive career choice. With businesses expanding their delivery networks, the demand for cycling enthusiast is on the rise.\"}),/*#__PURE__*/e(\"h2\",{children:\"At Sparqle riders come first and the rest second\"}),/*#__PURE__*/e(\"p\",{children:\"Sparqle cares about riders and knows exactly how it is to be a rider. Here we highlight insurance, which we find very important. One of our partners is Alicia Insure. While bike couriers are skilled and cautious, accidents can happen in any bustling city. Delivery driver insurance and courier delivery insurance provide essential safeguards for both riders and businesses. These insurance policies protect against unforeseen accidents, damages, and theft, offering peace of mind to all involved parties.\"}),/*#__PURE__*/e(\"p\",{children:\"As the momentum for last-mile bike delivery grows, bike couriers play a pivotal role in the eco-friendly revolution. Whether you're an avid cyclist seeking a fulfilling career or a business looking to enhance your delivery capabilities, the bike courier sector offers abundant opportunities.\\xa0\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"Embrace the role of a bike courier, contribute to sustainable logistics, and become a crucial part of the urban delivery ecosystem today.\"})})]});export const richText15=/*#__PURE__*/i(a.Fragment,{children:[/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/blog/exploring-the-thriving-world-of-last-mile-bike-delivery-a-bike-courier-at-sparqle#\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"br\",{})})}),\"The future of last-mile deliveries is undergoing a revolutionary transformation with the emergence of electrically powered cargo bikes. As major cities grapple with pollution and congestion caused by traditional delivery vans, e-cargo bikes are proving to be a low-cost, low-emission solution. With the rapid growth of online sales, delivery giants like DHL, PostNL, Budbee, FedEx, UPS and DPD are increasingly turning to eco-friendly cargo bikes to navigate the crowded urban streets.\"]}),/*#__PURE__*/e(\"h2\",{children:\"The Growing Trend of E-Cargo Bikes\"}),/*#__PURE__*/e(\"p\",{children:\"E-cargo bikes from various manufacturers are already operating in major cities across the US, Canada, UK, and Europe. Last-mile deliveries have become a pressing challenge, especially with the surge in e-commerce over the past two decades. Studies indicate that commercial van deliveries contribute significantly to pollution, accounting for around 30% of all transport emissions and over 50% of nitrogen oxide. Fortunately, about half of these deliveries can be efficiently handled by pedal or electrically powered bikes, providing a sustainable and eco-friendly alternative.\"}),/*#__PURE__*/e(\"h2\",{children:\"The Rise of E-Cargo Bikes\"}),/*#__PURE__*/e(\"p\",{children:\"E-cargo bikes are rapidly gaining popularity due to their enhanced capabilities. Latest models from partners such as DOCKR, Fulpra and Cargo Cycling can carry loads of up to 400 kg and reach speeds of up to 25 km/h or more. These bikes can cover distances of over 80 km on a single charge, making them a reliable choice for last-mile deliveries. These bikes are set to replace noisy and overloaded scooters, creating cleaner and quieter city streets.\"}),/*#__PURE__*/e(\"h2\",{children:\"Advantages of E-Cargo Bikes\"}),/*#__PURE__*/e(\"p\",{children:\"The advantages of e-cargo bikes are substantial. Compared to diesel vans, they emit 90% less carbon dioxide, making them a green and eco-friendly option. Additionally, e-cargo bikes don't consume fuel, can be recharged quickly, require minimal maintenance, and are exempt from congestion taxes. Their nimbleness allows logistics companies to make up to 25% more deliveries per day than traditional vans, particularly in high-rise cities where dedicated lanes facilitate swift transportation.\"}),/*#__PURE__*/e(\"h2\",{children:\"A Bright Future for E-Cargo Bikes\"}),/*#__PURE__*/e(\"p\",{children:\"To conclude, As e-cargo bikes gain momentum and popularity, the days of diesel vans are numbered. With their environmental advantages, cost-effectiveness, and efficient last-mile delivery capabilities, e-cargo bikes are driving the transformation towards greener and more sustainable city logistics. As more companies embrace this innovative solution, inner-city pollution and congestion will be significantly reduced, making our cities cleaner, quieter, and more liveable.\"}),/*#__PURE__*/i(\"p\",{children:[/*#__PURE__*/i(\"em\",{children:[\"Want to know more about our mission to make last-mile bike delivery greener and transparent?\",/*#__PURE__*/e(\"strong\",{children:\" \"})]}),/*#__PURE__*/e(n,{href:\"https://www.sparqle.com/contact-us\",motionChild:!0,nodeId:\"wJG7By13k\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(r.a,{children:/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"Reach out to us!\\xa0\"})})})})]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useIsOnCanvas", "se", "RenderTarget", "PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "ComponentPresetsConsumer", "Youtube", "Link", "motion", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "richText14", "richText15", "__FramerMetadata__"]
}
