Skip to content
Merged
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
1 change: 1 addition & 0 deletions apps/web/content/jobs/designteer.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
published: false
title: "Designteer"
description: "Join Hyprnote as a Designteer - designer + marketer + engineer."
cardDescription: "Own visual quality across product and marketing. Design and ship real UI. Work with a small, high-trust team that values craft and long-term thinking."
Expand Down
18 changes: 13 additions & 5 deletions apps/web/src/routes/_view/jobs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,19 @@ function JobsSection() {

return (
<section className="pb-16 lg:pb-24">
<div className="grid grid-cols-1 md:grid-cols-2">
{jobs.map((job, index) => (
<JobCard key={job.slug} job={job} hasBorder={index === 0} />
))}
</div>
{jobs.length > 0 ? (
<div className="grid grid-cols-1 md:grid-cols-2">
{jobs.map((job, index) => (
<JobCard key={job.slug} job={job} hasBorder={index === 0} />
))}
</div>
) : (
<div className="px-6 py-16 text-center">
<p className="text-lg text-neutral-500">
There are no open positions at the moment.
</p>
</div>
)}
<SlashSeparator />
<CTASection />
</section>
Expand Down