Skip to content

Commit fef9e95

Browse files
authored
feat: hide career page (#55)
1 parent 1a7a084 commit fef9e95

File tree

5 files changed

+2
-24
lines changed

5 files changed

+2
-24
lines changed

Diff for: src/app/sitemap.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const staticRoutes = [
1212
'/',
1313
'/academy',
1414
'/build',
15-
'/career',
15+
// '/career',
1616
'/community-hub',
1717
'/contact-us',
1818
'/dubai-residents-disclaimer',

Diff for: src/components/pages/career-page.tsx

-8
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ export function CareerPage() {
3030
</p>
3131
</div>
3232

33-
<Link
34-
href="https://islamiccoin.bamboohr.com/careers"
35-
target="_blank"
36-
rel="noopener noreferrer"
37-
className="mt-[24px] block w-fit max-w-[233px] md:mt-[44px]"
38-
>
39-
<Button>{t('button-text')}</Button>
40-
</Link>
4133
</div>
4234

4335
<div

Diff for: src/components/ui/burger-menu.tsx

+1-6
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,7 @@ export function BurgerMenu({
173173
/>
174174
</MobileMenuDropdownLink>
175175
<MobileMenuDropdownLink title={t('dropdown-links.team.team')}>
176-
<BurgerMenuDropdownLink
177-
title={t('dropdown-links.team.career')}
178-
icon={<CaseIcon />}
179-
href="/career"
180-
onClick={onClick}
181-
/>
176+
182177
<BurgerMenuDropdownLink
183178
title={t('dropdown-links.team.our-values')}
184179
icon={<ValuesIcon />}

Diff for: src/components/ui/footer.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ const footerNavLinks: FooterNavLinks = [
129129
url: '/values',
130130
title: 'values',
131131
},
132-
{
133-
url: '/career',
134-
title: 'career',
135-
},
136132
],
137133
];
138134

Diff for: src/components/ui/header-desktop.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,6 @@ export function DesktopHeader({
241241
<HeaderDropdown title={t('dropdown-links.team.team')}>
242242
<div className="flex gap-x-[18px]">
243243
<div className="flex flex-col">
244-
<DropdownLink
245-
title={t('dropdown-links.team.career')}
246-
icon={<CaseIcon />}
247-
href="/career"
248-
/>
249244
<DropdownLink
250245
title={t('dropdown-links.team.our-values')}
251246
icon={<ValuesIcon />}

0 commit comments

Comments
 (0)