diff --git a/.github/workflows/deploy-frontend-dev.yml b/.github/workflows/deploy-frontend-dev.yml
index ea851975a..3a428279d 100644
--- a/.github/workflows/deploy-frontend-dev.yml
+++ b/.github/workflows/deploy-frontend-dev.yml
@@ -2,8 +2,8 @@ name: DeployFrontendDev
on:
push:
- branches:
- - "master"
+ # branches:
+ # - "master"
jobs:
deploy-frontend-dev:
diff --git a/nuxt-frontend/components/backend-development/CaseStudySection.vue b/nuxt-frontend/components/backend-development/CaseStudySection.vue
index 5bf7168e4..04c720192 100644
--- a/nuxt-frontend/components/backend-development/CaseStudySection.vue
+++ b/nuxt-frontend/components/backend-development/CaseStudySection.vue
@@ -28,7 +28,6 @@
:srcset="`${item.images[0]} 400w, ${item.images[1]} 800w,`"
alt="casestudy-image"
class="w-full h-full object-cover"
- loading="lazy"
/>
+
+
+
+
+
+
+
+
+
+
+ {{ showAdditionalFAQs ? "View Less" : "View More" }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/nuxt-frontend/pages/backend-development.vue b/nuxt-frontend/pages/backend-development.vue
index 18cc18dbb..94169e0c4 100644
--- a/nuxt-frontend/pages/backend-development.vue
+++ b/nuxt-frontend/pages/backend-development.vue
@@ -2,11 +2,12 @@
@@ -16,9 +17,9 @@ import config from "@/config.js";
import { defineAsyncComponent } from "vue";
import { elementInViewPort } from "@/utils.js";
import LandingSection from "@/components/backend-development/LandingSection.vue";
-const CaseStudySection = defineAsyncComponent(
- () => import("@/components/backend-development/CaseStudySection.vue"),
-);
+// const CaseStudySection = defineAsyncComponent(
+// () => import("@/components/backend-development/CaseStudySection.vue"),
+// );
const PartnerWithUsSection = defineAsyncComponent(
() => import("@/components/backend-development/PartnerWithUsSection.vue"),
);
@@ -31,6 +32,9 @@ const BlogSection = defineAsyncComponent(
const BlackCtaSection = defineAsyncComponent(
() => import("@/components/backend-development/BlackCtaSection.vue"),
);
+const FaqSection = defineAsyncComponent(
+ () => import("@/components/backend-development/FaqSection.vue"),
+);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
);
@@ -49,11 +53,12 @@ export default {
components: {
Header,
LandingSection,
- CaseStudySection,
+ // CaseStudySection,
PartnerWithUsSection,
SuccessStorySection,
BlogSection,
BlackCtaSection,
+ FaqSection,
NewFooter,
},
setup() {