Skip to content

Commit

Permalink
Navbar Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
AmbrizAlberto committed Apr 25, 2024
1 parent 83b6305 commit f1e47f2
Show file tree
Hide file tree
Showing 5 changed files with 829 additions and 24 deletions.
1 change: 1 addition & 0 deletions app/components/navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export default function Navbar() {
<Link className="link" href="/"><i className="bi bi-house-fill"></i><span>Hogar</span></Link>
<Link className="link" href="/"><i className="bi bi-person-raised-hand"></i><span>En solitario</span></Link>
<Link className="link" href="/"><i className="bi bi-people-fill"></i><span>En grupo</span></Link>
<Link className="link" href="/"><i className="">EN</i><span>Cambiar Idioma</span></Link>
</div>

</div>
Expand Down
44 changes: 22 additions & 22 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import Tecnologias from './components/tecnologies';
import Proyectos from './components/projects';
import Contactame from './components/contactme';


export default function Portafolio() {

useEffect(() => {
Expand All @@ -40,6 +41,8 @@ export default function Portafolio() {
}
}

const downloadCV = "./CV.pdf";

return (
<div className='main'>

Expand All @@ -48,11 +51,9 @@ export default function Portafolio() {
<div className="personaldata">
<div className="datos1">
<div className="photomia">
<button type="button" className='photo'>
<a href="/CV - Alberto Ambriz.pdf" download>
<Image src={miImagen} width={"auto"} height={"auto"} priority={true} alt="" />
</a>
</button>
<a href="" download>
<Image src={miImagen} width={"auto"} height={"auto"} priority={true} alt="" />
</a>
</div>
<div className="datos">
<div className="nombre">
Expand All @@ -71,23 +72,22 @@ export default function Portafolio() {
</div>

<div className='btnlinks'>
<button>
<a href="https://www.linkedin.com/in/alberto-ambriz-chavez/" target="_blank">
<i className="bi bi-linkedin"></i>
</a>
</button>
<button>
<a href="https://github.com/ambrizalberto/" target="_blank">
<i className="bi bi-github"></i>
</a>
</button>
<button>
<a href="/CV%20-%20Alberto%20Ambriz.pdf" download>
<i className="bi bi-file-earmark-person-fill"></i>
</a>
</button>

</div>
<button>
<a href="https://www.linkedin.com/in/alberto-ambriz-chavez/" target="_blank">
<i className="bi bi-linkedin"></i>
</a>
</button>
<button>
<a href="https://github.com/ambrizalberto/" target="_blank">
<i className="bi bi-github"></i>
</a>
</button>
<button>
<a href={downloadCV} download="Alberto_Ambriz_CV.pdf">
<i className="bi bi-file-earmark-person-fill"></i>
</a>
</button>
</div>


<Tecnologias/>
Expand Down
Loading

0 comments on commit f1e47f2

Please sign in to comment.