Skip to content

Commit

Permalink
🍱 procurato experience done
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredkiss3 committed Sep 24, 2024
1 parent b7a5690 commit 6efb894
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/content/work/procurato.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ startDate: "2024-07-01"
endDate: "2024-07-31"
---

I was contacted by [Richard Poeldrel](https://twitter.com/richardpoelderl) for the ...
I was approached by [Richard Poelderl](https://twitter.com/richardpoelderl) to work on Procurato, a Next.js app designed to provide a better UI for querying the German company database [handelsregister.de](https://www.handelsregister.de/) and retrieving information such as titles, capital, and registration documents. My responsibilities included:

- Migrating the app's data-fetching process to [Inngest](https://www.inngest.com/), a background job service, to improve performance, as the app previously fetched documents directly on request, leading to slow response times.
- Implementing new features to query and download historical documents, including the list of shareholders and documents related to various fundraising stages.
4 changes: 3 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ const projects = (await getCollection("projects")).sort(
: "present";

const formattedDateRange =
startDate === endDate ? startDate : `${startDate} ${endDate}`;
xp.startDate.getMonth() === xp.endDate?.getMonth()
? startDate
: `${startDate} ${endDate}`;
return (
<li>
<article class="flex flex-col gap-2">
Expand Down

0 comments on commit 6efb894

Please sign in to comment.