Skip to content

Commit

Permalink
add jobs script (#1656)
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi authored Jan 28, 2025
1 parent 77c22f5 commit e08d16a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions apps/web/app/(base-org)/jobs/JobsScript.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
'use client';

import Script from 'next/script';

export default function JobsScript() {
return (
<Script
src="//jsv3.recruitics.com/0778138b-cc59-11ef-a514-fd1759833eec.js"
id="recruitics-jobs-script"
/>
)
}
2 changes: 2 additions & 0 deletions apps/web/app/(base-org)/jobs/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import JobsScript from 'apps/web/app/(base-org)/jobs/JobsScript';
import Container from 'apps/web/src/components/base-org/Container';
import Title from 'apps/web/src/components/base-org/typography/Title';
import { TitleLevel } from 'apps/web/src/components/base-org/typography/Title/types';
Expand Down Expand Up @@ -34,6 +35,7 @@ export default async function Jobs() {

return (
<main className="flex w-full grow flex-col items-center pt-20">
<JobsScript />
<Container>
<section className="mb-[140px] flex w-full flex-col pb-10 pt-20 ">
<Title level={TitleLevel.Display3}>Join our team</Title>
Expand Down

0 comments on commit e08d16a

Please sign in to comment.