Skip to content

Commit

Permalink
Enable calling functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
vallieres13 committed May 19, 2024
1 parent fc1f6e8 commit 0879052
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/pages/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ import gsap from 'gsap';
import { useGSAP } from '@gsap/react';
import VanillaTilt from 'vanilla-tilt';
import { Helmet } from 'react-helmet';

const Contact = () => {

const contactItems = [
{
icon: NumberPad,
title: 'Start A Call',
preferred: false,
disabled: true,
action: () => {}
disabled: false,
action: () => { window.location.href = 'tel:+4915159132500' }
},
{
icon: Mail,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Services.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const Services = () => {
surroundings.</p>
<div className="actions">
<Link to={'/contact'} className="button primary">Get in Touch</Link>
<Link to={'/work'} className="button">My Work</Link>
<Link to={'/work'} className="button">Work</Link>
</div>
<img src={DotsVector} alt="Dots"/>
</div>
Expand Down

0 comments on commit 0879052

Please sign in to comment.