Skip to content

Commit 9d7adeb

Browse files
authored
Feat: add /our-work page (#208)
2 parents ac3ff5b + 2ab298f commit 9d7adeb

File tree

10 files changed

+430
-45
lines changed

10 files changed

+430
-45
lines changed

src/_data/featured_work.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
- title: Customer Success Strategy
2+
description: |
3+
Implemented a new Customer Success program, including setting up a Customer Relationship Management (CRM) platform and assigning Account Managers to work with California Transit Agencies.
4+
outcome: |
5+
Launched a tiered system to provide 189 California transit agencies with a Customer Success Account Manager after successfully demoing a cohort program. CRM activity increased by 62% in 2023.
6+
tags:
7+
- Project management
8+
- Program development
9+
10+
- title: Operational Data Standard (ODS)
11+
description: |
12+
Convened the Operational Data Standards (ODS) working group to draft ODS v1, an open standard for describing scheduled transit operations by building on GTFS to include personnel and non-revenue service data.
13+
outcome: |
14+
Five vendors are capable of reading or writing ODS feeds in their software offerings. This standard is available to transit agencies to improve their scheduled transit operations. ODS v2 is in development.
15+
tags:
16+
- Data standards development
17+
18+
- title: Data + Donuts
19+
image: /assets/our_work/datadonuts.png
20+
image_alt_text: An image of a logo containing a donut, where the top half displays a pie chart, and the words “Data plus sign Donuts.”
21+
description: In collaboration with government partners, Compiler produced and managed monthly community events, Data + Donuts since 2017. Past speakers have included technology and policy leaders from LA Metro, California Department of Technology (CDT), the Southern California Association of Governments (SCAG), and Caltrans.
22+
outcome: Successfully relaunched Data + Donuts in person after the pandemic in June 2023. We have been hosting events ever since and livestreaming them for a larger audience for those who don’t want to attend in person.
23+
tags:
24+
- Project Management
25+
26+
- title: Benefits
27+
image: /assets/our_work/benefits.png
28+
image_alt_text: An image showing the home screen of a website called Cal-ITP Benefits, where a hand is holding a credit card using a contactless payment reader.
29+
description: Designed and developed a web application that allows transit riders to digitally verify their identity, check their eligibility for reduced transit fares, and enroll their credit or debit card to automatically receive a reduced fare on transit when they tap-to-pay.
30+
outcome: Monterey-Salinas Transit (MST) was the first transit operator in California to adopt the Benefits app in 2022. Santa Barbara Metropolitan Transit District (SBMTD) launched in 2023, and several more operators are expected to launch in 2024. The app supports benefits enrollment for older adults, veterans, and CalFresh cardholders. Future enrollment options include Medicare cardholders and persons with disabilities.
31+
tags:
32+
- Project Management
33+
- Human-centered Design
34+
- Software Development
35+
36+
- title: Upgrade Scenario Planning Model (SPM)
37+
description: Collaborated with a diverse team to update and enhance the SPM transportation model by developing database queries and a user interface for SCAG.
38+
outcome: Increased the efficiency of a PostGIS spatial query processing millions of geographic points by 70%, allowing end users to receive faster feedback and a friendlier user experience for faster data analysis.
39+
tags:
40+
- Software Development
41+
- Human-centered Design
42+
43+
- title: Product Schedule
44+
description: Managed a research project to evaluate how well scheduling software solutions met the needs of small and rural California transit agencies. Research included conducting 30+ hours of onsite interviews with 4 agencies.
45+
outcome: Delivered a research report to Caltrans summarizing research results and recommending actionable next steps to solution providers and Caltrans to provide agencies with vital scheduling resources.
46+
tags:
47+
- Project Management
48+
- Program Development

src/_data/services.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
- name: Software development
2+
id: software-development
3+
description: Agile web application development and support with data publishing needs and tools for data analysts.
4+
5+
- name: Human-centered design
6+
id: human-centered-design
7+
description: User-centered design that incorporates accessibility requirements and multiple language support.
8+
9+
- name: Data Standards development
10+
id: data-standards-development
11+
description: Collaborate with agencies and stakeholders to create equity and transparency through developing standards.
12+
13+
- name: Project management
14+
id: project-management
15+
description: Ensure timely and efficient delivery of project goals and objectives.
16+
17+
- name: Program development
18+
id: program-development
19+
description: Build teams and services from the ground up within the government.

src/_includes/nav.html

+53-36
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,57 @@
11
<nav class="navbar navbar-dark">
2-
<a class="d-inline-block" href="/"><img width="88" height="46" src="/assets/compiler_logo_stacked.svg" alt="Compiler logo"></a>
3-
<button class="navbar-toggler p-0 border-0 rounded-0" type="button" data-bs-toggle="modal" data-bs-target="#navbarToggler"
4-
aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
5-
<span class="navbar-toggler-icon"></span>
6-
</button>
7-
<div class="modal fade" tabindex="-1" id="navbarToggler" aria-label="menu">
8-
<div class="modal-dialog modal-fullscreen">
9-
<div class="modal-content">
10-
<div class="modal-header border-0 d-flex justify-content-end">
11-
<button type="button" class="btn-close p-0 m-0 rounded-0 border-0 opacity-100" data-bs-dismiss="modal" aria-label="Close"></button>
12-
</div>
13-
<div class="modal-body">
14-
<div class="d-flex align-items-center h-100 offset-lg-2 col-lg-10">
15-
<ul class="list-unstyled">
16-
<li>
17-
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/">Home</a>
18-
</li>
19-
<li>
20-
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/about">About</a>
21-
</li>
22-
<li>
23-
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/jobs">Jobs</a>
24-
</li>
25-
<li>
26-
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/blog">Blog</a>
27-
</li>
28-
<li>
29-
<a class="h2 text-white d-inline-block" target="_blank" href="/capabilities">Capabilities Statement</a>
30-
</li>
31-
</ul>
32-
</div>
33-
</div>
34-
<div class="modal-footer border-0 p-0">
35-
<div class="nav-footer-pattern"></div>
36-
</div>
37-
</div>
2+
<a class="d-inline-block" href="/"
3+
><img width="88" height="46" src="/assets/compiler_logo_stacked.svg" alt="Compiler logo"
4+
/></a>
5+
<button
6+
class="navbar-toggler p-0 border-0 rounded-0"
7+
type="button"
8+
data-bs-toggle="modal"
9+
data-bs-target="#navbarToggler"
10+
aria-controls="navbarToggler"
11+
aria-expanded="false"
12+
aria-label="Toggle navigation"
13+
>
14+
<span class="navbar-toggler-icon"></span>
15+
</button>
16+
<div class="modal fade" tabindex="-1" id="navbarToggler" aria-label="menu">
17+
<div class="modal-dialog modal-fullscreen">
18+
<div class="modal-content">
19+
<div class="modal-header border-0 d-flex justify-content-end">
20+
<button
21+
type="button"
22+
class="btn-close p-0 m-0 rounded-0 border-0 opacity-100"
23+
data-bs-dismiss="modal"
24+
aria-label="Close"
25+
></button>
3826
</div>
27+
<div class="modal-body">
28+
<div class="d-flex align-items-center h-100 offset-lg-2 col-lg-10">
29+
<ul class="list-unstyled">
30+
<li>
31+
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/">Home</a>
32+
</li>
33+
<li>
34+
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/about">About</a>
35+
</li>
36+
<li>
37+
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/our-work">Our Work</a>
38+
</li>
39+
<li>
40+
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/jobs">Jobs</a>
41+
</li>
42+
<li>
43+
<a class="h2 text-white d-inline-block mb-4 pb-2 pb-lg-0" href="/blog">Blog</a>
44+
</li>
45+
<li>
46+
<a class="h2 text-white d-inline-block" target="_blank" href="/capabilities">Capabilities Statement</a>
47+
</li>
48+
</ul>
49+
</div>
50+
</div>
51+
<div class="modal-footer border-0 p-0">
52+
<div class="nav-footer-pattern"></div>
53+
</div>
54+
</div>
3955
</div>
56+
</div>
4057
</nav>

src/_includes/ready-to-work.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<div class="container my-5 py-5">
2+
<div class="offset-lg-2 col-lg-8 text-center">
3+
{% assign h3-text = "Ready to work together?" %} {% if include.h3-class %}
4+
<h3 class="{{include.h3-class}}">{{h3-text}}</h3>
5+
{% else %}
6+
<h3>{{h3-text}}</h3>
7+
{% endif %}
8+
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a>
9+
</div>
10+
</div>

src/about.html

+1-6
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,7 @@ <h3 class="h4 pt-3 mb-1 d-inline-block text-white">{{ member.name }}</h3>
145145

146146
<section class="bg-w-100 bg-white">
147147
<div class="row">
148-
<div class="container my-5 py-5">
149-
<div class="offset-lg-2 col-lg-8 text-center">
150-
<h3 class="text-dark">Ready to work together?</h3>
151-
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a>
152-
</div>
153-
</div>
148+
{% include ready-to-work.html h3-class="text-dark" %}
154149
</div>
155150
</section>
156151

src/assets/illustrations/sign.svg

+3
Loading

src/assets/our_work/benefits.png

323 KB
Loading

src/assets/our_work/datadonuts.png

89.7 KB
Loading

0 commit comments

Comments
 (0)