Skip to content

Commit

Permalink
Merge pull request #71 from AnaRangel/unicorn
Browse files Browse the repository at this point in the history
linked in contact and about me buttons
  • Loading branch information
felixicaza authored Jun 2, 2024
2 parents 0485a74 + 85588c4 commit de8ccf2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
14 changes: 11 additions & 3 deletions src/pages/_Sections/Contact/Contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ import { Button, IconCatalog } from '@components';
</p>
</div>
<div class="contact__actions">
<Button> Contactame </Button>
<Button invert afterIcon={IconCatalog.arrowDownTray}>Descargar CV</Button>
<!--TODO: hacer refactor de el enlace de los botones en el componente -->
<a target="_blank" href="https://calendly.com/rangelana1221/30min"
><Button> Contactame </Button></a
>
<a
target="_blank"
download
href="https://drive.google.com/file/d/1AarbQ2HUMlMa4ZpA40MfW7OsNMC-Z6OE/view?usp=sharing"
><Button invert afterIcon={IconCatalog.arrowDownTray}>Descargar CV</Button></a
>
</div>
</section>

Expand All @@ -24,7 +32,7 @@ import { Button, IconCatalog } from '@components';
justify-content: center;
align-items: center;
gap: 24px;
padding: 56px 1rem 56px 1rem;
padding: 100px 0rem;
}
.contact__content {
text-align: center;
Expand Down
12 changes: 10 additions & 2 deletions src/pages/_Sections/Hero/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,16 @@ import { Button, IconCatalog } from '@components';
<p class="role-list">Product Designer | UX Engineer | UX Designer</p>
<div class="btn-contanier">
<div class="btn-group">
<Button>Contactame </Button>
<Button invert afterIcon={IconCatalog.arrowDownTray}>Contactame</Button>
<!--TODO: hacer refactor de el enlace de los botones en el componente -->
<a target="_blank" href="https://calendly.com/rangelana1221/30min"
><Button> Contactame </Button></a
>
<a
target="_blank"
download
href="https://drive.google.com/file/d/1AarbQ2HUMlMa4ZpA40MfW7OsNMC-Z6OE/view?usp=sharing"
><Button invert afterIcon={IconCatalog.arrowDownTray}>Descargar CV</Button></a
>
</div>
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/pages/_Sections/Profession/Profession.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import { Button, IconCatalog } from '@components';
Lorem ipsum dolor sit amet consectetur. Lacinia sem urna ac egestas pellentesque adipiscing
aliquam enim ultricies.
</p>
<Button invert afterIcon={IconCatalog.arrowDownTray}>Saber más de mi</Button>
<a href="/about-me"
><Button invert afterIcon={IconCatalog.arrowDownTray}>Saber más de mi</Button></a
>
</div>
<img class="svg-container" src="/svg/interface-description.svg" alt="" />
</div>
Expand Down

0 comments on commit de8ccf2

Please sign in to comment.