Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-dharti-r committed Mar 14, 2024
1 parent 11238c1 commit fff6929
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 28 deletions.
2 changes: 1 addition & 1 deletion nuxt-frontend/components/CTA/CTA2.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
3 changes: 1 addition & 2 deletions nuxt-frontend/components/CTA/CTA5.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
<span class="mr-[-0.2rem] bg-gradient-W bg-clip-text text-transparent"
>W</span
>ork
<span
class="mr-[-0.2rem] bg-gradient-T bg-clip-text text-transparent"
<span class="mr-[-0.2rem] bg-gradient-T bg-clip-text text-transparent"
>T</span
>ogether
</p>
Expand Down
5 changes: 1 addition & 4 deletions nuxt-frontend/components/home-new/CaseStudy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
use our apps every day
</div>
<PortfolioSection ref="newPortfolio" />
<CTA4
ref="portfolioPageCTA"
v-if="currentRoutePath == '/portfolio'"
/>
<CTA4 ref="portfolioPageCTA" v-if="currentRoutePath == '/portfolio'" />
<PortfolioCTASection ref="newPortfolioCTA" v-else />
</section>
</template>
Expand Down
4 changes: 1 addition & 3 deletions nuxt-frontend/components/home-new/HomeIndex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
);
Expand Down
24 changes: 10 additions & 14 deletions nuxt-frontend/pages/mobile-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 1 addition & 3 deletions nuxt-frontend/pages/services.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
);
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ module.exports = {
120: "120deg",
135: "135deg",
}),
}
},
);
}),
function ({ addComponents }) {
Expand Down

0 comments on commit fff6929

Please sign in to comment.