\r\n
Provide assurance to your customers with accreditations that demonstrate your competence, skills and expertise.
\r\n
When encouraging a customer to invest in your products and services, it is critical to demonstrate that your business and your people have the necessary skills and experience to deliver.\r\n This becomes increasingly important when bidding for government contracts or moving into Tier 1 supply chains, where certain accreditations are a baseline to be considered.\r\n Below we've outlined some of the key accreditations and assurances, linking to some of our partners who can.
\r\n
\r\n
Green Economy can help you to understand the right pathway for your business - get in touch to access support.
\r\n
\r\n
Demonstrate your environmental commitment
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
Our partner, Centre for Assessment, provides a range of green certification services, helping organisations to put the environment first, and validate these efforts and commitments.
\r\n
They have a diverse collection of environmental-focused certification and verification services and have worked hard to offer standards that champion organisations' journeys to net zero, but also to push businesses to do more - to challenge what it means to be green today:
\r\n
\r\n - To reduce operational costs
\r\n - To improve your environmental management
\r\n - To stay competitive
\r\n - To comply with legal requirements
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n PAS 2060 provides a framework to help you measure, reduce and offset your impact on our climate. It will help you prove that you are truly committed to the challenge of environmental responsibility.
\r\n This certification will show that your organisation knows what your carbon footprint is and that you take the issue of carbon footprint seriously. \r\n It will also demonstrate your plans to reduce that footprint and be open and transparent in your approach. The PAS 2060 specification will also help you identify what emissions you can't eliminate and challenge you \r\n to offset them by purchasing carbon credits. \"\r\n hasLogo={false}\r\n styling=\"standardNoImageLine\"\r\n />\r\n
\r\n ISO 14001 is a framework to help your organisation address these issues. It prescribes controls that should be in place for you to have an Environmental Management System (EMS) that is right for you and your context.\"\r\n hasLogo={false}\r\n styling=\"standardNoImageLine\"\r\n />\r\n
\r\n
\r\n With their experienced team of auditors located across the UK and beyond, Centre for Assessment can support your organisation's journey towards achieving certification to a recognised standard. \r\n They work in partnership with our clients, helping them achieve their goals. \"\r\n page=\"CfA\"\r\n hasLogo={true}\r\n logo={cfal }\r\n styling=\"standardDark\"\r\n link=\"https://www.centreforassessment.co.uk/about-us/\"\r\n externalLink={true}\r\n btnText=\"Centre for Assessment\"\r\n />\r\n
\r\n >\r\n\r\n )\r\n}\r\n\r\n\r\nexport default Accreditations;","import { useState, useEffect } from \"react\";\r\n\r\nimport { getAccountInfo } from \"../../utils\";\r\n\r\nexport const useAccountInfo = (supplierName) => {\r\n const [supplier, setSupplier] = useState(null);\r\n const [isLoading, setIsLoading] = useState(true);\r\n const [error, setError] = useState(null);\r\n\r\n useEffect(() => {\r\n const fetchData = async () => {\r\n try {\r\n const data = await getAccountInfo(supplierName);\r\n setSupplier(data);\r\n setIsLoading(false);\r\n } catch (error) {\r\n setError({ message: \"Uh oh, looks like something went wrong\" });\r\n setIsLoading(false);\r\n }\r\n };\r\n fetchData();\r\n }, [supplierName]);\r\n\r\n return {\r\n supplier,\r\n error,\r\n isLoading,\r\n };\r\n};\r\n","// extracted by mini-css-extract-plugin\nexport default {\"container\":\"Sidebar_container__Ui0y7\",\"link\":\"Sidebar_link__VNytZ\"};","import { useEffect, useState } from \"react\";\r\n\r\nimport { Link, Outlet } from \"react-router-dom\";\r\n\r\nimport styles from \"./Sidebar.module.css\";\r\n\r\nimport { handleTabStateBasedOnURL, handleTabStateManagement, setActiveTab } from \"../../utils\";\r\n\r\nexport const Sidebar = () => {\r\n const [tabStates, setTabStates] = useState({\r\n isOverviewActive: false,\r\n isOrdersActive: false,\r\n isProfileActive: false,\r\n isYourAccActive: false,\r\n });\r\n\r\n useEffect(() => {\r\n const currentTab = handleTabStateBasedOnURL();\r\n\r\n setActiveTab(currentTab);\r\n });\r\n\r\n const handleActiveClass = (e) => {\r\n const tabName = e.target.name;\r\n const tab = e.target;\r\n const parent = tab.parentElement;\r\n\r\n handleTabStateManagement(tabName, parent, tabStates, setTabStates);\r\n };\r\n\r\n return (\r\n <>\r\n