-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make mouse button and social bar conditionally rendered
- Loading branch information
Showing
8 changed files
with
60 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<script setup> | ||
import { links } from '../socialData' | ||
</script> | ||
|
||
<template> | ||
<nav class="flex w-full mb-10"> | ||
<ul class="flex w-full justify-evenly"> | ||
<li class="" v-for="{ link, iconSrc, alt, text } in links"> | ||
<a target="_blank" :href="link"> | ||
<img class="h-9" :src="iconSrc" :alt="alt" /> | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import githubIcon from '/social-icons/github-icon.png' | ||
import linkedinIcon from '/social-icons/linkedin-icon.png' | ||
import mailIcon from '/social-icons/resume-icon.png' | ||
import cvIcon from '/social-icons/email-icon.png' | ||
|
||
export const links = [ | ||
{ | ||
link: 'https://github.com/Vikms95', | ||
iconSrc: githubIcon, | ||
text: 'Github', | ||
alt: 'github', | ||
}, | ||
{ | ||
link: 'https://www.linkedin.com/in/v%C3%ADctor-mart%C3%ADn-serra-b4003487/', | ||
iconSrc: linkedinIcon, | ||
text: 'Linkedin', | ||
alt: 'linkedin', | ||
}, | ||
{ | ||
link: 'https://github.com/Vikms95', | ||
iconSrc: mailIcon, | ||
text: 'Download my resume', | ||
alt: 'emails', | ||
}, | ||
{ | ||
link: 'https://github.com/Vikms95', | ||
iconSrc: cvIcon, | ||
text: 'Send me an e-mail', | ||
alt: 'cv', | ||
}, | ||
] |
bdd62c0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
victordevv – ./
victordevv-vikms95.vercel.app
victordevv-git-main-vikms95.vercel.app
victordevv.vercel.app