Skip to content

Commit

Permalink
Fix runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Nov 24, 2023
1 parent 1cd096c commit 3590323
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 115 deletions.
2 changes: 1 addition & 1 deletion nuxt-frontend/components/error404/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<script>
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import firstErrorLetter from "@/assets/images/logo/404page_4_1.svg";
import middleErrorLetter from "@/assets/images/logo/canopas-icon.svg";
import lastErrorLetter from "@/assets/images/logo/404page_4_2.svg";
Expand Down
99 changes: 0 additions & 99 deletions nuxt-frontend/components/partials/NewFooter.vue

This file was deleted.

2 changes: 1 addition & 1 deletion nuxt-frontend/error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<script>
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import firstErrorLetter from "@/assets/images/logo/404page_4_1.svg";
import middleErrorLetter from "@/assets/images/logo/canopas-icon.svg";
import lastErrorLetter from "@/assets/images/logo/404page_4_2.svg";
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const CTASection = defineAsyncComponent(
() => import("@/components/about/CTASection.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/android-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const BlogSection = defineAsyncComponent(
() => import("@/components/android-app-development/BlogSection.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<script>
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import ScreenLoader from "@/components/utils/ScreenLoader.vue";
import NewContactLanding from "@/components/contact/NewContactLanding.vue";
import NewContactForm from "@/components/contact/NewContactForm.vue";
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/contributions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ExploreDesign = defineAsyncComponent(
() => import("@/components/contributions/DesignExplore.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/flutter-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const SuccessStory = defineAsyncComponent(
() => import("@/components/flutter-app-development/SuccessStorySection.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
export default {
data() {
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/ios-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const CtaSection2 = defineAsyncComponent(
() => import("@/components/ios-app-development/CtaSection2.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
export default {
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/jobs/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<script setup>
import { useRoute } from "vue-router";
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import ScreenLoader from "@/components/utils/ScreenLoader.vue";
import { useJobDetailStore } from "@/stores/jobs";
import config from "@/config.js";
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/jobs/apply/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@

<script setup>
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import ScreenLoader from "@/components/utils/ScreenLoader.vue";
import axios from "axios";
import config from "@/config.js";
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/jobs/thank-you/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const ContributionSection = defineAsyncComponent(
() => import("@/components/jobs/thank-you/ContributionSection.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/mobile-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const CTASection2 = defineAsyncComponent(
() => import("@/components/mobile-app-development/CTASection2.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/portfolio/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<script setup>
import Header from "@/components/partials/NewHeader.vue";
import NewFooter from "@/components/partials/NewFooter.vue";
import NewFooter from "@/components/partials/Footer.vue";
import LandingSection from "@/components/portfolio/LandingSection.vue";
import VideoSection from "@/components/portfolio/VideoSection.vue";
import BrandingSection from "@/components/portfolio/BrandingSection.vue";
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/portfolio/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const CTASection = defineAsyncComponent(() =>
import("@/components/home-new/CTASection.vue")
);
const NewFooter = defineAsyncComponent(() =>
import("@/components/partials/NewFooter.vue")
import("@/components/partials/Footer.vue")
);
const { $mixpanel } = useNuxtApp();
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/services.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const TechnologyStack = defineAsyncComponent(
() => import("@/components/services/TechnologyStack.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
export default {
Expand Down
2 changes: 1 addition & 1 deletion nuxt-frontend/pages/thank-you.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ScheduleMeeting = defineAsyncComponent(
() => import("@/components/contact/thank-you/ScheduleMeeting.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
() => import("@/components/partials/Footer.vue"),
);
const { $mixpanel } = useNuxtApp();
Expand Down

0 comments on commit 3590323

Please sign in to comment.