import YogaImageComponent from "@/components/yoga.image.component"; import { YogaAboutUsComponent, YogaAboutUsComponent_Plain } from "@/types/generated-strapi-interfaces/api/yoga-about-us-component"; import {StrapiFile} from "@/types/types"; import strapiApi from "@/api/strapi/strapi-api"; export interface Props{ data: YogaAboutUsComponent_Plain } const AboutUsComponent = ( {data: {title,header,description,content,buttonText,buttonLink, image}}: Props) =>{ const fileImage = image as StrapiFile; return (
{title}

{header}

{description}

{content}
); } export default AboutUsComponent;