Skip to content

Commit

Permalink
feat:ย ๐Ÿ‘‹ extra p
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Mar 31, 2018
1 parent 2f13043 commit 1fa788b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# Narrow the Gapp
# Narrow the Gap

A single-serving web site displays the wage gap between men and women in the United States on a per-occupation basis. All factoids based on data provided by the U.S. Bureau of Labor Statistics. See it in action at
[https://narrowthegapp.com](https://narrowthegapp.com).
[https://narrowthegap.co](https://narrowthegap.co).

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,5 +1,5 @@
{
"name": "narrowthegapp",
"name": "narrowthegap",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down
10 changes: 5 additions & 5 deletions public/index.html
Expand Up @@ -6,12 +6,12 @@
<meta name="theme-color" content="#000000">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta itemprop="image" content="https://narrowthegapp.com/images/narrow-the-gapp.png">
<meta itemprop="image" content="https://narrowthegap.co/images/narrow-the-gapp.png">
<meta name="author" content="U.S. Bureau of Labor Statistics">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://narrowthegapp.com/" />
<meta property="og:image" content="https://narrowthegapp.com/images/narrow-the-gapp.png" />
<meta property="og:site_name" content="Narrow the Gapp" />
<meta property="og:url" content="https://narrowthegap.co/" />
<meta property="og:image" content="https://narrowthegap.co/images/narrow-the-gapp.png" />
<meta property="og:site_name" content="Narrow the Gap" />
<meta property="fb:admins" content="606837591" />

<!--
Expand Down Expand Up @@ -104,7 +104,7 @@
}(document, 'script', 'facebook-jssdk'));</script>

<script type="text/javascript">
var _sf_async_config = { uid: 34052, domain: "narrowthegapp.com" };
var _sf_async_config = { uid: 34052, domain: "narrowthegap.co" };
(function() {
function loadChartbeat() {
window._sf_endpt = new Date().getTime();
Expand Down
2 changes: 1 addition & 1 deletion src/components/AllOccupations.js
Expand Up @@ -7,7 +7,7 @@ import Footer from "./Footer.js";

const AllOccupations = () => (
<div className="App">
<Helmet title="All Occupations - Narrow the Gapp" />
<Helmet title="All Occupations - Narrow the Gap" />
<div className="container">
<Header />
<div>
Expand Down
14 changes: 7 additions & 7 deletions src/components/Gap.js
Expand Up @@ -65,9 +65,9 @@ class Gap extends Component {
this.getPhrasing(gap.occupation_name) +
" " +
GapAPI.cleanOccupationName(gap.occupation_name) +
" - Narrow the Gapp";
" - Narrow the Gap";

const permalink = "https://narrowthegapp.com/gap/" + gapSlug;
const permalink = "https://narrowthegap.co/gap/" + gapSlug;

// @TODO Stop using inline CSS
var inTheUSStyle = {
Expand All @@ -91,7 +91,7 @@ class Gap extends Component {
<meta itemprop="description" content={tweetText} />
<meta
itemprop="image"
content="https://narrowthegapp.com/images/narrow-the-gapp.png"
content="https://narrowthegap.co/images/narrow-the-gapp.png"
/>
<meta
name="author"
Expand All @@ -101,11 +101,11 @@ class Gap extends Component {
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://narrowthegapp.com/"
content="https://narrowthegap.co/"
/>
<meta
property="og:image"
content="https://narrowthegapp.com/images/narrow-the-gapp.png"
content="https://narrowthegap.co/images/narrow-the-gapp.png"
/>
<meta property="og:site_name" content="Narrow the Gapp" />
<meta property="fb:admins" content="606837591" />
Expand All @@ -115,11 +115,11 @@ class Gap extends Component {
<meta name="twitter:description" content={tweetText} />
<meta
name="twitter:image"
content="https://narrowthegapp.com/images/narrow-the-gapp.png"
content="https://narrowthegap.co/images/narrow-the-gapp.png"
/>
<meta
name="twitter:url"
content="https://narrowthegapp.com/"
content="https://narrowthegap.co/"
/>
</Helmet>
<ScrollToTopOnMount />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.js
Expand Up @@ -15,7 +15,7 @@ class Header extends Component {
role="button"
className="btn btn-danger btn-lg active"
>
Narrow the Gapp
Narrow the Gap
</a>
</div>
<div className="col-md-9" />
Expand Down

0 comments on commit 1fa788b

Please sign in to comment.