Skip to content

Commit

Permalink
changes in landing section and cta section
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-ashish-k committed Nov 7, 2023
1 parent ae9e9e8 commit 970477b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions nuxt-frontend/pages/flutter-app-development.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div>
<Header />
<LandingSection ref="flutterLanding" />
<LandingSection />
<CtaSection />
<NewFooter />
<NewFooter ref="flutterFooter" />
</div>
</template>

Expand All @@ -12,7 +12,7 @@ import Header from "@/components/partials/NewHeader.vue";
import config from "@/config.js";
import { defineAsyncComponent } from "vue";
import { elementInViewPort } from "@/utils.js";
import LandingSection from "../components/flutter-app-development/LandingSection.vue";
import LandingSection from "@/components/flutter-app-development/LandingSection.vue";
const CtaSection = defineAsyncComponent(() =>
import("@/components/flutter-app-development/CtaSection.vue"),
);
Expand All @@ -21,7 +21,12 @@ const NewFooter = defineAsyncComponent(() =>
);
export default {
data() {
return {};
return {
event: "",
events: {
flutterFooter: "view_flutter_app_development_footer",
},
};
},
setup() {
const seoData = config.FLUTTER_APP_DEVELOPMENT_SEO_META_DATA;
Expand Down

0 comments on commit 970477b

Please sign in to comment.