1414 </div >
1515 <div class =" footer__section" >
1616 <div class =" footer__section__item" >
17- <a : href =" feedbackUrl " target =" _blank" rel =" noopener noreferrer" >
18- <AppIcon class =" icon" icon =" face-smile " />
19- <span >Feedback </span >
17+ <a href =" https://www.anonseclab.org/guides/fr/daily.html " target =" _blank" rel =" noopener noreferrer" >
18+ <AppIcon class =" icon" icon =" circle-info " />
19+ <span >Opsec Guides </span >
2020 </a >
2121 </div >
2222 <div class =" footer__section__item" >
3939 @click =" showPrivacyDialog()"
4040 />
4141 </div >
42+ <div class =" footer__section__item" >
43+ <StatisticsButton />
44+ </div >
4245 </div >
4346 </div >
4447 <ModalDialog v-model =" isPrivacyDialogVisible" >
@@ -55,6 +58,7 @@ import ModalDialog from '@/presentation/components/Shared/Modal/ModalDialog.vue'
5558import AppIcon from ' @/presentation/components/Shared/Icon/AppIcon.vue' ;
5659import { injectKey } from ' @/presentation/injectionSymbols' ;
5760import FlatButton from ' @/presentation/components/Shared/FlatButton.vue' ;
61+ import StatisticsButton from ' @/presentation/components/Statistics/StatisticsButton.vue' ;
5862import DownloadUrlList from ' ./DownloadUrlList.vue' ;
5963import PrivacyPolicy from ' ./PrivacyPolicy.vue' ;
6064
@@ -65,6 +69,7 @@ export default defineComponent({
6569 DownloadUrlList ,
6670 AppIcon ,
6771 FlatButton ,
72+ StatisticsButton ,
6873 },
6974 setup() {
7075 const { projectDetails } = injectKey ((keys ) => keys .useApplication );
@@ -80,8 +85,6 @@ export default defineComponent({
8085
8186 const releaseUrl = computed <string >(() => projectDetails .releaseUrl );
8287
83- const feedbackUrl = computed <string >(() => projectDetails .feedbackUrl );
84-
8588 function showPrivacyDialog() {
8689 isPrivacyDialogVisible .value = true ;
8790 }
@@ -94,7 +97,6 @@ export default defineComponent({
9497 homepageUrl ,
9598 repositoryUrl ,
9699 releaseUrl ,
97- feedbackUrl ,
98100 };
99101 },
100102});
0 commit comments