import React, { ReactElement } from 'react' import { Link, graphql } from 'gatsby' import { Image } from '../atoms/Image' import styles from './PostTeaser.module.scss' import { Post } from '../../@types/Post' export const postTeaserQuery = graphql` fragment PostTeaser on MarkdownRemark { id fileAbsolutePath frontmatter { title type linkurl tags featured image { childImageSharp { ...ImageFluidThumb } } } fields { slug date(formatString: "MMMM DD, YYYY") } } ` export default function PostTeaser({ post, toggleSearch }: { post: Post toggleSearch?: () => void }): ReactElement { const { image, title } = post.frontmatter const { slug } = post.fields return ( {image ? ( {title} ) : (
)}

{title}

) }