[yoga-27] faq and prices page: remove blogs widget
This commit is contained in:
parent
f977877cd7
commit
6298bb7b8c
@ -1,6 +1,5 @@
|
||||
import React from "react";
|
||||
import AosComponent from "@/components/aos.component";
|
||||
import BlogPostsComponent from "@/components/blog.posts.component";
|
||||
import FooterComponent from "@/components/footer.component";
|
||||
import SubscribeComponent from "@/components/subscribe.component";
|
||||
import strapiApi from "@/api/strapi/strapi-api";
|
||||
@ -13,7 +12,6 @@ export default async function About() {
|
||||
header,
|
||||
description,
|
||||
questionsAndAnswers,
|
||||
blogs,
|
||||
subscribe,
|
||||
footer,
|
||||
common
|
||||
@ -22,7 +20,6 @@ export default async function About() {
|
||||
<>
|
||||
{ <SubHeaderComponent header={{header1:header,description}} common={common}/> }
|
||||
{ questionsAndAnswers && <FaqComponent config={questionsAndAnswers} /> }
|
||||
{ blogs && <BlogPostsComponent config={blogs} /> }
|
||||
{ subscribe && <SubscribeComponent config={subscribe} /> }
|
||||
{ footer && <FooterComponent config={footer} /> }
|
||||
<AosComponent />
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
import React from "react";
|
||||
import AosComponent from "@/components/aos.component";
|
||||
import PricingComponent from "@/components/pricing.component";
|
||||
import BlogPostsComponent from "@/components/blog.posts.component";
|
||||
import SubscribeComponent from "@/components/subscribe.component";
|
||||
import SubHeaderComponent from "@/components/subHeader.component";
|
||||
import YogaDiscountComponent from "@/components/yogaDiscountComponent";
|
||||
@ -19,7 +18,6 @@ export default async function PricesPage( ) {
|
||||
description,
|
||||
price,
|
||||
discount,
|
||||
blogs,
|
||||
subscribe,
|
||||
footer,
|
||||
common
|
||||
@ -29,7 +27,6 @@ export default async function PricesPage( ) {
|
||||
<SubHeaderComponent header={{header1:header,description}} common={common}/>
|
||||
{ price && <PricingComponent config={price}/> }
|
||||
{ discount && <YogaDiscountComponent config={discount} /> }
|
||||
{ blogs && <BlogPostsComponent config={blogs} /> }
|
||||
{ subscribe && <SubscribeComponent config={subscribe} /> }
|
||||
{ footer && <FooterComponent config={footer} /> }
|
||||
<AosComponent />
|
||||
|
||||
Loading…
Reference in New Issue
Block a user