diff --git a/src/components/footer.js b/src/components/footer.js index c5e3ed96..6d21e105 100644 --- a/src/components/footer.js +++ b/src/components/footer.js @@ -21,7 +21,7 @@ const Footer = () => { technology, consulting, and training services to government.

Want to help us make an impact?
- Check out our open positions.

+ Check out our open positions.

@@ -53,6 +53,7 @@ const Footer = () => {

Accessibility

Licensing

Privacy

+

Sustainability

Feedback

diff --git a/src/files/images/sustainability-emissions.png b/src/files/images/sustainability-emissions.png new file mode 100644 index 00000000..aff991d0 Binary files /dev/null and b/src/files/images/sustainability-emissions.png differ diff --git a/src/pages/sustainability.js b/src/pages/sustainability.js new file mode 100644 index 00000000..e8d8292a --- /dev/null +++ b/src/pages/sustainability.js @@ -0,0 +1,85 @@ +import '../sass/styles.scss'; +import React from 'react'; +import RedLayout from '../layouts/red'; +import SEO from '../components/seo'; +import { StaticImage } from 'gatsby-plugin-image'; + +const SustainabilityPage = () => { + return ( + +
+
+

Sustainability

+

+ The team at CivicActions understands the importance of building environmentally sustainable digital products and services. Every business, and every role, needs to understand how it impacts our climate. As a distributed company, we have lightened our footprint, but this doesn’t make us carbon-neutral. Since our inception, our team has taken on projects to make a positive difference on our environment. +

+

+ We are working to align with the Paris Agreement, and reduce our footprint. We must all work to see that the world stays below a 2° C increase by the end of this century and that we avoid the worst impacts of climate change. As part of our commitment, we have a Sustainability Policy, which includes our Sustainable Procurement Policy in our guidebook and a pledge (below) that helps us prioritize how to approach the impact we want to have. +

+
+
+
+
+

2024 Sustainability Pledge

+

Public license for the public good

+

+ The pledge focuses on three key areas: Measurement & Monitoring, Education & Engagement, and Public Reporting. Let's dive into the details of our plan for a more sustainable future! +

+
+

Measurement & Monitoring: Data-Driven Sustainability

+

Measurement & Monitoring: Data-Driven Sustainability

+
    +
  • Establishing baseline performance budgets for websites and client projects
  • +
  • Implementing cloud-based tools to measure server-side related greenhouse gas emissions
  • +
  • Conducting an inventory of infrastructure assets for optimization
  • +
  • Introducing per-sprint front-end performance score reviews
  • +
+
+
+

Education & Engagement: Fostering a Culture of Sustainability

+

In 2024, CivicActions will focus on:

+
    +
  • Integrating environmental sustainability into onboarding processes
  • +
  • Engaging clients on environmental action plan alignment
  • +
  • Developing sustainability language for project charters
  • +
  • Establishing a sustainable procurement policy
  • +
  • Contributing to W3C's Draft Web Sustainability Guidelines
  • +
  • Tracking and offsetting employee business travel
  • +
+
+
+

Public Reporting: Transparency and Accountability

+

For 2024, CivicActions commits to:

+
    +
  • Launching CivicActions.com/sustainability to share progress on key goals
  • +
  • Tracking Google Lighthouse scores as a proxy for Customer Experience, accessibility, and sustainability
  • +
  • Purchasing ENERGY STAR® rated devices made with partially recycled materials
  • +
  • Counting and estimating greenhouse gas emissions from company flights
  • +
+
+

+ CivicActions' sustainability pledge for 2024 sets a new standard for environmental responsibility in the digital sector. By focusing on measurable outcomes, fostering a culture of sustainability, and maintaining transparency, CivicActions is not just talking about change – we’re actively working towards it. +

+
+
+
+
+

Greenhouse Gas Emissions Audit

+
+ Our team worked with Offset Alliance to calculate our Scope 1, 2 and 3 emissions: + +
+
+
+
+ ); +}; + +export default SustainabilityPage; + +export const Head = () => ( + +); diff --git a/src/sass/pages/_pages.scss b/src/sass/pages/_pages.scss index 80ea4cb2..54235afa 100644 --- a/src/sass/pages/_pages.scss +++ b/src/sass/pages/_pages.scss @@ -2,6 +2,7 @@ @import 'services/services'; @import 'privacy/privacy'; @import 'licensing/licensing'; +@import 'sustainability/sustainability'; @import 'careers/careers'; @import 'contact/contact'; @import 'feedback/feedback'; @@ -10,5 +11,4 @@ @import 'press-releases/press-releases'; @import 'case-study/case-study'; @import 'contracting/contracting'; -@import 'general/general'; - +@import 'general/general'; \ No newline at end of file diff --git a/src/sass/pages/sustainability/_content.scss b/src/sass/pages/sustainability/_content.scss new file mode 100644 index 00000000..83b14a56 --- /dev/null +++ b/src/sass/pages/sustainability/_content.scss @@ -0,0 +1,35 @@ +.section--sustainability-pledge, +.section--emissions { + width: 100%; + color: $colors-grey-90; + margin-top: 32px; + display: inline-block; + + @media(min-width: $medium-large-screen) { + margin-top: 64px; + margin-bottom: 104px; + } + + .inner { + position: relative; + max-width: 720px; + display: flex; + flex-direction: column; + + @media(min-width: $medium-large-screen) {} + } + + .h3, + .h4, + .body { + padding-bottom: 16px; + } + + ul { + margin: 0; + } + + .gatsby-image-wrapper { + margin: 16px 0; + } +} \ No newline at end of file diff --git a/src/sass/pages/sustainability/_sustainability.scss b/src/sass/pages/sustainability/_sustainability.scss new file mode 100644 index 00000000..a5e7e054 --- /dev/null +++ b/src/sass/pages/sustainability/_sustainability.scss @@ -0,0 +1 @@ +@import 'content'; \ No newline at end of file