Skip to content

Commit

Permalink
Enhance : Design blogs, cta and faq section of frontend page
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-jagruti-a committed Mar 4, 2024
1 parent 823ba48 commit 9cc2d42
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion nuxt-frontend/components/contributions/WeeklyUpdate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default {
{
category: "iOS Weekly",
image: ios,
author: "Amisha L",
author: "Amisha I",
readtime: "2 min read",
title: "iOS Stack Weekly",
content:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,4 @@ const canopas = "https://blog.canopas.com";
.gradient-border-btn:hover > .fa {
@apply text-white;
}
</style>
</style>
22 changes: 11 additions & 11 deletions nuxt-frontend/pages/frontend-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ import { defineAsyncComponent } from "vue";
import { elementInViewPort } from "@/utils.js";
import LandingSection from "@/components/frontend-development/LandingSection.vue";
import DevelopmentSection from "@/components/frontend-development/DevelopmentSection.vue";
const PartnerWithUsSection = defineAsyncComponent(
() => import("@/components/frontend-development/PartnerWithUsSection.vue"),
const PartnerWithUsSection = defineAsyncComponent(() =>
import("@/components/frontend-development/PartnerWithUsSection.vue")
);
const SuccessStorySection = defineAsyncComponent(
() => import("@/components/frontend-development/SuccessStorySection.vue"),
const SuccessStorySection = defineAsyncComponent(() =>
import("@/components/frontend-development/SuccessStorySection.vue")
);
const BlogSection = defineAsyncComponent(
() => import("@/components/frontend-development/BlogSection.vue"),
const BlogSection = defineAsyncComponent(() =>
import("@/components/frontend-development/BlogSection.vue")
);
const CtaSection = defineAsyncComponent(
() => import("@/components/frontend-development/CtaSection.vue"),
const CtaSection = defineAsyncComponent(() =>
import("@/components/frontend-development/CtaSection.vue")
);
const FaqSection = defineAsyncComponent(() =>
import("@/components/frontend-development/FaqSection.vue")
);
const FaqSection = defineAsyncComponent(
() => import("@/components/frontend-development/FaqSection.vue"),
);
export default {
beforeRouteEnter(to, from, next) {
Expand Down

0 comments on commit 9cc2d42

Please sign in to comment.