diff --git a/01-build.sh b/01-build.sh
index 40bc56e..52d7515 100644
--- a/01-build.sh
+++ b/01-build.sh
@@ -3,6 +3,7 @@
# Date: 21/01/2021
PROJ_DIR="/home/dev/MigratorProject-frontend"
+DEPLOY_PATH="/home/mxpoopzxzx"
echo "Removing old build files"
# Remove old build files
@@ -10,4 +11,8 @@ rm -rf $PROJ_DIR/build*
echo "Building site and creating zip"
# Build the site and zip it with the .htaccess
-npm run-script build && cd build && zip -r $PROJ_DIR/build.zip $PROJ_DIR/build/* && zip -r $PROJ_DIR/build.zip $PROJ_DIR/build/.htaccess* && echo "Successfully built" || echo "Build Failed"
\ No newline at end of file
+npm run-script build && cd build && zip -r $PROJ_DIR/build.zip * && \
+ zip -r $PROJ_DIR/build.zip .htaccess* && echo "Successfully built" || echo "Build Failed"
+
+scp -P 2683 $PROJ_DIR/build.zip mxpoopzxzx@s02cd.syd6.hostingplatform.net.au:$DEPLOY_PATH
+ssh -p 2683 mxpoopzxzx@s02cd.syd6.hostingplatform.net.au "bash $DEPLOY_PATH/deploy-tracker.sh"
\ No newline at end of file
diff --git a/src/components/root/Home.js b/src/components/root/Home.js
index c4fee83..31b0663 100644
--- a/src/components/root/Home.js
+++ b/src/components/root/Home.js
@@ -65,9 +65,11 @@ export class Home extends Component {