forked from zerostaticthemes/gatsby-serif-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCall.js
43 lines (41 loc) · 1.03 KB
/
Call.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import React from 'react';
import { graphql, useStaticQuery } from 'gatsby';
const Call = props => {
const data = useStaticQuery(graphql`
query ContactQuery {
contactJson {
phone
email
contact_button_link
}
}
`);
return (
<div className="call">
<div className="call-box-top">
{data.contactJson.phone && (
<div className="call-phone">
<strong>Phone: </strong>
{' '}
{ data.contactJson.phone }
{' '}
</div>
)}
{data.contactJson.email && (
<div className="call-email">
<strong>Email: </strong>
<a href={`mailto:${data.contactJson.email}`}>
{data.contactJson.email}
</a>
</div>
)}
</div>
{props.showButton && (
<div className="call-box-bottom">
<a href={data.contactJson.contact_button_link} className="button">Contact</a>
</div>
)}
</div>
);
};
export default Call;