diff --git a/README.md b/README.md
index 9dc65a1..13bca8a 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@
|  | 
| --- | --- |
| [Oscar May](https://github.com/oscarmayreal) | [Sabio Tang](https://github.com/sabioofficial)
-| Founder | Developer |
+| Founder | Co-Founder |
### FaQ
## Are there any reused code?
diff --git a/app/authui/createworkspace.html b/app/authui/createworkspace.html
index 3437b1f..5c188b5 100644
--- a/app/authui/createworkspace.html
+++ b/app/authui/createworkspace.html
@@ -4,7 +4,7 @@
-
Create A New Workspace
+ Clatter • New Workspace
diff --git a/app/authui/index.html b/app/authui/index.html
index 4c4378a..57e9b09 100644
--- a/app/authui/index.html
+++ b/app/authui/index.html
@@ -7,7 +7,7 @@
- Clatter | Authentication
+ Clatter • Authentication
@@ -57,10 +57,10 @@
};
if (window.location.origin == "https://clatterpreview.quntem.co.uk" || window.location.origin == "https://beta.clatter.work") {
- document.title = "Clatter Authentication Beta";
+ document.title = "Clatter • Authentication (Beta)";
elements.subheader.innerHTML = "Clatter Authentication Beta";
} else if (window.location.origin === "http://localhost:3000") {
- document.title = "Clatter Authentication Dev";
+ document.title = "Clatter • Authentication (Local)";
elements.subheader.innerHTML = "Clatter Authentication Dev";
}
diff --git a/app/authui/reset-password.html b/app/authui/reset-password.html
index c84d8fe..3848d8c 100644
--- a/app/authui/reset-password.html
+++ b/app/authui/reset-password.html
@@ -4,7 +4,7 @@
- Clatter | Reset Password
+ Clatter • Reset Password
diff --git a/app/authui/resetpassword.html b/app/authui/resetpassword.html
index 9a01e9e..c0dc16a 100644
--- a/app/authui/resetpassword.html
+++ b/app/authui/resetpassword.html
@@ -4,7 +4,7 @@
- Clatter | Reset Password
+ Clatter • Reset Password
diff --git a/app/authui/signin.html b/app/authui/signin.html
index fdc80d7..5e5fb96 100644
--- a/app/authui/signin.html
+++ b/app/authui/signin.html
@@ -4,7 +4,7 @@
- Clatter | Sign In
+ Clatter • Sign In
diff --git a/app/authui/signup.html b/app/authui/signup.html
index d0de2be..0fc8d03 100644
--- a/app/authui/signup.html
+++ b/app/authui/signup.html
@@ -4,7 +4,7 @@
- Clatter | Sign Up
+ Clatter • Sign Up
diff --git a/app/authui/success.html b/app/authui/success.html
index 3a85a8e..e89f09a 100644
--- a/app/authui/success.html
+++ b/app/authui/success.html
@@ -4,7 +4,7 @@
- Clatter | Success!
+ Clatter • Success
diff --git a/app/client/index.html b/app/client/index.html
index a3fd5a3..26c099c 100644
--- a/app/client/index.html
+++ b/app/client/index.html
@@ -358,9 +358,9 @@
};
if (window.location.origin == "https://beta.clatter.work" || window.location.origin == "https://clatterpreview.quntem.co.uk") {
- document.title = "Clatter | Beta Client";
+ document.title = "Clatter • Client (Beta)";
} else if (window.location.origin === "http://localhost:3000") {
- document.title = "Clatter | Dev Client"
+ document.title = "Clatter • Client (Local)"
}
document.addEventListener('DOMContentLoaded', () => {
diff --git a/app/client/pages/channelpage.html b/app/client/pages/channelpage.html
index dd1206e..a957df0 100644
--- a/app/client/pages/channelpage.html
+++ b/app/client/pages/channelpage.html
@@ -243,7 +243,7 @@
.then((channel) => {
$("#mainarea-header-title").html(channel.name);
document.title =
- "Clatter | " + fullorg.data.name + " - " + channel.name;
+ "Clatter • " + fullorg.data.name + " - " + channel.name;
socket.emit(
"clatter.channel.join",
JSON.stringify({
diff --git a/app/client/pages/channelthreadpage.html b/app/client/pages/channelthreadpage.html
index c51aad5..4182777 100644
--- a/app/client/pages/channelthreadpage.html
+++ b/app/client/pages/channelthreadpage.html
@@ -235,7 +235,7 @@
.then(res => res.json())
.then(channel => {
$("#mainarea-header-sub").html(channel.name);
- document.title = "Clatter | " + fullorg.data.name + " - " + channel.name + " - Thread";
+ document.title = "Clatter • " + fullorg.data.name + " - " + channel.name + " - Thread";
socket.emit("clatter.channel.join", JSON.stringify({ room: currentchannelid }));
});
diff --git a/app/client/pages/composepage.html b/app/client/pages/composepage.html
index 9360b0f..869b9d5 100644
--- a/app/client/pages/composepage.html
+++ b/app/client/pages/composepage.html
@@ -10,7 +10,7 @@