Skip to content

Commit

Permalink
feat: more cat pictures, links, and project entries (#307)
Browse files Browse the repository at this point in the history
* feat: add picture of cat

* feat: add recent projects to the list

* feat: add more links
  • Loading branch information
dustinwhisman authored Jun 15, 2024
1 parent 00f4d1f commit c4f006a
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 1 deletion.
21 changes: 21 additions & 0 deletions pages/_data/bookmarks.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,5 +299,26 @@
"author": "Neven Mrgan",
"authorLink": "https://mrgan.com/",
"description": "Don't be like this friend. If you want to automate boring corporate emails, I can understand that, but friendly communication? C'mon."
},
{
"link": "https://anthonyhobday.com/sideprojects/saferules/",
"title": "Visual design rules you can safely follow every time",
"author": "Anthony Hobday",
"authorLink": "https://anthonyhobday.com/",
"description": "An excellent set of rules of thumb that you can use to make sure your designs don't look terrible."
},
{
"link": "https://lmnt.me/blog/what-do-we-want-computers-to-do.html",
"title": "What Do We Want Computers to Do?",
"author": "Louie Mantia",
"authorLink": "https://lmnt.me/",
"description": "I'd rather computers help humans do things and automate mundane tasks. To be clear, creating art is not a mundane task."
},
{
"link": "https://andrewwalpole.com/blog/opinions-for-writing-good-css/",
"title": "Opinions for Writing Good CSS",
"author": "Andrew Walpole",
"authorLink": "https://andrewwalpole.com/",
"description": "These are some good basic rules, but I especially agree with \"don't paste CSS.\" You gotta understand how the properties build on each other to understand the full picture."
}
]
18 changes: 17 additions & 1 deletion pages/_data/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,22 @@ const projects = [
classification: 'Side Project',
roles: ['Product Owner', 'Individual Contributor'],
},
{
name: 'WordPress Navigation and Patterns Updates',
description:
'A client needed to build a sustainability page, but wanted it to stand out from the rest of their site, so we developed flexible patterns for it and redesigned/reorganized their navigation to make room for a new top-level link.',
startDate: '2024-04-01',
classification: 'Client Project',
roles: ['Tech Lead', 'Individual Contributor'],
},
{
name: 'Product Search Page',
description:
'A client selling specialized parts needed a custom search/filtering page so their highly technical customers could find parts that matched a variety of characteristics.',
startDate: '2024-06-01',
classification: 'Client Project',
roles: ['Tech Lead', 'Individual Contributor'],
},
].sort((a, b) => {
if (a.startDate < b.startDate) {
return 1;
Expand All @@ -156,5 +172,5 @@ const projects = [

module.exports = {
projects,
recentProjects: projects.slice(0, 4)
recentProjects: projects.slice(0, 4),
};
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.

0 comments on commit c4f006a

Please sign in to comment.