-import MentorShirt from '@/assets/img/mentorShirt.png'
import { mentors } from '@/data/mentors'
import IconLabel from '@/components/IconLabel.vue'
import Panel from '@/components/Panel.vue'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import PanelContainer from '@/components/PanelContainer.vue'
+import { RouterLink, useRoute } from 'vue-router'
+import { computed, ref } from 'vue'
+import config from '@/config'
+import MoreInformationSoon from '@/components/MoreInformationSoon.vue'
+
+const hideMentors = ref(config.hideMentors)
+
+const route = useRoute()
+
+const currentView = computed<'generalInfo' | 'meetThem'>(() => {
+ if (
+ route.params?.mentorsId !== 'generalInfo' &&
+ route.params?.mentorsId !== 'meetThem'
+ ) {
+ return 'generalInfo'
+ }
+
+ return route.params.mentorsId
+})
-
- Mentors are experts in various technologies and programming languages who
- can help you with:
-
- - 💻 Getting started with your project
- - 🚀 Boosting up your project
- - 💣 Issues with your code
- - 🏆 Submitting it to Devpost
-
-
-
-
-
-
-
- #help
-
- You can always find a mentor in the Mentors lobby, located at A5105 next
- to the Cafeteria.
-
- 📍Check where to find it in the Map!
-
- Also you can ask for help through the help channel on Slack!
-
-
-
- In order to recognize a Mentor you can check if Mentor is written
- on their back!
-
-
-
-
-
-
-
+
+ General Information
+
+
-
+ Meet our mentors
+
+
+
+
+
+ Mentors are experts in various technologies and programming languages
+ who can help you with:
+
+ - 💻 Getting started with your project
+ - 🚀 Boosting up your project
+ - 💣 Issues with your code
+ - 🏆 Submitting it to Devpost
+
+
+
+
- {{ mentor.slack }}
+ #help
-
- 💼Working as:
- {{ mentor.description }}
-
- {{ mentor.languages }}
-
+ You can always find a mentor in the Mentors lobby, located at A5105 next
+ to the Cafeteria.
+
+ 📍Check where to find it in the Map!
+
+ Also you can ask for help through the help channel on Slack!
-
+