Skip to content

Review of Hiretrax.app #1644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/blog/hiretrax.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 20 additions & 13 deletions src/components/Unsplash.astro
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
---
const { name, url } = Astro.props;

console.log(url);
const fullURL = `https://unsplash.com/@${url}`;
---

<p class="text-sm">
Photo by
{url ? <a
href={fullURL}
rel="noopener nofollow noreferrer"
target="_blank"
class="underline"
>{name}</a> : <span>{name}</span>}
on
<a
href="https://unsplash.com"
rel="noopener nofollow noreferrer"
target="_blank"
class="underline"
>Unsplash</a>
{
url ? (
<a href={fullURL} rel="noopener nofollow noreferrer" target="_blank" class="underline">
{name}
</a>
) : (
<span>{name}</span>
)
}
{
url ? (
<>
on
<a href="https://unsplash.com" rel="noopener nofollow noreferrer" target="_blank" class="underline">
Unsplash
</a>
</>
) : (<></>)
}
</p>
17 changes: 17 additions & 0 deletions src/content/blog/a-review-of-hiretrax.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "A Review of my BuildSpace Nights & Weekends Project: HireTrax.app"
date: "2024-10-05"
tags:
- "programming"
- "javascript"
- "review"
slug: "a-review-of-hiretrax"
heroImage: "@assets/blog/hiretrax.jpg"
unsplash: "Dall-E-3"
description: "An indepth review of my BuildSpace Nights & Weekends project HireTrax.app. How I built it in 6 weeks, spilling all the tips and tricks."
---

As I spoke about in my [last blog post](/blog/review-of-buildspace-nights-weekends/), I had the amazing opportunity to participate in the last BuildSpace Nights & Weekends class.
I talked a lot about how the class was overall, but did not really go indepth in my project I built.
I thought it would be good to share some of my thoughts about building a project in six weeks.
Things I learned, things I would do again, and things I would not.