Skip to content

Commit

Permalink
Hide recruitment page links
Browse files Browse the repository at this point in the history
Squash and merge the following commits into develop:
* fix: hide recruitment page links
* build: fix build error
  • Loading branch information
mateusriff authored Dec 16, 2024
1 parent dddf0b2 commit 8bc0f31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ const Navbar = () => {
label: t.navbar.options.papers,
link: '/publications',
},
{
label: t.navbar.options.recruitment,
link: '/seletiva',
},
// {
// label: t.navbar.options.recruitment,
// link: '/seletiva',
// },
]

const languages = [
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
AboutUs,
Sponsors,
Banner,
Recruitment,
// Recruitment,
} from '@/components'

import * as S from '../styles/home.styles'
Expand All @@ -20,7 +20,7 @@ export default function Home() {
<S.PageWrap>
<S.ContentWrap>
<Banner translate={t.home.banner.headline} />
<Recruitment />
{/* <Recruitment /> */}
<AboutUs translate={t.home.about_us} />
<Activities translate={t.home.activities} />
<Sponsors translate={t.home.sponsors} />
Expand Down

0 comments on commit 8bc0f31

Please sign in to comment.