[yoga-27] faq and prices page: remove blogs widget

This commit is contained in:
Roland Schneider
2025-08-26 21:20:53 +02:00
parent f977877cd7
commit 6298bb7b8c
2 changed files with 0 additions and 6 deletions

View File

@@ -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 />