import React from "react"; import type { SectionProps, About as AboutType } from "../../types"; type AboutProps = SectionProps; const About: React.FC = ({ data }) => { return

{data.content}

; }; export default About;