import { Button } from '@/components/Button/Button' import Link from 'next/link' import styles from './styles.module.scss' import Image, { StaticImageData } from 'next/image' type BlogExcerptProps = { id: string, title: string, excerpt: string photo: StaticImageData | undefined } export const BlogExcerpt = ({id, title, excerpt, photo}: BlogExcerptProps) => { const url = `/blog/${id}`; return (
{ photo && {"Blogbild"} }

{title}

{excerpt}

); }