Skip to content

Commit 813e4fd

Browse files
committed
Tweaks on styling and project descriptions
1 parent 45cb364 commit 813e4fd

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

src/app/globals.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,8 @@ a {
142142
ul {
143143
list-style-type: square;
144144
list-style-position: inside;
145+
}
146+
147+
.black {
148+
color: black;
145149
}

src/components/header/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Header: React.FC = () => {
2525
className="text-xl tracking-widest"
2626
onClick={() => mobileMenuOpen && setMobileMenuOpen(false)}
2727
>
28-
<span className="font-bold text-primary">PLAIT</span>Lab
28+
<span className="font-bold text-primary">PLAIT</span><span className="black">Lab</span>
2929
</Link>
3030
<nav className="sm:stack-h sm:stack-h-sm hidden sm:visible sm:flex">
3131
{NAVIGATION.map(({ title, path }) => {

src/content/projects.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const PROJECTS: Project[] = [
4646
},
4747
acmDlUrl: "",
4848
githubUrl: "https://github.com/angela-bi/p5_pbcd",
49-
order: 24,
49+
order: 16,
5050
},
5151
{
5252
title: "Programming by Navigation",
@@ -63,7 +63,7 @@ export const PROJECTS: Project[] = [
6363
{
6464
title: "Pagebreaks",
6565
description:
66-
"Global variables in computational notebooks are confusing, but notebook users are reluctant to use functions. We understand why and built a new way to express scopes in notebooks.",
66+
"Global variables in computational notebooks are confusing, but notebook users are reluctant to use functions. We built an understanding of why, then designed and implemented a new notebook-customized scoping construct.",
6767
image: {
6868
src: Pagebreaks,
6969
alt: "Pagebreaks",
@@ -125,7 +125,7 @@ export const PROJECTS: Project[] = [
125125
title:
126126
"DOT: Building a Document Organization tool for the Criminal Justice Domain",
127127
description:
128-
"A cross-discipline co-design project to build a Document Organization Tool for public defenders and investigative journalists working on police use-of-force and misconduct data disclosures.",
128+
"A cross-disciplinary co-design project to build a Document Organization Tool for public defenders and investigative journalists working on police use-of-force and misconduct data disclosures.",
129129
image: {
130130
src: DOT,
131131
alt: "DOT: Building a Document Organization tool for the Criminal Justice Domain",
@@ -148,7 +148,7 @@ export const PROJECTS: Project[] = [
148148
{
149149
title: "Program Sketches with Scorer Holes",
150150
description:
151-
"A sketch-based program synthesizer that fills sketch holes with scorer programs. Suitable for use with messy, unstructured domains.",
151+
"A program synthesizer that fills sketch holes with scorer programs. Suitable for use in domains with messy, unstructured and semi-structured inputs.",
152152
image: {
153153
src: Marshall,
154154
alt: "Program Sketches with Scorer Holes",
@@ -170,7 +170,7 @@ export const PROJECTS: Project[] = [
170170
{
171171
title: "Syntactic Code Search with Sequence-to-Tree Matching",
172172
description:
173-
"A new lightweight code search query language based on tokenizers and tree automatas to support accurate and incremental syntactic search queries for interactive settings.",
173+
"A new lightweight code search query language based on tokenizers and tree automata to support accurate and incremental syntactic search queries for interactive settings.",
174174
image: {
175175
src: STSearch,
176176
alt: "Syntactic Code Search with Sequence-to-Tree Matching",
@@ -195,7 +195,7 @@ export const PROJECTS: Project[] = [
195195
{
196196
title: "Change in Software Ecosystems",
197197
description:
198-
"An analysis of social challenges to propagate breaking changes in existing software ecosystems to discover opportunities for new techniques to automate upgrades.",
198+
"An analysis of social barriers to implementing 'breaking changes' in existing software ecosystems; opportunities for new techniques to automate upgrades.",
199199
image: {
200200
src: SoftwareEcosystem,
201201
alt: "Change in Software Ecosystems",
@@ -228,7 +228,7 @@ export const PROJECTS: Project[] = [
228228
{
229229
title: "Helena",
230230
description:
231-
"Programming-by-demonstration tool for automating repetitive interactions with webpages. Designed for non-programmers from the social sciences.",
231+
"A Programming-by-Demonstration tool for automating repetitive interactions with webpages. Designed for non-programmers from the social sciences.",
232232
image: {
233233
src: Helena,
234234
alt: "Helena",
@@ -270,7 +270,7 @@ export const PROJECTS: Project[] = [
270270
title:
271271
"CodePlate: Structured Natural Language Interactions for Arduino Programming Tasks",
272272
description:
273-
"A structured natural language interaction to generate Arduino programs, used to probe how different flavors of natural language program generation impact understanding.",
273+
"A structured natural language interaction to generate Arduino programs, used to probe how different styles of natural language programming can affect programmer understanding.",
274274
image: {
275275
src: CodePlate,
276276
alt: "CodePlate: Structured Natural Language Interactions for Arduino Programming Tasks",

0 commit comments

Comments
 (0)