Skip to content

Commit

Permalink
testando branch preview
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorcz committed Nov 21, 2024
1 parent 83c08ca commit 6a27503
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/projects-components/projectsv2/ProjectsTabNew.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function ProjectsTabNew () {
padding: '8px 16px',
'&:hover': { backgroundColor: 'darkgray' },
}}
href='/projetos/software'
href='/projetos'
>
Saiba mais
</Button>
Expand Down Expand Up @@ -136,7 +136,7 @@ export default function ProjectsTabNew () {
padding: '8px 16px',
'&:hover': { backgroundColor: 'darkgray' },
}}
href='/projetos/hardware'
href='/projetos'
>
Saiba mais
</Button>
Expand Down
7 changes: 7 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,11 @@ module.exports = nextTranslate({
env: {
googleVerification: 'p0W2wGC8bo4bj51FxdxghfL2_mXM_dn8TOMgs9llGmk',
},

eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
});

5 changes: 4 additions & 1 deletion pages/projetos/hardware.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import Hardware from 'components/projects-components/projects/Hardware/Hardware'

export default function hardware() {
return (
<Hardware />
//<Hardware />
<>
"hardware"
</>
)
}
2 changes: 1 addition & 1 deletion pages/projetos/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import NavBar from 'components/navbar-components/NavBar';
import useTranslation from 'next-translate/useTranslation';
import HeroSection from 'components/general/HeroSection';
import ProjectTab from 'components/projects-components/ProjectTab';
//import ProjectTab from 'components/projects-components/ProjectTab';
import Footer from 'components/Footer';
import HeadTags from 'components/general/HeadTags';
import ProjectsTabNew from 'components/projects-components/projectsv2/ProjectsTabNew';
Expand Down
5 changes: 4 additions & 1 deletion pages/projetos/software.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import Software from 'components/projects-components/projects/Software/Software'

export default function software() {
return (
<Software />
//<Software />
<>
"hardware 2"
</>
)
}
5 changes: 4 additions & 1 deletion pages/projetos/sondas-aeroespaciais.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import SondasAeroespaciais from 'components/projects-components/projectsv2/Sonda

export default function sondas() {
return (
<SondasAeroespaciais />
<>
"hardware 3"
</>
//<SondasAeroespaciais />
)
}

0 comments on commit 6a27503

Please sign in to comment.