{"id":7985,"date":"2025-11-27T05:52:40","date_gmt":"2025-11-27T04:52:40","guid":{"rendered":"https:\/\/paperwise.eu\/paperwise-celebrates-10-years-from-idea-to-impact\/"},"modified":"2026-03-17T10:09:46","modified_gmt":"2026-03-17T09:09:46","slug":"paperwise-celebrates-10-years-from-idea-to-impact","status":"publish","type":"post","link":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/","title":{"rendered":"PaperWise celebrates 10 years: From idea to impact!"},"content":{"rendered":"\n<section class=\"section-hero-paperwise text-color-dark\" >\n    <div class=\"hero-background \" style=\"background-image: url('https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/blog-header-anniversary-gif-1-1.gif');\">\n\n        \n        <div class=\"container-fluid h-100 pt-4 pb-4\">\n            <div class=\"row h-100\">\n                <div class=\"col-12 d-flex align-items-end\">\n                    <div class=\"hero-content\">\n                                                    <h1 class=\"hero-title\">\n                                <span class=\"hero-title-highlight\">PaperWise celebrates 10 years:<\/span> From idea to impact!                            <\/h1>\n                        \n                        \n                                            <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n<script src=\"https:\/\/www.youtube.com\/iframe_api\"><\/script>\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Vimeo can run immediately since the SDK loads synchronously enough\n    const heroVideos = document.querySelectorAll('.hero-video-wrapper iframe');\n    heroVideos.forEach(iframe => {\n        if (iframe.src.includes('vimeo.com')) {\n            const player = new Vimeo.Player(iframe);\n            player.getDuration().then(duration => {\n                player.on('timeupdate', data => {\n                    if (data.seconds >= duration - 1) {\n                        player.setCurrentTime(0).then(() => player.play());\n                    }\n                });\n            });\n        }\n    });\n\n    \/\/ Collect YouTube iframes to initialize once the API is ready\n    window._ytHeroIframes = document.querySelectorAll('.hero-video-wrapper iframe[src*=\"youtube.com\"]');\n});\n\n\/\/ This is called automatically by the YouTube API once it's fully loaded\nwindow.onYouTubeIframeAPIReady = function() {\n    if (!window._ytHeroIframes) return;\n\n    window._ytHeroIframes.forEach(iframe => {\n        const videoId = iframe.src.match(\/embed\\\/([^?&]+)\/)[1];\n        const parent = iframe.parentNode;\n        iframe.remove();\n\n        const ytDiv = document.createElement('div');\n        ytDiv.id = 'yt-hero-' + Math.floor(Math.random() * 10000);\n        ytDiv.classList.add('hero-video');\n        parent.appendChild(ytDiv);\n\n        new YT.Player(ytDiv.id, {\n            videoId: videoId,\n            playerVars: {\n                autoplay: 1,\n                controls: 0,\n                loop: 1,\n                playlist: videoId,\n                mute: 1,\n                modestbranding: 1,\n                disablekb: 1,\n                playsinline: 1\n            },\n            events: {\n                onReady: function(event) {\n                    const duration = event.target.getDuration();\n                    setInterval(() => {\n                        const current = event.target.getCurrentTime();\n                        if (current >= duration - 1) {\n                            event.target.seekTo(0);\n                            event.target.playVideo();\n                        }\n                    }, 800);\n                }\n            }\n        });\n    });\n};\n<\/script>\n<section id=\"section-text-block_6d46ee3490f397e7323658f63a819393\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>\u201cWhy should we cut down trees when so much agricultural waste is available every year?\u201d Founder Peter van Rosmalen asked himself this question ten years ago. This powerful idea grew into PaperWise: paper and paperboard made from agricultural waste for packaging, printing, and copying paper. By preserving natural resources and combating climate change, PaperWise has made an enormous contribution to the circular economy. This year, PaperWise celebrates a decade as an organization filled with innovation, sustainable impact, and remarkable milestones.    <\/p>\n<h2>HOW DOES PAPERWISE MAKE A DIFFERENCE?<\/h2>\n<p>At PaperWise, it is all about being \u201cWise With Waste\u201d \u2013 handling what others see as residual waste intelligently. Together with its customers, PaperWise has given more than 15.9 million kilograms of agricultural waste a second life over the past ten years. This means: 129,926 trees saved \u2013 equivalent to 2,684 football fields! Additionally, 23.9 million kilograms of CO2 have been saved by not burning waste, comparable to driving around the earth 5,610 times by car. These results are not just figures on paper, but tangible proof of what is possible when we view waste as a valuable raw material.<\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-450-1-scaled.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_8e71c29a3597d42003d5c54fd076f93f\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>REMARKABLE MILESTONES<\/h2>\n<p>The PaperWise journey is full of special moments. In 2016, founder Peter van Rosmalen was invited to lunch with King Willem-Alexander and Queen M\u00e1xima, a recognition of his contribution to sustainability. In 2018, Peter participated in a trade mission to India, alongside Prime Minister Mark Rutte, to combat the open-air burning of agricultural waste. PaperWise played a prominent role at the World Expo Dubai in 2021, where millions of visitors used PaperWise carrier bags via partner Natural Bag. In 10 years, PaperWise has won more than 15 awards and nominations, such as the German Design Award and the UK Packaging Award, a wonderful recognition of its impact in the fields of innovation and sustainability within the industry. And since 2024, PaperWise has been a certified B Corp\u2122.     <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-600.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_1f7e557ffa59ab21f417fba3b9b9163b\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <h2>WHAT THE FUTURE HOLDS<\/h2>\n<p>PaperWise is now active in 23 countries and has more than 3,500 end customers. The dream? That all children learn at school that paper is made from agricultural waste. PaperWise continues to innovate to make processes more sustainable and bring them closer to customers. Together with its partners, PaperWise demonstrates that sustainability works. Every sheet of PaperWise paper tells a story of impact, innovation, and responsibility.     <\/p>\n<h2>WILL YOU JOIN US?<\/h2>\n<p>You too can make a difference. By choosing PaperWise, you contribute to a future where waste is a valuable raw material. Together, we make the world greener, smarter, and more sustainable. That is what we call Wise With Waste\u2026   <\/p>\n<h2>READ anniversary magazine<\/h2>\n<p>In this blog, several highlights of the 10-year anniversary have been mentioned. But there is more to read in the PaperWise anniversary magazine. Click <a href=\"https:\/\/paperwise.eu\/anniversary\/\">this link<\/a>, enjoy your reading!  <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>PaperWise is tree-free paper and paperboard made from plant residues. Your sustainable paper for packaging <\/p>\n","protected":false},"author":2,"featured_media":7990,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[173],"tags":[165],"class_list":["post-7985","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news","tag-organization"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PaperWise celebrates 10 years: Sustainable impact with agricultural waste<\/title>\n<meta name=\"description\" content=\"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PaperWise celebrates 10 years: Sustainable impact with agricultural waste\" \/>\n<meta property=\"og:description\" content=\"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/\" \/>\n<meta property=\"og:site_name\" content=\"Paperwise\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-27T04:52:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T09:09:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"romano\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"romano\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/\"},\"author\":{\"name\":\"romano\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"headline\":\"PaperWise celebrates 10 years: From idea to impact!\",\"datePublished\":\"2025-11-27T04:52:40+00:00\",\"dateModified\":\"2026-03-17T09:09:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/\"},\"wordCount\":7,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/10-jaar-jubileum-images_900-x-6002-2.jpg\",\"keywords\":[\"Organization\"],\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/\",\"name\":\"PaperWise celebrates 10 years: Sustainable impact with agricultural waste\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/10-jaar-jubileum-images_900-x-6002-2.jpg\",\"datePublished\":\"2025-11-27T04:52:40+00:00\",\"dateModified\":\"2026-03-17T09:09:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"description\":\"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#primaryimage\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/10-jaar-jubileum-images_900-x-6002-2.jpg\",\"contentUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/10-jaar-jubileum-images_900-x-6002-2.jpg\",\"width\":900,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-celebrates-10-years-from-idea-to-impact\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/homepage\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PaperWise celebrates 10 years: From idea to impact!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/\",\"name\":\"Paperwise\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\",\"name\":\"romano\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"caption\":\"romano\"},\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/author\\\/romano\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PaperWise celebrates 10 years: Sustainable impact with agricultural waste","description":"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/","og_locale":"en_US","og_type":"article","og_title":"PaperWise celebrates 10 years: Sustainable impact with agricultural waste","og_description":"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.","og_url":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/","og_site_name":"Paperwise","article_published_time":"2025-11-27T04:52:40+00:00","article_modified_time":"2026-03-17T09:09:46+00:00","og_image":[{"width":900,"height":600,"url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg","type":"image\/jpeg"}],"author":"romano","twitter_card":"summary_large_image","twitter_misc":{"Written by":"romano"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#article","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/"},"author":{"name":"romano","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"headline":"PaperWise celebrates 10 years: From idea to impact!","datePublished":"2025-11-27T04:52:40+00:00","dateModified":"2026-03-17T09:09:46+00:00","mainEntityOfPage":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/"},"wordCount":7,"commentCount":0,"image":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg","keywords":["Organization"],"articleSection":["News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/","url":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/","name":"PaperWise celebrates 10 years: Sustainable impact with agricultural waste","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#primaryimage"},"image":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg","datePublished":"2025-11-27T04:52:40+00:00","dateModified":"2026-03-17T09:09:46+00:00","author":{"@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"description":"PaperWise celebrates 10 years of impact with sustainable paper made from agricultural waste. Discover milestones, savings, and the future of the circular economy.","breadcrumb":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#primaryimage","url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg","contentUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/10-jaar-jubileum-images_900-x-6002-2.jpg","width":900,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/paperwise.eu\/en\/paperwise-celebrates-10-years-from-idea-to-impact\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paperwise.eu\/en\/homepage\/"},{"@type":"ListItem","position":2,"name":"PaperWise celebrates 10 years: From idea to impact!"}]},{"@type":"WebSite","@id":"https:\/\/paperwise.eu\/en\/#website","url":"https:\/\/paperwise.eu\/en\/","name":"Paperwise","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paperwise.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e","name":"romano","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","caption":"romano"},"url":"https:\/\/paperwise.eu\/en\/author\/romano\/"}]}},"_links":{"self":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/comments?post=7985"}],"version-history":[{"count":2,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7985\/revisions"}],"predecessor-version":[{"id":8325,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/7985\/revisions\/8325"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media\/7990"}],"wp:attachment":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media?parent=7985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/categories?post=7985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/tags?post=7985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}