diff --git a/nuxt-frontend/pages/android-app-development.vue b/nuxt-frontend/pages/android-app-development.vue
index ec34c91d1..2104f5718 100644
--- a/nuxt-frontend/pages/android-app-development.vue
+++ b/nuxt-frontend/pages/android-app-development.vue
@@ -2,17 +2,17 @@
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -24,28 +24,28 @@ import { elementInViewPort } from "@/utils.js";
import LandingSection from "@/components/android-app-development/LandingSection.vue";
import DevelopmentSection from "@/components/android-app-development/DevelopmentSection.vue";
const CaseStudy = defineAsyncComponent(() =>
- import("@/components/android-app-development/CaseStudySection.vue")
+ import("@/components/android-app-development/CaseStudySection.vue"),
);
const SuccessStorySection = defineAsyncComponent(() =>
- import("@/components/android-app-development/SuccessStorySection.vue")
+ import("@/components/android-app-development/SuccessStorySection.vue"),
);
const FaqSection = defineAsyncComponent(() =>
- import("@/components/android-app-development/FaqSection.vue")
+ import("@/components/android-app-development/FaqSection.vue"),
);
const PinkCtaSection = defineAsyncComponent(() =>
- import("@/components/android-app-development/PinkCtaSection.vue")
+ import("@/components/android-app-development/PinkCtaSection.vue"),
);
const CtaSection = defineAsyncComponent(() =>
- import("@/components/android-app-development/CtaSection.vue")
+ import("@/components/android-app-development/CtaSection.vue"),
);
const BlackCtaSection = defineAsyncComponent(() =>
- import("@/components/android-app-development/BlackCtaSection.vue")
+ import("@/components/android-app-development/BlackCtaSection.vue"),
);
const BlogSection = defineAsyncComponent(() =>
- import("@/components/android-app-development/BlogSection.vue")
+ import("@/components/android-app-development/BlogSection.vue"),
);
const NewFooter = defineAsyncComponent(() =>
- import("@/components/partials/NewFooter.vue")
+ import("@/components/partials/NewFooter.vue"),
);
export default {
@@ -78,15 +78,14 @@ export default {
event: "",
events: {
landing: "view_android_development_landing_section",
+ footer: "view_android_development_footer",
development: "view_android_development_section",
casestudy: "view_android_development_casestudy_section",
- cta1: "view_android_development_cta_section",
+ faq: "view_android_development_faq_section",
successstory: "view_android_development_success_story_section",
+ cta1: "view_android_development_cta_section",
cta2: "view_android_development_cta2_section",
- blogs: "view_android_development_blog_section",
- faq: "view_android_development_faq_section",
cta3: "view_android_development_cta3_section",
- footer: "view_android_development_footer",
},
};
},
@@ -103,7 +102,6 @@ export default {
const event = this.events[elementInViewPort(this.$refs)];
if (event && this.event !== event) {
this.event = event;
- console.log(this.event)
this.$mixpanel.track(event);
}
},