import React from 'react'; import { GatsbyImage } from 'gatsby-plugin-image'; import { Animation } from '../../components/Animation'; import { Section } from '../../components/Section'; import { useLocalDataSource } from './data'; import { PageSection } from '../../types'; import * as classes from './style.module.css'; export function AboutSection(props: PageSection): React.ReactElement { const response = useLocalDataSource(); const data = response.allAboutMarkdown.sections[0]; return (
{data.frontmatter.imageSrc && (
)}
); }