diff --git a/nuxt-frontend/components/CTA/CTA2.vue b/nuxt-frontend/components/CTA/CTA2.vue index 17f808eb2..26865cf04 100644 --- a/nuxt-frontend/components/CTA/CTA2.vue +++ b/nuxt-frontend/components/CTA/CTA2.vue @@ -300,7 +300,7 @@ const submitForm = (event) => { .then(() => { localStorage.setItem( "client-name", - JSON.stringify(formData.name) + JSON.stringify(formData.name), ); window.location.href = "/thank-you"; resetForm(); diff --git a/nuxt-frontend/components/CTA/CTA5.vue b/nuxt-frontend/components/CTA/CTA5.vue index d8e3a000a..13b48b45e 100644 --- a/nuxt-frontend/components/CTA/CTA5.vue +++ b/nuxt-frontend/components/CTA/CTA5.vue @@ -20,8 +20,7 @@ Work - Together

diff --git a/nuxt-frontend/components/home-new/CaseStudy.vue b/nuxt-frontend/components/home-new/CaseStudy.vue index d2c6f95d9..91649ee0b 100644 --- a/nuxt-frontend/components/home-new/CaseStudy.vue +++ b/nuxt-frontend/components/home-new/CaseStudy.vue @@ -28,10 +28,7 @@ use our apps every day - + diff --git a/nuxt-frontend/components/home-new/HomeIndex.vue b/nuxt-frontend/components/home-new/HomeIndex.vue index b233d4c78..9f6d2cc5a 100644 --- a/nuxt-frontend/components/home-new/HomeIndex.vue +++ b/nuxt-frontend/components/home-new/HomeIndex.vue @@ -36,9 +36,7 @@ const ContributionSection = defineAsyncComponent( const ClientReview = defineAsyncComponent( () => import("@/components/home-new/ClientReviewSection.vue"), ); -const CTA5 = defineAsyncComponent( - () => import("@/components/CTA/CTA5.vue"), -); +const CTA5 = defineAsyncComponent(() => import("@/components/CTA/CTA5.vue")); const BlogSection = defineAsyncComponent( () => import("@/components/home-new/BlogSection.vue"), ); diff --git a/nuxt-frontend/pages/mobile-app-development.vue b/nuxt-frontend/pages/mobile-app-development.vue index 4dce4568f..6d4d6159a 100755 --- a/nuxt-frontend/pages/mobile-app-development.vue +++ b/nuxt-frontend/pages/mobile-app-development.vue @@ -26,23 +26,19 @@ import config from "@/config.js"; import { defineAsyncComponent } from "vue"; import { elementInViewPort } from "@/utils.js"; -const Portfolio = defineAsyncComponent(() => - import("@/components/mobile-app-development/Portfolio.vue") +const Portfolio = defineAsyncComponent( + () => import("@/components/mobile-app-development/Portfolio.vue"), ); -const CTA1 = defineAsyncComponent(() => - import("@/components/CTA/CTA1.vue") +const CTA1 = defineAsyncComponent(() => import("@/components/CTA/CTA1.vue")); +const DevelopmentProcess = defineAsyncComponent( + () => import("@/components/mobile-app-development/DevelopmentProcess.vue"), ); -const DevelopmentProcess = defineAsyncComponent(() => - import("@/components/mobile-app-development/DevelopmentProcess.vue") +const ClientReview = defineAsyncComponent( + () => import("@/components/mobile-app-development/ClientReview.vue"), ); -const ClientReview = defineAsyncComponent(() => - import("@/components/mobile-app-development/ClientReview.vue") -); -const CTA5 = defineAsyncComponent(() => - import("@/components/CTA/CTA5.vue") -); -const NewFooter = defineAsyncComponent(() => - import("@/components/partials/NewFooter.vue") +const CTA5 = defineAsyncComponent(() => import("@/components/CTA/CTA5.vue")); +const NewFooter = defineAsyncComponent( + () => import("@/components/partials/NewFooter.vue"), ); const { $mixpanel } = useNuxtApp(); diff --git a/nuxt-frontend/pages/services.vue b/nuxt-frontend/pages/services.vue index ca1e7cce9..07c5b8fdc 100644 --- a/nuxt-frontend/pages/services.vue +++ b/nuxt-frontend/pages/services.vue @@ -32,9 +32,7 @@ const SuccessStories = defineAsyncComponent( const BlogSection = defineAsyncComponent( () => import("@/components/home-new/BlogSection.vue"), ); -const CTA4 = defineAsyncComponent( - () => import("@/components/CTA/CTA4.vue"), -); +const CTA4 = defineAsyncComponent(() => import("@/components/CTA/CTA4.vue")); const ContributionSection = defineAsyncComponent( () => import("@/components/home-new/ContributionSection.vue"), ); diff --git a/nuxt-frontend/tailwind.config.js b/nuxt-frontend/tailwind.config.js index 78098fb9f..0e977498a 100644 --- a/nuxt-frontend/tailwind.config.js +++ b/nuxt-frontend/tailwind.config.js @@ -334,7 +334,7 @@ module.exports = { 120: "120deg", 135: "135deg", }), - } + }, ); }), function ({ addComponents }) {