diff --git a/src/components/Menu/AppBar.vue b/src/components/Menu/AppBar.vue
index 80a9adf..2099ebe 100644
--- a/src/components/Menu/AppBar.vue
+++ b/src/components/Menu/AppBar.vue
@@ -37,9 +37,12 @@
-->
-
+
Referrals
+
+ Campus Ambassadors
+
@@ -126,9 +129,12 @@
-
+
Referrals
+
+ Campus Ambassadors
+
@@ -37,19 +37,29 @@ export default {
return {
tasks: [
{
- start: "Connect ",
+ start: "Coordinating ",
rest:
- "CodeFest with the student community inside your campus and circle.",
+ "with our organizing team to facilitate the participation process for students from your college",
},
{
- start: "Publicize",
+ start: "Creating awareness ",
rest:
- "CodeFest by sharing the posts and updates on social media, through word-of-mouth, posters and e-mails.",
+ "about CodeFest in your respective colleges by circulating posters, mails or messages in the official college groups",
},
{
- start: "Encourage",
+ start: "Promoting CodeFest ",
rest:
- "the students of your campus for active participation in CodeFest.",
+ "in your college campus and through various social media platforms, including but not limited to Facebook, Instagram, and LinkedIn",
+ },
+ {
+ start: "Encouraging students ",
+ rest:
+ "from your college to participate in the event and engage in the various activities and competitions",
+ },
+ {
+ start: "Providing feedback and suggestions ",
+ rest:
+ "to enhance the overall experience of participants",
},
],
};
diff --git a/src/pages/CampusAmbassador.vue b/src/pages/CampusAmbassador.vue
index 6d49bd8..b3f23eb 100644
--- a/src/pages/CampusAmbassador.vue
+++ b/src/pages/CampusAmbassador.vue
@@ -3,24 +3,24 @@
-
+
-
+
-
+
-
+
+
diff --git a/src/store/auth.js b/src/store/auth.js
index 0075ffa..861f255 100644
--- a/src/store/auth.js
+++ b/src/store/auth.js
@@ -16,18 +16,21 @@ export default {
state: {
token: getTokenFromStorage() || "",
userId: -1,
+ isCampusAmbassador: true,
},
getters: {
isLoggedIn: (state) => {
return !!state.token;
},
authToken: (state) => state.token,
+ isCampusAmbassador: (state) => state.isCampusAmbassador,
},
mutations: {
AUTH_SUCCESS(state, data) {
- const { token, user_id } = data;
+ const { token, user_id, is_campus_ambassador } = data;
state.token = token;
state.userId = user_id;
+ state.isCampusAmbassador = is_campus_ambassador;
putTokenToStorage(token);
},
AUTH_LOGOUT(state) {