From 4b52fb3151ac5ceb9601d3e9bca1498ff4dfec63 Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Tue, 2 Jul 2024 00:35:08 +0000 Subject: [PATCH 1/4] feat: copy-paste first two cards as a base for last two cards --- src/our-work.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/our-work.html b/src/our-work.html index 42e9bac6..829c3d0e 100644 --- a/src/our-work.html +++ b/src/our-work.html @@ -144,6 +144,35 @@

Outcome

{% endfor %} + +
+ {% for featured_work in site.data.featured_work limit: 2 %} +
+
+
+
+ {% if featured_work.tags %} +
+ {% for tag in featured_work.tags %} +
+ +
+ {% endfor %} +
+ {% endif %} +

{{ featured_work.title }}

+

{{ featured_work.description }}

+
+ +
+

Outcome

+

{{ featured_work.outcome }}

+
+
+
+
+ {% endfor %} +
From 8cf1504189958dab7309be320953e843ee3e3461 Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Tue, 2 Jul 2024 00:36:26 +0000 Subject: [PATCH 2/4] feat: fix top margin for last two cards, add data --- src/_data/featured_work.yml | 14 ++++++++++++++ src/our-work.html | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/_data/featured_work.yml b/src/_data/featured_work.yml index e8c35325..c693dc1e 100644 --- a/src/_data/featured_work.yml +++ b/src/_data/featured_work.yml @@ -32,3 +32,17 @@ - Project Management - Human-centered Design - Software Development + +- title: Upgrade Scenario Planning Model (SPM) + description: Collaborated with a diverse team to update and enhance the SPM transportation model by developing database queries and a user interface for the Southern California Association of Governments (SCAG). + 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. + tags: + - Software Development + - Human-centered Design + +- title: Product Schedule + 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. + outcome: Deliver 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. + tags: + - Project Management + - Program Development diff --git a/src/our-work.html b/src/our-work.html index 829c3d0e..bf43d1e9 100644 --- a/src/our-work.html +++ b/src/our-work.html @@ -145,8 +145,8 @@

Outcome

{% endfor %} -
- {% for featured_work in site.data.featured_work limit: 2 %} +
+ {% for featured_work in site.data.featured_work limit: 2 offset: 4 %}
From 2835117a0dd75b81fec61975cbaf91fdeb5dd429 Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Tue, 9 Jul 2024 19:47:09 +0000 Subject: [PATCH 3/4] fix: alignment of non-image description paragraphs --- src/our-work.html | 8 ++++++-- src/styles/base.css | 8 ++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/our-work.html b/src/our-work.html index bf43d1e9..c700585c 100644 --- a/src/our-work.html +++ b/src/our-work.html @@ -95,7 +95,7 @@

Featured work

-
+
{% if featured_work.tags %}
{% for tag in featured_work.tags %} @@ -106,6 +106,8 @@

Featured work

{% endif %}

{{ featured_work.title }}

+
+

{{ featured_work.description }}

@@ -150,7 +152,7 @@

Outcome

-
+
{% if featured_work.tags %}
{% for tag in featured_work.tags %} @@ -161,6 +163,8 @@

Outcome

{% endif %}

{{ featured_work.title }}

+
+

{{ featured_work.description }}

diff --git a/src/styles/base.css b/src/styles/base.css index 81bf3792..c1fe3bcc 100644 --- a/src/styles/base.css +++ b/src/styles/base.css @@ -460,6 +460,14 @@ header { margin: 0; } +.min-h-35 { + min-height: 35%; +} + +.min-h-40 { + min-height: 40%; +} + .min-h-70 { min-height: 70%; } From ee0a075aeb17a61b83068d42a85ffad16a5f08a3 Mon Sep 17 00:00:00 2001 From: Angela Tran Date: Tue, 9 Jul 2024 19:50:28 +0000 Subject: [PATCH 4/4] style: remove unused classes --- src/styles/base.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/styles/base.css b/src/styles/base.css index c1fe3bcc..e36ed25f 100644 --- a/src/styles/base.css +++ b/src/styles/base.css @@ -468,18 +468,10 @@ header { min-height: 40%; } -.min-h-70 { - min-height: 70%; -} - @media screen and (min-width: 992px) { .w-md-50 { width: 50% !important; } - - .mb-lg-6 { - margin-bottom: calc(96rem / 16) !important; - } } /* About */