import React from 'react' import { Link } from 'gatsby' import Image from '../atoms/Image' import styles from './PostTeaser.module.scss' export default function PostTeaser({ post, toggleSearch }: { post: { fields: { slug: string }; frontmatter: { image: any; title: string } } toggleSearch?: () => void }) { const { image, title } = post.frontmatter const { slug } = post.fields return (
  • {image ? ( <> {title}

    {title}

    ) : (

    {title}

    )}
  • ) }