Skip to content

Commit

Permalink
CV English Added
Browse files Browse the repository at this point in the history
  • Loading branch information
AmbrizAlberto committed Apr 29, 2024
1 parent febcbda commit 8d67e2e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/components/español/aboutme.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import Image from 'next/image';
import miImagen from '../../images/1mb.jpeg';

const Aboutme = () => {
const downloadCV = "./CV.pdf";

return (
const downloadCV = "./CVES.pdf";

return (
<div className="personaldata">
<div className="datos1">
<div className="photomia">
<a href={downloadCV} download="CV - Alberto Ambriz.pdf">
<a href={downloadCV} download="CV ESP - Alberto Ambriz.pdf">
<Image src={miImagen} width={"auto"} height={"auto"} priority={true} alt="" />
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/components/español/tecnologies.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ const Tecnologias = () => {
)
}

export default Tecnologias;
export default Tecnologias;
4 changes: 2 additions & 2 deletions app/components/ingles/aboutmeen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import miImagen from '../../images/1mb.jpeg';

const AboutmeEN = () => {

const downloadCV = "./CV.pdf";
const downloadCVEN = "./CVEN.pdf";

return (
<div className="personaldata">
<div className="datos1">
<div className="photomia">
<a href={downloadCV} download="CV - Alberto Ambriz.pdf">
<a href={downloadCVEN} download="CV ENG - Alberto Ambriz.pdf">
<Image src={miImagen} width={"auto"} height={"auto"} priority={true} alt="" />
</a>
</div>
Expand Down
10 changes: 8 additions & 2 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export default function Portafolio() {
}
}

const downloadCV = "./CV.pdf";
const downloadCV = "./CVES.pdf";
const downloadCVEN = "./CVEN.pdf";

return (
<div className='main'>
Expand All @@ -70,10 +71,15 @@ export default function Portafolio() {
</a>
</button>
<button>
<a href={downloadCV} download="CV - Alberto Ambriz.pdf">
<a href={downloadCV} download="CV ESP - Alberto Ambriz.pdf">
<i className="bi bi-file-earmark-person-fill"></i>
</a>
</button>
<button>
<a href={downloadCVEN} download="CV ENG - Alberto Ambriz.pdf">
<i class="bi bi-file-earmark-person"></i>
</a>
</button>
</div>

{english ? (
Expand Down
Binary file added public/CVEN.pdf
Binary file not shown.
File renamed without changes.

0 comments on commit 8d67e2e

Please sign in to comment.