Skip to content

Commit

Permalink
Deploy android app development page
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Oct 27, 2023
1 parent 857a534 commit 270b2e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default {
// check which element is in viewport
const elementIdx = elementInViewPort(this.$refs);
const index = parseInt(
elementIdx ? elementIdx.charAt(elementIdx.length - 1) : 0
elementIdx ? elementIdx.charAt(elementIdx.length - 1) : 0,
);
if (this.prevIndex != index) {
Expand Down
16 changes: 8 additions & 8 deletions vue-frontend/src/pages/android-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@ 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 {
Expand Down

0 comments on commit 270b2e0

Please sign in to comment.