-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPress.js
More file actions
70 lines (60 loc) · 2.35 KB
/
Press.js
File metadata and controls
70 lines (60 loc) · 2.35 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import React, { Component, PropTypes } from 'react'
import { connect } from 'react-redux'
import {changePageTitle} from '../Layout/Actions/LayoutActions';
class Coaching extends Component {
componentWillMount() {
const {dispatch} = this.props;
const {title} = Coaching.getPageMeta();
dispatch(changePageTitle(title));
}
static getPageMeta() {
return {
title: `Coaching | Data Skeptic`
}
}
addToCart() {
var product = {
active: 1,
desc: "Weekly check-ins for advice, portfolio development, tutoring, and interview prep.",
id:"coaching",
img:"",
price: 550.00,
sku: "coaching",
title: "Professional development coaching",
type:"membership"
}
var size = ""
this.props.dispatch({type: "ADD_TO_CART", payload: {product, size} })
this.props.dispatch({type: "SHOW_CART", payload: true })
}
render() {
return (
<div className="center">
<br/><br/>
<p>Broadly, I'm available for comment on issues related to data science, artificial intelligence, machine learning, data visualization, big data, cloud computing, and technology.</p>
<p>I'm also eager to provide clarification, follow up, or deeper details related to any episodes of the show and the topics covered.</p>
<br/><br/>
<div className="row coaching-end-box">
<div className="col-xs-12 col-sm-5 coaching-left">
<img src="/img/png/kyle-polich.png" />
<div className="coach-caption">
<p><span className="coaching-name">Kyle Polich</span></p>
<p><span className="coaching-title">Data Skeptic, Executive Producer</span></p>
</div>
</div>
<div className="col-xs-12 col-sm-7 coaching-right">
<h2>Let's start a conversation</h2>
<p>If we haven't made contact yet, feel free to reach out to me via <a href="mailto:kyle@dataskeptic.com">kyle@dataskeptic.com</a>.</p>
<p>If I've previously agreed to be available for comment with you, schedule a time for us to chat via the link below.</p>
<div className="book-me"><a className="book-me-link" href="https://calendly.com/polich">
<span className="book-me-1">Book me on </span>
<span className="book-me-2">calendly.com/polich</span>
</a></div>
</div>
</div>
<div className="clear" />
</div>
)
}
}
export default connect(state => ({ products: state.products }))(Coaching)