Skip to content
Open

Bf #35

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
10 changes: 9 additions & 1 deletion app/[lang]/(board)/board/[slug]/[job_slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export default function Page({ params }) {
</Button>
</div>
</div>
<div className="justfy-start flex flex-row items-center gap-2">
<div className="justfy-start flex flex-col md:flex-row items-start md:items-center gap-2">
{job?.city && (
<div className="flex flex-row items-center rounded-full border px-2 dark:border-background dark:text-muted-foreground">
<h1 className="flex flex-row items-center justify-start gap-1.5 text-sm">
Expand All @@ -298,6 +298,14 @@ export default function Page({ params }) {
</h1>
</div>
)}
{job?.position && job.position !== job.title && (
<div className="flex flex-row items-center rounded-full border px-2 dark:border-background dark:text-muted-foreground">
<h1 className="flex flex-row items-center justify-start gap-1.5 text-sm">
<h1 className="font-heading">{"Level: "}</h1>
{job.position}
</h1>
</div>
)}
</div>
</div>
<div className="flex w-full flex-col items-start justify-start gap-2">
Expand Down
9 changes: 9 additions & 0 deletions app/[lang]/(board)/board/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ function JobItem({ params, job, user, company }) {
</h1>
</div>
)}
{(job.position && job.title !== job.position) && (
<div className="flex flex-row items-center rounded-full border px-2 dark:border-background dark:text-muted-foreground">

<h1 className="flex flex-row items-center justify-start gap-1.5 text-xs">
<h1 className="font-heading">{"Level: "}</h1>
{job.position}
</h1>
</div>
)}
</div>
<div className="flex w-full flex-row items-center justify-between md:w-fit md:justify-start md:gap-16">
<div className="relative flex flex-row items-center justify-start gap-3">
Expand Down
Loading