From 75de002187cb934324627d59a2d47dec79f7b9ac Mon Sep 17 00:00:00 2001
From: Jesse Morgan
Date: Wed, 17 Nov 2021 18:56:49 -0800
Subject: Branding change
---
Makefile | 5 +++++
src/App.js | 2 +-
src/SearchResults.js | 2 +-
src/foursquare.png | Bin 679 -> 0 bytes
src/logo.png | Bin 0 -> 3137 bytes
5 files changed, 7 insertions(+), 2 deletions(-)
create mode 100644 Makefile
delete mode 100644 src/foursquare.png
create mode 100644 src/logo.png
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..974df45
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+release:
+ npm run build
+
+deploy:
+ aws --profile foursquare s3 cp --recursive build/ s3://foursquare-smallgroups/
diff --git a/src/App.js b/src/App.js
index e5d3e40..aa95f46 100644
--- a/src/App.js
+++ b/src/App.js
@@ -3,7 +3,7 @@ import update from 'immutability-helper';
import 'whatwg-fetch';
import 'promise-polyfill/src/polyfill';
import './App.css';
-import logo from './foursquare.png';
+import logo from './logo.png';
import SearchFilters from './SearchFilters.js';
import SearchResults from './SearchResults.js';
diff --git a/src/SearchResults.js b/src/SearchResults.js
index d3563fa..d3403cb 100644
--- a/src/SearchResults.js
+++ b/src/SearchResults.js
@@ -52,7 +52,7 @@ class SearchResult extends Component {
Group Leader: {this.props.data['leader-name']}{" "}
- Contact Group
+ Sign Up for Group
diff --git a/src/foursquare.png b/src/foursquare.png
deleted file mode 100644
index 0825497..0000000
Binary files a/src/foursquare.png and /dev/null differ
diff --git a/src/logo.png b/src/logo.png
new file mode 100644
index 0000000..4140a72
Binary files /dev/null and b/src/logo.png differ
--
cgit v1.2.3